HeatMapLayerOptions Object

Bing
 

The following is a list of properties that are available in the HeatMapLayerOptions object.

NameTypeDescription
colorGradientIDictionary of stringThe temperature gradient that is used to colorize the map. Default gradient:

{
    '0.00': 'rgb(255,0,255)', // Magenta
    '0.25': 'rgb(0,0,255)', // Blue
    '0.50': 'rgb(0,255,0)', // Green
    '0.75': 'rgb(255,255,0)', // Yellow
    '1.00': 'rgb(255,0,0)' // Red
}
intensitynumberThe intensity of each heat point. This is a decimal value between 0 and 1. This is used to specify how "hot" a single data point should be. Default: 0.5
opacitynumberThe opacity of the HeatMapLayer canvas. Value should be a decimal between 0 and 1. Default: 1
radiusnumberThe radius to draw each data point on the map. Default: 10
unitstringThe distance units of the radius. Possible values are:

  • pixels
  • meters

When set to pixels the size of each data point will always be the same radius, regardless of zoom level. When set to meters, the size of the data points will scale based on zoom level so as to ensure that the radius is spatially accurate. Default: pixels
visiblebooleanA boolean indicating if the heat map layer is visible or not.
Show: