在浏览器中显示的谷歌地图上叠加多个KML文件
需要了解在浏览器中显示的单个 Google 地图上叠加多个 KML 文件的过程。用于此目的的 KML 文件可以指向不同的位置。例如:KML1 代表北美和北美适用于亚洲的 KML2。谁能帮我解决这个问题。
Need to know the procedure for overlaying multiple KML files on a single Google Map that is displayed in the browser. The KML files intended for this can point to different locations. Ex:KML1 for North America & KML2 for Asia. Could anyone help me out in this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您正在寻找以下内容:
http://code.google.com /apis/kml/documentation/kml_tut.html#network_links
示例:
I think you are looking for this:
http://code.google.com/apis/kml/documentation/kml_tut.html#network_links
example:
您可以使用 Google Maps JS API 来完成此操作。您需要使用 google.maps.KmlLayer 为每个 KML 文件创建叠加层。
请参阅以下示例:http://code.google.com /apis/maps/documentation/javascript/examples/layer-kml.html
API 文档:
http://code.google.com/apis/maps/documentation /javascript/overlays.html#KMLLayers
You can do it with Google Maps JS API. You need to create overlays with google.maps.KmlLayer for each KML files.
See this example: http://code.google.com/apis/maps/documentation/javascript/examples/layer-kml.html
API Documentation:
http://code.google.com/apis/maps/documentation/javascript/overlays.html#KMLLayers