In meiner App habe ich die OpenStreetMap integriert, in der ich Quell- und Zielkoordinaten abgerufen habe. Ich muss diese Koordinaten an OpenStreetMap senden App mit Absicht Klasse, dafür brauche ich Uri.Hat OpenStreetMap Point (Source) zu Punkt (Destination) Richtung URI in Android zu verwenden?
Nach 2 Tagen Suche lange ich dieses Uri bekam
http://www.openstreetmap.org/?mlat=latitude&mlon=longitude&zoom=12
, die nur an einer Stelle unterstützt derzeit aber ich will es nicht.
Kann mir bitte jemand dabei helfen? Vielen Dank im Voraus ...
Hier ist mein Code unten
Intent sendLocationToMap = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("http://openstreetmap.org/?mlat=13.074847&mlon=80.271019&zoom=12"));
startActivity(sendLocationToMap);
Ich habe versucht, wie die unter einem 'Intent sendLocationToMap = new Intent (android.content.Intent.ACTION_VIEW, \t \t \t \t \t Uri.parse (" http://www.openstreetmap.org/directions?Motor = osrm_car & route =% "+ \t \t \t \t \t \t \t sourceLatitude + "%" + sourceLongitude + \t \t \t \t \t \t \t destinationLatitude + "%" + destinationLongitude)); \t \t \t \t \t startActivity (sendLocationToMap); ' aber es sagte" ** konnte Geoabsicht nicht parsen "http://www.openstreetmap.org/directions?engine=osrm_car&route=%13.06268%80.2653 219% 36427300% -99.27137000 ** " – user1874936
Welche App verwenden Sie, um diese Absicht zu öffnen? – Ziem
Ich versuchte mit OsmAnd App – user1874936