GPS定位角小叶 - 指向

时间:2014-06-16 19:49:46

标签: angularjs leaflet

Re:与Ionic一起使用的Angular-leaflet-directive。我想知道是否有人知道如何将当前GPS位置返回到地图 - 相当于传单中的map.locate?任何建议都非常感谢!

1 个答案:

答案 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)
            });
    };
}