Android应用如何将Easy Stars添加到Google地图?

时间:2012-03-09 10:59:29

标签: android google-maps geolocation

Google地图支持名为Easy Stars的功能,用户可以在此处标记位置,以便在查看该区域时在地图上显示星标。 我希望我的Android应用程序能够添加星星并从地图中删除星星,就像J2ME中的标记功能一样。 有没有办法做到这一点? PS。我的应用程序使用Android Intent通过?q street和city传递地理位置来启动Google地图(或任何地图程序)。

2 个答案:

答案 0 :(得分:1)

http://support.google.com/gmm/bin/answer.py?hl=en&answer=1650555

  1. 输入地址
  2. 触摸位置气泡
  3. 触摸屏幕右上方的灰色星星

答案 1 :(得分:0)

    Intent intent = new Intent(android.content.Intent.ACTION_VIEW, 
Uri.parse("http://maps.google.com/maps?saddr=20.344,34.34&daddr=20.5666,45.345"));
startActivity(intent);