是否可以在外部网络浏览器中打开 google 地图 url?

Is it possible to open a google map url into an external web browser?

是否可以在外部网络浏览器中打开带有 latlng 值的 google 地图 url?

目前我使用的是简单的 Intent 但它打开到 Google 地图,如果可能请帮助我。

你可以使用这个:

String url = "http://maps.google.com/maps?q=loc:23.070791,72.520004";
        Uri uri = Uri.parse(url);
        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setData(uri);
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        intent.setPackage("com.android.chrome");
        startActivity(intent);

希望对您有所帮助