Possible Duplicate:
Best Way to Add Map Pins to Google Map Android
如何添加 pin,如果单击显示带有信息地址或城市的 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得到的并为我工作,但不显示位置图钉。如果代码是 google maps V1 的标准代码,我知道要放置 pin。只需添加叠加层。但我的问题是我从 json 数组获取 map 。所以我想在位置(geopoint)中添加 pin,如果我点击我得到信息地址。
谢谢。
我是一名优秀的程序员,十分优秀!