如何添加图钉,如果点击显示balon信息地址或城市,我在google maps API android中有自定义getOverlay()。
在我的代码下面:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main_map);
mapView = (MapView) findViewById(R.id.map_view);
GeoPoint gpStart = new GeoPoint((int) (-6.31689 * 1E6),
(int) (106.74040 * 1E6));
GeoPoint gpEnd = new GeoPoint((int) (-6.29729 * 1E6),
(int) (106.78386 * 1E6));
Route r = direction(gpStart, gpEnd);
RouteOverlay rOverlay = new RouteOverlay(r, Color.RED);
mapView.getOverlays().add(rOverlay);
mapView.getController().animateTo(gpStart);
mapView.getController().setZoom(15);
mapView.setBuiltInZoomControls(true);
}
我的代码已编辑,上面的代码我来自here并为我工作,但没有在地点显示引脚。如果代码是谷歌地图V1的标准,我知道要放pin。只需添加叠加层。但我的问题是我从json数组获取地图。所以我想在位置(geopoint)添加pin,如果我点击我获取信息地址。
感谢。
答案 0 :(得分:10)
如果您使用的是Google Maps Android API v2,则应该documented here。
private GoogleMap mMap;
mMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
mMap.addMarker(new MarkerOptions()
.position(new LatLng(0, 0))
.title("Hello world"));