Skip to content

Commit f0e34fd

Browse files
change address of aprs tiles
1 parent f5f7a5e commit f0e34fd

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
@@ -109,7 +109,7 @@ var plot_options = {
109109
var overlayAPRS = new google.maps.ImageMapType({
110110
getTileUrl: function(coord, zoom) {
111111
var n = Math.pow(2,zoom);
112-
return (coord.y<0 || coord.y>=n || zoom > 6) ? null : "tiles/aprs/tile_"+zoom+"_"+wrapTiles(coord.x,zoom)+"_"+coord.y+".png";
112+
return (coord.y<0 || coord.y>=n || zoom > 6) ? null : "http://habhub.org/tiles/aprs/tile_"+zoom+"_"+wrapTiles(coord.x,zoom)+"_"+coord.y+".png";
113113
},
114114
tileSize: new google.maps.Size(256,256)
115115
});

0 commit comments

Comments
 (0)