Interface HeatmapOption

interface HeatmapOption {
    bounds?: number[];
    cameraHeightDistance?: number;
    contourLineOption?: ContourLineOption;
    heatmapDataOptions?: HeatmapDataOption;
    heatmapOptions?: BaseHeatmapConfiguration;
    noLisenerCamera?: boolean;
    onRadiusChange?: ((radius) => void);
    points: HeatmapPoint[];
    renderType?: RenderType;
    zoomToLayer?: boolean;
}

Properties

bounds?: number[]
cameraHeightDistance?: number
contourLineOption?: ContourLineOption
heatmapDataOptions?: HeatmapDataOption
heatmapOptions?: BaseHeatmapConfiguration
noLisenerCamera?: boolean
onRadiusChange?: ((radius) => void)

Type declaration

    • (radius): void
    • Parameters

      • radius: number

      Returns void

points: HeatmapPoint[]
renderType?: RenderType
zoomToLayer?: boolean