Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 android 的 Google 地图上绘制动态路线或路径?
谁能给我一个例子?如何在地图上实时绘制我的 GPS 位置?
只需使用 API 的 V2,它就像使用for loop
for loop
PolylineOptions p = new PolylineOptions().width(3).color(0xFFEE8888); for (int i = 0; i < data.length; i++) { p.add(new LatLng(lat, lng)); } mMap.addPolyline(p);