Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下指令不会像我预期的那样工作:
map.panTo(e.latlng, {animate: true, duration: 1.0});
我尝试了不同的值:0.5、1.0、10.0、1000.0、1、10,但平移速度一样快!
任何的想法?谢谢!
您确定您使用的是最新的 Leaflet 版本吗?我刚刚在 0.6.4 中尝试了这段代码,它运行良好,按预期缓慢平移:
map.on('click', function (e) { map.panTo(e.latlng, {animate: true, duration: 5.0}); });