【发布时间】:2018-10-02 07:05:33
【问题描述】:
我想知道我可以使用 Ionic 使用传单实时跟踪我的位置,我能够获得我当前的位置,但我也想在我移动时跟踪它
this.map.locate({
setView: true,
maxZoom: 16
}).on('locationfound', (e) => {
let markerGroup = leaflet.featureGroup();
this.marker = leaflet.marker([e.latitude, e.longitude], { icon: carIcon }).addTo(this.map);
【问题讨论】:
标签: ionic-framework geolocation leaflet tracking