在谷歌地球中添加点折线多边形
我想在浏览器中使用 Google Earth 开发一个网络应用程序。
我需要添加一个点要素、一条折线和一个多边形。
网络应用程序需要显示与 Google 地球桌面应用程序相同的功能。
我想使用 Google Maps Api 和 Google Earth Api 在浏览器中提供 Google Earth。
我怎样才能为自己申请这种申请,最好的方法是什么?
I want to develop a web-application using Google Earth in the browser.
I need to add a point feature, a polyline and a polygon.
The web-applicaton needs to display the features the same as the Google Earth desktop application.
I want to use the Google Maps Api and the Google Earth Api to deliver google earth in the browser.
How can I make this kind of application for myself, what is the best way for doing so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该查看 Google Earth Api 文档。 http://code.google.com/apis/earth/documentation/reference/
点、折线和多边形等简单对象可以通过 api 创建或以 Kml 格式加载。请查看以下文档。
几何图形和叠加
http://code.google.com/apis/earth/documentation/geometries.html
Kml简介
http://code.google.com/apis/earth/documentation/kml.html
听起来 KML 方法可能是最简单的 - 取决于应用程序的性质。如果 Google 地球中有一些现有数据,则可以轻松地将其保存为 kml 或 kmz 文件并将其加载到 Google 地球 Api 中。
You should look at the Google Earth Api documentation. http://code.google.com/apis/earth/documentation/reference/
Simple objects like points, polylines and polygons can be created via the api or loaded in Kml format. Take a look at the following documents.
Geometries and Overlays
http://code.google.com/apis/earth/documentation/geometries.html
Introduction to Kml
http://code.google.com/apis/earth/documentation/kml.html
From the sounds of it the KML approach might be the easiest thing - depending on the nature of the application. If you have some existing data in Google Earth, it would be easy to save this as a kml or kmz file and load it in to the Google Earth Api.