Google 地图可以设置为缓慢持续平移吗?就像一场全球革命?
正如标题所说。我正在寻找解决方案,但没有找到任何可以引导我找到正确文档或文章的内容。
如果您有任何想法或可以向我指出一个可以使用的可能解决方案,我将不胜感激。
谢谢
Just what the title says. I am searching for a solution but I have not found anything that has guided me to the correct documentation or articles.
If you have any ideas or can point me to a possible solution I can work with, it would be greatly appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以自己这样做:
setInterval
来设置建立一个定期运行的函数。panBy
在 Google 地图对象上“旋转”一下。这应该会给你一个简单的动画来完成你想要的事情。当然,您需要调整给
setInterval
的时间间隔以获得感觉流畅的效果。您应该有这样的内容:选择适当的 x 和 n 值取决于您。
You can do this yourself like this:
setInterval
to set up a function to be run periodically.panBy
on the Google map object to "rotate" it a bit.That should give you a simple animation that does what you want. You'd want to adjust the time interval that you give to
setInterval
to get something that feels smooth of course. You should have something like this:Choosing appropriate
x
andn
values is up to you.接受的答案是好的,但有点过时了。您应该使用
window.requestAnimationFrame
而不是window.setInterval
。这将为您提供更流畅的动画。可以在此处找到一个简单的示例(不是我提供的),但其要点看起来像这样的东西:
The accepted answer is ok, but a little outdated. Instead of
window.setInterval
you shoud usewindow.requestAnimationFrame
. This will give you a smoother animation.A simple example (not from me) can be found here, but the gist of it looks something like this: