我正在尝试允许用户设置其位置,然后将Google地图平移到该位置。
我似乎无法使panTo工作,而不是更新地图,它只是重新加载了页面。
页面在这里:
http://dub[remove]step.com/events/index.html
有任何想法吗?
最佳答案
map.panTo(mymarker.getPoint());
一个替代方案是
map.setCenter(mymarker.getPoint());
关于javascript - Google Maps-panTo()-无法正常工作?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2829999/