send geo intent instead of gmaps intent on maps link click
This commit is contained in:
parent
488b68df2e
commit
a208ba9083
@ -136,7 +136,7 @@ window.showPortalPosLinks = function(lat, lng, name) {
|
||||
portal_name = encodeURIComponent(' (' + name + ')');
|
||||
}
|
||||
if (typeof android !== 'undefined' && android && android.intentPosLink) {
|
||||
android.intentPosLink(window.location.protocol + '//maps.google.com/?q='+lat+','+lng);
|
||||
android.intentPosLink(lat, lng);
|
||||
} else {
|
||||
var qrcode = '<div id="qrcode"></div>';
|
||||
var script = '<script>$(\'#qrcode\').qrcode({text:\'GEO:'+lat+','+lng+'\'});</script>';
|
||||
|
@ -18,11 +18,13 @@ public class IITC_JSInterface {
|
||||
context = c;
|
||||
}
|
||||
|
||||
// send intent for gmaps link
|
||||
// send geo intent for navigation apps like gmaps or waze etc...
|
||||
@JavascriptInterface
|
||||
public void intentPosLink(String s) {
|
||||
public void intentPosLink(String lat, String lng) {
|
||||
// TODO eventually we want back our lat/lng-query? + "?q=" + lat + "," + lng;
|
||||
String uri = "geo:" + lat + "," + lng;
|
||||
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
|
||||
Uri.parse(s));
|
||||
Uri.parse(uri));
|
||||
context.startActivity(intent);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user