HTML Canvas 作为 Google 地图中的叠加视图
有没有谷歌地图的例子,它有一个大画布作为覆盖视图。每当地图缩放或平移时,我都很难定位画布。
Are there any examples of a google map that has one big canvas as an overlayview. I'm having a hard time positioning the canvas whenever the map zoom or pans.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看CanvasLayer 库,它基本上将所有这些考虑在内,作为参考实现。
Check out the CanvasLayer library which basically takes all of this into account for you as a reference implementation.
尝试使用地图边界方法,获取当前可视地图的东北和西南视图,并使用js函数修改每个缩放上的叠加层以动态更改位置。
并获取地图缩放
地图.getZoom();
请参阅:http://code.google.com/apis/maps /documentation/javascript/reference.html#Map
Try the map bounds method, get the northeast and southwest view of current viewable map and use a js function to modify the overlay on each zoom to change the position dynamically.
and to get map zoom
map.getZoom();
Refer: http://code.google.com/apis/maps/documentation/javascript/reference.html#Map