特定のズームレベルおよびカスタムマーカーでマップインテントが機能しない
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)のマップを表示したい。
次の解決策を試してください。
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
問題はラベルのスペースに関係していると思います。クエリ文字列をエンコードすると、スペースが有効な文字に置き換えられるため、問題が解消されます
Intent intent = new Intent(Android.content.Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps?daddr=" + location.getLatitude() + "," + location.getLongitude()));
startActivity(intent);
http://developer.Android.com/guide/components/intents-common.html#Maps
Mapsの意図に関連するほとんどすべてのものがあります。
マップアプリケーションで場所を表示:
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);