使用地理位置调用地图意图,是否可以在其上设置图钉?

时间:2013-01-11 09:09:06

标签: android google-maps pushpin

  

可能重复:
  How to show marker in Maps launched by geo uri Intent?

我有一个谷歌地图应用程序的意图,我从我的数据库中获得了一个地理定位,GM是否可以在我使用URI发送的位置放置图钉?

final String uri = "geo:" + location.Latitude + "," + location.Longitude + "?z=12";
MyActivity.this.startActivity(new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(uri)));

1 个答案:

答案 0 :(得分:7)

您需要为引脚指定名称:

String uri = "geo:0,0?q="+ Lat + "," + Longitude + " (" + name+ ")";
startActivity(new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(uri)));

这仅适用于一个引脚。