-1

我想在浏览器中使用谷歌地球开发一个网络应用程序。

我需要添加一个点要素、一条折线和一个多边形。

网络应用程序需要显示与 Google 地球桌面应用程序相同的功能。

我想使用 Google Maps Api 和 Google Earth Api 在浏览器中提供 google earth。

我怎样才能为自己制作这种应用程序,最好的方法是什么?

4

1 回答 1

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 中。

于 2011-08-24T16:54:36.050 回答