当前位置:   article > 正文

android 调用第三方地图客户端,6、android应用调用第三方地图

com.autonavi.minimap

1、调用高德地图

高德地图应用包名:com.autonavi.minimap

高德地图url说明:

判断手机上是否安装过高德地图:

private boolean isInstallByread(String packageName) {

return new File("/data/data/" + packageName).exists();

}

调用方法:(此方法打开高德地图后默认显示的公交路线规划)

try {

if (isInstallByread("com.autonavi.minimap")) {

Intent intent = new Intent(

"android.intent.action.VIEW",

android.net.Uri.parse(

"androidamap://route?sourceApplication=你的应用名"   + "&dlat="+ currentLatitude//终点的经度

+ "&dlon="+ currentLongitude//终点的纬度

+ "&dev=0" + "&t=1"));

intent.addCategory("android.intent.category.DEFAULT");

startActivity(intent);

} else {

Toast.makeText(context, &

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/297597
推荐阅读
相关标签
  

闽ICP备14008679号