send geo intent instead of gmaps intent on maps link click

This commit is contained in:
Philipp Schaefer
2013-04-27 00:08:28 +02:00
parent 488b68df2e
commit a208ba9083
2 changed files with 6 additions and 4 deletions

View File

@ -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>';