forked from OniQ/Nativescript-Danem-Google-Maps-Utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
25 lines (15 loc) · 747 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { Color } from "@nativescript/core";
import { MapView, Position, Marker } from "nativescript-google-maps-sdk-n7";
export function enableDebug(debugFn?: ((...args: Array<any>) => any)): void;
export function disableDebug(): void;
export function setupMarkerCluster(mapView: MapView, markers: Array<Marker>): void;
export function moveCamera(latitude, longitude, zoom): void;
export function clearMap(): void;
export interface IHeatmapConfig {
provider: any;
overlay: any;
}
export function setupHeatmap(mapView: MapView, positions: Array<Position>, colors: Array<Color>, startPoints: Array<number>): IHeatmapConfig;
export function removeHeatmap(): void;
export function setRadius() : void;
export function setOpacity() : void;