安卓通过Intent打开本地安装地图

//打开经纬度和详细位置 Uri uri = Uri.parse("geo:0,0,北京市海淀区上地信息路9号奎科科技大厦"); Intent it = new Intent(Intent.ACTION_VIEW, uri); startActivity(it); //打开百度地图 try { Intent it = Intent.getIntent("intent://map/geocoder?address=北京市海淀区上地信息路9号奎科科技大厦&src=apkfuns.com|拉勾助手#Intent;scheme=bdapp;package=com.baidu.BaiduMap;end"); startActivity(it); } catch (URISyntaxException e) { e.printStackTrace(); } //详细文档看这里:http://developer.baidu.com/map/uri-introandroid.htm //打开高德地图 try { Intent intent = Intent.getIntent("androidamap://viewMap?sourceApplication=厦门通&poiname=百度奎科大厦&lat=40.047669&lon=116.313082&dev=0"); startActivity(intent); } catch (URISyntaxException e) { e.printStackTrace(); } //详细文档:http://lbs.amap.com/api/uri-api/android-uri-explain/