gpt4 book ai didi

Android:如何将图钉添加到谷歌地图

转载 作者:太空宇宙 更新时间:2023-11-03 11:44:30 25 4
gpt4 key购买 nike

<分区>

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,如果我点击我得到信息地址。

谢谢。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com