我一直在寻找这个问题的答案,我知道有一种方法,因为传单在他们的框架中做到了。问题是我已经在使用 Google APi 并且无法将所有内容都转回传单,而且我不想使用传单而且我无法限制边界,因为这会给我的地图应用程序带来一些非常奇怪和笨拙的解决方案。有谁知道如何禁用谷歌地图 api v3 的 x 轴上的世界环绕?同样,请不要说限制平移和边界并加强缩放。我已经尝试过了,这不是我想要的,而且它确实效果不佳。如果leaflet 可以用一个worldwrap: false 来做到这一点,那么如何在谷歌自己的框架中实现同样的事情呢?
问问题
624 次
1 回答
1
The only way I've managed to do this is very crude.
First set the marker(s) to draggabble. Which stops the marker repeating longitudinally.
Then add a drag start and drag end handler.
on drag start, save the markers position.
on drag end, set the markers position back to its original position.
crude but seems to work.
于 2013-04-24T06:41:22.780 回答