在谷歌地图中删除/隐藏默认地图图层并添加图像叠加层

时间:2012-06-05 16:10:52

标签: google-maps google-maps-api-3

所以基本上我想要实现的是google maps v3中的这个功能,它们在openlayers中有:http://dev.openlayers.org/releases/OpenLayers-2.11/examples/image-layer.html

隐藏googlemaps的基础图层(实际地图),然后添加放置在地图整个表面上的图像叠加层。

这可能吗?并且有人有任何解决方案吗?

1 个答案:

答案 0 :(得分:1)

它被称为GroundOverlay:https://developers.google.com/maps/documentation/javascript/reference#GroundOverlay

但是,虽然GroundOverlay涵盖基本地图,但它不会将其删除。您需要一个自定义地图类型:https://developers.google.com/maps/documentation/javascript/maptypes#CustomMapTypes

开发一个始终返回空白图块的自定义地图类型会相当容易。