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 位置を地図上にリアルタイムで描画する方法は?
V2 の API を使用するだけで、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);