32

地图意图不适用于特定缩放级别以及自定义标记

    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);

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

4

4 回答 4

91

尝试以下解决方案:

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);

信用在这里:答案

我相信问题与标签中的空格有关。对查询字符串进行编码将通过用有效字符替换空格来消除问题

于 2012-10-24T16:50:00.283 回答
2

http://developer.android.com/guide/components/intents-common.html#Maps

它几乎包含与地图意图相关的所有内容。

于 2015-12-31T22:16:26.890 回答
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);
于 2015-05-26T13:23:58.897 回答
1
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps?daddr=" + location.getLatitude() + "," + location.getLongitude()));
startActivity(intent);
于 2015-09-15T10:52:34.900 回答