Android 调用系统地图(Google Map)并显示具体方位

“大众点评” Android App 的商家定位是使用的Google Map,当点击一个商家的地址时,系统会自动调用Google Map,并将商家方位显示出来,这是怎么做到的呢?

Intent intent = new Intent(android.content.Intent.ACTION_VIEW, 
Uri.parse("http://ditu.google.cn/maps?hl=zh&mrt=loc&q=31.1198723,121.1099877(上海青浦大街100号)");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK 
		        & Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS); 
		
intent.setClassName("com.google.android.apps.maps", 
		        "com.google.android.maps.MapsActivity"); 
startActivity(intent);

你可能感兴趣的:(Java)