缓存谷歌地图
我正在使用 Google Maps JavaScript API V2 开发 Google 地图应用程序。
在我的应用程序中,有 Google 地图和叠加层,我的应用程序每 5 秒刷新一次,以从数据库中获取新记录来更新叠加层。当我的应用程序刷新时,它会重新加载谷歌地图。
我想缓存 Google 地图,这样就可以从缓存中检索地图,而不是重新加载它,直到更新地图的位置。
I am working on Google map application using Google Maps JavaScript API V2.
In my application there is Google map and overlays, my application refresh after every 5 second to fetch new records from database to update overlays. When my application refresh its reload the Google map.
I want to cache the Google Maps so that instead of reloading it retrieve map from cache until I update the location of map.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您很可能希望将地图图块存储到硬盘上。为了使目录结构更有效,您需要使用空间填充曲线将地图图块简化为一维问题。然后,您可以将每个节点和边的地图图块存储在单独的文件夹中。
Most likely you want to store the map tiles to a harddisk. To make your directory structure more efficent you want to reduce the map tiles to an one-dimensional problem using a space-filling-curve. Then you can store the map tiles for each node and edge in separate folders.