The data property can be an MVCArray or LatLng[]. All other properties are optional

This commit is contained in:
Jared Kells
2014-11-12 10:36:14 +11:00
parent 39531c32fe
commit 6eaa9d0a16
+7 -7
View File
@@ -1574,13 +1574,13 @@ declare module google.maps {
}
export interface HeatmapLayerOptions {
data: LatLng[];
dissipating: boolean;
gradient: string[];
map: Map;
maxIntensity: number;
opacity: number;
radius: number;
data: any;
dissipating?: boolean;
gradient?: string[];
map?: Map;
maxIntensity?: number;
opacity?: number;
radius?: number;
}
export interface WeightedLocation {