Android MapView animateTo 和 ZoomIn 同时进行
如何同时调用地图视图控制器的 animateTo 和 ZoomIn 以获得像 Google 地图一样的双击动画?
How can I call animateTo and zoomIn for Map View Controller at the same time to get beautiful animation like Google Maps on double click?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不支持 ZoomIn 和 animateTo 是异步且独立的。您必须使用此序列制作一点动画,然后放大一点,再制作一点动画,再放大一点。为此,您必须自己计算 animateTo 步骤并执行动画缩放序列以实现平滑的动画。
Well is not supported zoomIn and animateTo are async and independant. You must animate a little bit then zoomin a little bit, animate a bit more , zoom a bit more with this sequence. To do that you must calculate yourself the animateTo steps and do that animate zoom sequence to achieve this smooth animation.
MapController 有一个方法,称为 zoomInFishing。它做我需要的事情。
There is a method of MapController, it called zoomInFixing. It do what I need.