如果我有纬度和经度,并且我想打开谷歌地图到那个特定的位置,我该怎么做?哪个意图启动具有给定纬度和经度的谷歌地图来显示?我有这个意图,但这个意图寻找导航......我只希望它显示给定纬度和经度的位置
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com/maps?saddr=" + lat
+ "," + lon));
intent.setClassName("com.google.android.apps.maps",
"com.google.android.maps.MapsActivity");