forked from naderio/nativescript-google-maps-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.d.ts
More file actions
21 lines (13 loc) · 718 Bytes
/
index.d.ts
File metadata and controls
21 lines (13 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
declare module "nativescript-google-maps-utils" {
import { MapView, Position, Marker } from "nativescript-google-maps-sdk";
export function enableDebug(debugFn?: ((...args: Array<any>) => any)): void;
export function disableDebug(): void;
export function setupMarkerCluster(mapView: MapView, markers: Array<Marker>, options: any): void;
export function addMarkers(mapView: MapView, markers: Array<Marker>): void;
export function removeMarkers(mapView: MapView): void
export interface IHeatmapConfig {
provider: any;
overlay: any;
}
export function setupHeatmap(mapView: MapView, positions: Array<Position>, config?: IHeatmapConfig) : IHeatmapConfig;
}