我想要显示一个kml (里面是一个图像url和边界),按权利它应该显示多个图像时,谷歌地图缩放为1,但它只显示1,如何才能显示谷歌地图的其他部分?
kml代码:
js代码:
ctaLayerIR = new google.maps.KmlLayer({
url:'http://xxxxxx/I201603070300.XAEWJ.global.full.3600x1200.kml',
preserveViewport: true,
clickable: false,
zIndex: 9999,
suppressInfoWindows:false
});
ctaLayerIR.setMap(map);
当前显示:how to display the right side kml to left side too?their bounds is same
发布于 2016-03-10 15:30:58
由于您使用了较大的图像文件,因此可能超出了KML资源的大小限制。您可以在此link中查看确切的数字。
https://stackoverflow.com/questions/35862087
复制相似问题