Showing a marker at a geo:-url in Android Maps

对着背影说爱祢 提交于 2019-12-18 13:27:39

问题


Is it possible not only to have Google Maps on Android show a given coordinate in the Maps Application but have also a marker (or pin) set at the location?

I read the documentation at https://developer.android.com/guide/appendix/g-app-intents.html but it only lets me set the zoom level.

Right now I use the following code to show a place in Google Maps on Android:

Double lat = 53.3;
Double lng = 13.4;
final String uriString = "geo:" + lat + ',' + lng + "?z=15";
Intent showOnMapIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(uriString));
startActivity(showOnMapIntent);

Is it possible to have a marker there or do I need to use a MapActivity? Where can I find the complete documentation on the url parameters that the Maps application understands?

Can I use a different url prefix? For example "https://maps.google.de/maps?"? Maps has an intent-filter matching this scheme/host/pathPrefix. Where can I find documentation on which parameters Google Maps for Android actually supports with this url?


回答1:


Dirk, have you tried geo:0,0?q=lat,lng?

it is displaying a marker on my nexus 5.




回答2:


It works with the follwoing url:

final String uriString = "http://maps.google.com/maps?q=" + lat + ',' + lng + "("+ label +")&z=15";

The reverse geo coded address is shown.

I found documentation to the supported parameters here. This is not the documentation for Androids Google Maps but what I tried works.

Note: it should be noted that the original question was in regards to the the geo: URI to launch the Google Maps app (see Android Developer Reference Intents List, whereas this answer might launch a web view with the Google Maps website depending on what App the user chooses for this Intent.




回答3:


try this:

http://maps.google.com/?saddr=34.052222,-118.243611

and to get the complete route between two points:

http://maps.google.com/?saddr=34.052222,-118.243611&daddr=37.322778,-122.031944



来源:https://stackoverflow.com/questions/10744863/showing-a-marker-at-a-geo-url-in-android-maps

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!