Android - 如何在Android应用中使用特定位置,缩放级别和标记启动Google地图意图

时间:2012-10-24 16:19:58

标签: android google-maps android-intent

Map Intent不使用特定缩放级别以及自定义标记

    float lat = 40.714728f;
    float lng = -73.998672f;

    String maplLabel = "ABC Label";
    final Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
            Uri.parse("geo:0,0?q="+lat+","+lng+"&z=16 (" + maplLabel + ")"));
    startActivity(intent);

有人知道出了什么问题吗?或者怎么做? 我想在特定缩放级别使用自定义标签标记显示某些(lat,lng)的地图。

4 个答案:

答案 0 :(得分:82)

尝试以下解决方案:

double latitude = 40.714728;
double longitude = -73.998672;
String label = "ABC Label";
String uriBegin = "geo:" + latitude + "," + longitude;
String query = latitude + "," + longitude + "(" + label + ")";
String encodedQuery = Uri.encode(query);
String uriString = uriBegin + "?q=" + encodedQuery + "&z=16";
Uri uri = Uri.parse(uriString);
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, uri);
startActivity(intent);

信用到这里:Answer

我认为问题与标签中的空格有关。对查询字符串进行编码将通过将空格替换为有效字符

来消除此问题

答案 1 :(得分:1)

在地图应用程序中显示位置:

Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
String data = String.format("geo:%s,%s", latitude, longitude);
if (zoomLevel != null) {
    data = String.format("%s?z=%s", data, zoomLevel);
}
intent.setData(Uri.parse(data));
startActivity(intent);

答案 2 :(得分:1)

Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps?daddr=" + location.getLatitude() + "," + location.getLongitude()));
startActivity(intent);

答案 3 :(得分:1)