嗨,我正在开发使用 android map V2 的小型 android 应用程序。我在我的地图中包含了地面覆盖项目。所以我想检测点击覆盖项目。我以以下方式添加了叠加项目。
LatLng NEWARK = new LatLng(0, 0);
GroundOverlayOptions newarkMap = new GroundOverlayOptions()
//.image(BitmapDescriptorFactory.fromResource(R.drawable.img)
.image(BitmapDescriptorFactory.fromBitmap(createDrawableFromView(this, markerView)))
.position(NEWARK, 860000f, 650000f);
GroundOverlay imageOverlay = googleMap.addGroundOverlay(newarkMap);
因此,当用户单击此叠加项时,我想做一些事情。需要一些帮助。谢谢你。