new SuperMap3D.HeatMap(options)
Heatmap class. Through this class, you can customize various properties of the heat map, and realize various functions such as adding points on the heat map in real time.
Name |
Type |
Description |
options |
Object
|
Parameters have the following properties:
Name |
Type |
Description |
quality |
Quality
|
optional
The quality of the heatmap, the default value is MEDIUM |
intensityRange |
Cartesian2
|
optional
Heatmap intensity value range, default 0 to 1 |
bounds |
bounds
|
optional
Geographic extent of heatmap data |
|
Example:
var heatMap = new HeatMap({
quality: Quality.HIGH,
intensityRange: new SuperMap3D.Cartesian2(0.2,0.8),
});