我有一个
places = ArrayList<ArrayList<LatLng>>
我将LatLng点添加到内部ArrayList中,然后我有一个for循环,循环并向地图添加折线......除了它不这样做... 如何动态地将折线添加到GoogleMap?我检查了地点是否正在填充,它是。
提前致谢。
ArrayList<Polyline> pl = new ArrayList<Polyline>();
for(int i =0; i<places.size(); i++){
pl.add(mMap.addPolyline(new PolylineOptions().addAll(places.get(i))));
Log.e("size of places", "size of places is " + places.size());
}
答案 0 :(得分:12)
使用折线和arraylist
在地图中添加多个点ArrayList<LatLng> coordList = new ArrayList<LatLng>();
// Adding points to ArrayList
coordList.add(new LatLng(0, 0);
coordList.add(new LatLng(1, 1);
coordList.add(new LatLng(2, 2);
// etc...
// Find map fragment. This line work only with support library
GoogleMap gMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
PolylineOptions polylineOptions = new PolylineOptions();
// Create polyline options with existing LatLng ArrayList
polylineOptions.addAll(coordList);
polylineOptions
.width(5)
.color(Color.RED);
// Adding multiple points in map using polyline and arraylist
gMap.addPolyline(polylineOptions);
答案 1 :(得分:8)
列表中有纬度和经度列表后,您可以使用下面的线条绘制线条。
List<LatLng> points = decodePoly(_path); // list of latlng
for (int i = 0; i < points.size() - 1; i++) {
LatLng src = points.get(i);
LatLng dest = points.get(i + 1);
// mMap is the Map Object
Polyline line = mMap.addPolyline(
new PolylineOptions().add(
new LatLng(src.latitude, src.longitude),
new LatLng(dest.latitude,dest.longitude)
).width(2).color(Color.BLUE).geodesic(true)
);
}
以上在我的申请中为我工作
答案 2 :(得分:0)
你拥有的places
变量是什么,因为地点需要是行中的所有位置,而不仅仅是1点。
假设地点为ArrayList<LatLng>
,那么通过places.get(i)
,您只提供一个点,而不是整个点数列表;