Skip to content

Commit 52d29ad

Browse files
android uri fix 2
1 parent 55d5088 commit 52d29ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cache.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CACHE MANIFEST
2-
# version 160
2+
# version 163
33

44
# gogole maps files
55
http://maps.google.com/maps/api/js?v=3.10&sensor=false&key=AIzaSyCOqkcNey4CCyG4X0X5qxHAhCgD8g5DwXg

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+'?q='+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+'('+vehicle_names[index]+')">'
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)