File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,9 +32,9 @@ var notamOverlay = null;
3232var Z_RANGE = 1 ;
3333var Z_STATION = 2 ;
3434var Z_PATH = 10 ;
35- var Z_SHADOW = 10000 ;
36- var Z_CAR = 10001 ;
37- var Z_PAYLOAD = 10002 ;
35+ var Z_SHADOW = 1000000 ;
36+ var Z_CAR = 1000001 ;
37+ var Z_PAYLOAD = 1000002 ;
3838
3939var bootstrapped = false ;
4040var zoom_timer ;
@@ -333,7 +333,7 @@ function updateVehicleInfo(index, newPosition) {
333333
334334 // update market z-index based on latitude, 90 being background and -90 foreground
335335 // the first 2 decimal digits are included for added accuracy
336- var zIndex = 9000 - parseInt ( newPosition . gps_lat * 100 ) ;
336+ var zIndex = 900000 - parseInt ( newPosition . gps_lat * 10000 ) ;
337337
338338 // update position
339339 if ( vehicle . marker_shadow ) {
You can’t perform that action at this time.
0 commit comments