这个代码可以定位,但是,我希望他是飞行滑到定位点,就是flyto,但是加了没效果。用的leaflet。
map.locate({
setView: true,
maxZoom: 16
});
map.on('locationfound', function(e) {
var radius = e.accuracy / 2;
L.marker(e.latlng).addTo(map).bindPopup("你就在这个圈内");
L.circle(e.latlng, radius).addTo(map);
});
map.on('locationerror', function(e) {
console.log('定位出错=====>', e);
});