Re:与Ionic一起使用的Angular-leaflet-directive。我想知道是否有人知道如何将当前GPS位置返回到地图 - 相当于传单中的map.locate?任何建议都非常感谢!
答案 0 :(得分:1)
你仍然可以像这样使用map.locate()
:
function MapCtrl($scope, leafletData) {
$scope.getLocation = function() {
leafletData.getMap('map').then(function(map) {
map.locate({setView: true, maxZoom: 16, watch: true, enableHighAccuracy: true});
map.on('locationfound', function (e) {
console.log(e.latlng, e.accuracy)
});
};
}