程序问答   发布时间:2022-06-02  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了在Maps API V2中导入KML大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

如何解决在Maps API V2中导入KML?

开发过程中遇到在Maps API V2中导入KML的问题如何解决?下面主要结合日常开发的经验,给出你关于在Maps API V2中导入KML的解决方法建议,希望对你解决在Maps API V2中导入KML有所启发或帮助;

现在,我只是假设没有公共图书馆为我们做这件事,因此在解析我的KML文件中的数据后,我将使用Google的代码向地图添加折线和多边形。如果找到库,将更新此答案。

创建折线和多边形:

// Instantiates a new polyline object and adds points to define a rectangle
polylineoptions rectoptions = new polylineoptions()
        .add(new LatLng(37.35, -122.0))
        .add(new LatLng(37.45, -122.0))  // north of the prevIoUs point, but at the same longitude
        .add(new LatLng(37.45, -122.2))  // Same latitude, and 30km to the West
        .add(new LatLng(37.35, -122.2))  // Same longitude, and 16km to the south
        .add(new LatLng(37.35, -122.0)); // Closes the polyline.

// Set the rectangle's color to red
rectoptions.color(color.RED);

// Get BACk the mutable polyline
polyline polyline = mymap.addpolyline(rectoptions);

解决方法

我在Google Earth中绘制了多个KML文件,其中包含不同的路线。现在,我正在尝试使用Maps API V2在我的android项目中显示这些内容。

是否存在现有的库,用于在您的android项目中导入KML文件并在地图中显示它们?我在不是库的堆栈溢出中找到了一些代码(如何使用kml文件在地图上绘制路径?)。

如果没有可用的库,我将从头开始构建它。

大佬总结

以上是大佬教程为你收集整理的在Maps API V2中导入KML全部内容,希望文章能够帮你解决在Maps API V2中导入KML所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。