naderio / nativescript-google-maps-utils

NativeScript Google Maps SDK utility library to support features such as marker clustering, heatmap, ...
The Unlicense
33 stars 15 forks source link
android google-maps heatmap ios marker-clustering mobile nativescript

nativescript-google-maps-utils

NativeScript Google Maps SDK utility library to support features such as marker clustering, heatmap, ...

Andoird #1 Andoird #2 Andoird #3 Andoird #4

State

Android implemented.

iOS not implemented.

Dependencies

Install

tns plugin add nativescript-google-maps-utils

Usage

var GoogleMaps = require('nativescript-google-maps-sdk');
var GoogleMapsUtils = require('nativescript-google-maps-utils');

function onMapReady(args) {

  var mapView = args.object;

    var positionSet = [ /* GoogleMaps.Position... */ ];

    GoogleMapsUtils.setupHeatmap(mapView, positionSet);

    var markerSet = [ /* GoogleMaps.Marker... */ ];

    GoogleMapsUtils.setupMarkerCluster(mapView, makerSet);

}
...

Usage with TypeScript

import using either of