npm i --save nativescript-google-maps-utils
- 版本:0.1.3
- GitHub: https://github.com/naderio/nativescript-google-maps-utils
- NPM: https://npmjs.net.cn/package/nativescript-google-maps-utils
- 下载量
- 昨天:0
- 上周:0
- 上个月:0
nativescript-google-maps-utils
NativeScript Google Maps SDK 工具库,支持标记聚合、热力图等功能
状态
Android 已实现。
iOS 未实现。
依赖项
- nativescript-google-maps-sdk
- https://github.com/googlemaps/android-maps-utils
- https://github.com/googlemaps/google-maps-ios-utils
安装
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"