Heatmaps
HeatmapLayerOptions interface
google.maps.visualization.HeatmapLayerOptions
interface
This object defines the properties that can be set on a HeatmapLayer object.
Properties | |
|---|---|
data optional |
Type: The data points to display. Required. |
dissipating optional |
Type: Specifies whether heatmaps dissipate on zoom. By default, the radius of influence of a data point is specified by the radius option only. When dissipating is disabled, the radius option is interpreted as a radius at zoom level 0. |
gradient optional |
Type: The color gradient of the heatmap, specified as an array of CSS color strings. All CSS3 colors are supported except for extended named colors. |
map optional |
Type: The map on which to display the layer. |
maxIntensity optional |
Type: The maximum intensity of the heatmap. By default, heatmap colors are dynamically scaled according to the greatest concentration of points at any particular pixel on the map. This property allows you to specify a fixed maximum. |
opacity optional |
Type: Default: The opacity of the heatmap, expressed as a number between 0 and 1. |
radius optional |
Type: The radius of influence for each data point, in pixels. |
WeightedLocation interface
google.maps.visualization.WeightedLocation
interface
A data point entry for a heatmap. This is a geographical data point with a weight attribute.
Properties | |
|---|---|
location |
Type: The location of the data point. |
weight |
Type: The weighting value of the data point. |