Google地图支持名为Easy Stars的功能,用户可以在此处标记位置,以便在查看该区域时在地图上显示星标。 我希望我的Android应用程序能够添加星星并从地图中删除星星,就像J2ME中的标记功能一样。 有没有办法做到这一点? PS。我的应用程序使用Android Intent通过?q street和city传递地理位置来启动Google地图(或任何地图程序)。
答案 0 :(得分:1)
http://support.google.com/gmm/bin/answer.py?hl=en&answer=1650555
答案 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);