说我想用谷歌地图绘制直播列车的路径。我正在火车上使用gps接收器,并在铁路上绘制火车站的路径。什么是最好的方法/什么是api支持这个选项。
答案 0 :(得分:0)
GoogleMap map;
// ... get a map.
// Add a thin red line from London to New York.
Polyline line = map.addPolyline(new PolylineOptions()
.add(new LatLng(51.5, -0.1), new LatLng(40.7, -74.0))
.width(5)
.color(Color.RED));
有关详细信息,请点击此链接polylines 或此链接How to draw interactive Polyline on route google maps v2 android
Google地图Android API不包含在Android平台中,但可通过Google Play服务在运行Android 2.2或更高版本的Google Play商店的任何设备上使用。