nativescript-google-maps-utils
NativeScript Google Maps SDK 工具库,支持标记聚合、热力图等功能
npm i --save nativescript-google-maps-utils

nativescript-google-maps-utils

NativeScript Google Maps SDK 工具库,支持标记聚合、热力图等功能

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

状态

Android 已实现。

iOS 未实现。

依赖项

安装

tns plugin add nativescript-google-maps-utils

用法

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);

}
...

使用 TypeScript 的用法

使用以下任一方式导入

  • import GoogleMapsUtils = require("nativescript-google-maps-utils")
  • import * as GoogleMapsUtils from "nativescript-google-maps-utils"