1

我成功地在地图上添加了多个标记。使用showInfoWindowonly 显示最后添加的标记的标题。那么有没有办法一次显示所有标记的标题?谢谢 :)

4

3 回答 3

2

这不可能直接显示所有信息窗口。

我建议使用自定义标记图标和画布在标记上方绘制文本,这可能看起来像信息窗口。

于 2013-05-20T10:24:31.767 回答
2
LinearLayout tv = (LinearLayout) this.getLayoutInflater().inflate(R.layout.marker_dialog, null, false);
tv.measure(View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED),
                    View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED));
tv.layout(0, 0, tv.getMeasuredWidth(), tv.getMeasuredHeight());

tv.setDrawingCacheEnabled(true);
tv.buildDrawingCache();
Bitmap bm = tv.getDrawingCache();

LatLng latLng = new LatLng(latitudemy, longitudemy);

BitmapDescriptor icon = BitmapDescriptorFactory.fromBitmap(bm);

BitmapDescriptorFactory.fromResource(R.mipmap.ic_launcher);
map.addMarker(new MarkerOptions().position(new LatLng(latitudemy, longitudemy)).title("origin").snippet("Srivastava").icon(icon));
// Showing the current location in Google Map
map.addMarker(new MarkerOptions().position(new LatLng(latitude, longitude)).title("destination").snippet("Srivastava").icon(icon));
于 2015-12-02T06:20:02.217 回答
0

AFAIK 这是 的功能,在任何给定时间Google Map API V2只显示一个。InfoWindow

于 2013-05-20T10:12:28.193 回答