-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.d.ts
29 lines (17 loc) · 838 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
26
27
28
29
import { Color } from "tns-core-modules/color";
declare module "nativescript-danem-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>): 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;
}