使用maps api v2绘制设备跟踪的路径

时间:2013-07-31 17:27:58

标签: android android-maps-v2

我正在开发一个跟踪设备运动的Android应用程序。我能够获取当前位置,但是如何在旅行期间使用一组积分绘制路线

2 个答案:

答案 0 :(得分:2)

为所有点定义列表。

List< LatLng> points = new List< LatLng>();

//添加列表中的所有点

points.add(new LatLng(lat1,lng1)); // POINT1

points.add(new LatLng(lat2,lng2)); // POINT2 and so on.

//然后定义PolylineOptions

PolylineOptions polylineOptions = new PolylineOptions();

polylineOptions.addAll(points);

Polyline route = googleMap.addPolyline(polylineOptions);

//用于标记使用MarkerOptions

答案 1 :(得分:-1)

使用比绘制路线更可靠的东西:标记

查看Android SDK中的google地图示例应用程序,并查看MarkerDemoActivity.java课程。

打开日食:
新项目 - &gt; Android示例项目 - &gt; [YOUR_BUILD_TARGET] - &gt;地图[Google Play服务]

这将使您对要搜索的内容有所了解。



以下是您将获得的一个示例:

enter image description here