我在我的地圖上繪製了polyline
,我現在需要向用戶顯示一些數據。Google map Android API v2 - InfoWindow on polyline?
如何在每個polyline
上繪製文本或InfoWindow?
我添加polyline
喜歡:
ArrayList<LatLng> points = null;
PolylineOptions lineOptions = null;
MarkerOptions markerOptions = new MarkerOptions();
// Traversing through all the routes
for(int i=0;i<result.size();i++){
points = new ArrayList<LatLng>();
lineOptions = new PolylineOptions();
String color = colors[i % colors.length];
// Fetching i-th route
List<HashMap<String, String>> path = result.get(i);
// Fetching all the points in i-th route
for(int j=0;j<path.size();j++){
HashMap<String,String> point = path.get(j);
double lat = Double.parseDouble(point.get("lat"));
double lng = Double.parseDouble(point.get("lng"));
LatLng position = new LatLng(lat, lng);
points.add(position);
}
// Adding all the points in the route to LineOptions
lineOptions.addAll(points);
lineOptions.width(5);
lineOptions.color(Color.parseColor(color));
// Drawing polyline in the Google Map for the i-th route
mMap.addPolyline(lineOptions);
}
例如,我需要這樣的:
我並不需要設置標記,我需要像谷歌地圖Android的折線設置信息。 –
我明白,但沒有一種內置的方式來做到這一點,所以你必須使用其他方法,例如在多段線上創建一個不可見的標記並打開其信息窗口,以便它看起來像打開了一個信息窗口爲折線。看到我上面修改的答案。 –
我試過了,但一次只顯示一個infoWindow。因爲我們需要所有三個infoWindow應該同時打開 – NetDemo