Skip to content

Commit 55d5088

Browse files
android uri fix
1 parent ea2930d commit 55d5088

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/tracker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ function updateVehicleInfo(index, position) {
368368
+ roundNumber(position.gps_lat, 6) + ', ' + roundNumber(position.gps_lon, 6) +'</a>'
369369
+ ' <i class="icon-location"></i>';
370370
} else if(ua.indexOf('android') > -1) {
371-
coords_text = '<a id="launch_mapapp" href="geo:'+position.gps_lat+','+position.gps_lon+'">'
371+
coords_text = '<a id="launch_mapapp" href="geo:'+position.gps_lat+','+position.gps_lon+'?q='+position.gps_lat+','+position.gps_lon+'">'
372372
+ roundNumber(position.gps_lat, 6) + ', ' + roundNumber(position.gps_lon, 6) +'</a>'
373373
+ ' <i class="icon-location"></i>';
374374
} else {

0 commit comments

Comments
 (0)