Changeset 33314 in osm for applications/viewer/jmapviewer/src
- Timestamp:
- 2017-05-16T21:10:37+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/tilesources/OsmTileSource.java
r33313 r33314 71 71 * The "Transport Map" OSM tile source. 72 72 * 73 * Template for thunderforest.com 73 * Template for thunderforest.com. 74 * Requires registration of an API key (see {@link #API_KEY}). 74 75 */ 75 76 public static class TransportMap extends AbstractOsmTileSource { … … 104 105 @Override 105 106 public String getTileUrl(int zoom, int tilex, int tiley) throws IOException { 106 return this.getBaseUrl() + getTilePath(zoom, tilex, tiley) ; //+ "?apikey=" + API_KEY;107 return this.getBaseUrl() + getTilePath(zoom, tilex, tiley) + "?apikey=" + API_KEY; 107 108 } 108 109
Note:
See TracChangeset
for help on using the changeset viewer.