MapView.preLoad() 到底做了什么?
Android MapView.preLoad() 方法的真正作用是什么? “API 规定在地图的当前中心预加载图块”。这是什么意思?我可以用它来加速 MapView 中地图的加载吗?
的问候
最好
What does the Android MapView.preLoad() method really do? "The API states Preload the tiles at the map's current center". What does this mean and can I somehow use it to speed up loading of the map in my MapView?
Best regards
P
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这意味着地图的实际地图图形和信息是从谷歌地图加载的。您不能使用它来真正加快加载速度(最终的实际加载时间大致相同),但您可以在用户决定进入之前加载数据您的地图视图。这当然会有很大帮助,但这完全取决于您的应用程序以及用户如何与其交互。
It means the actual map graphics and information for the map is loaded from google maps. You can't use this to really speed up loading (the actual load time in the end will be about the same), but you might be able to do loading of data BEFORE the user decides to go into your map view. Which would of course help a lot, but it all depends in your application and how the user interacts with it.