Changeset 34766 in osm for applications/viewer
- Timestamp:
- 2018-12-04T23:47:21+01:00 (6 years ago)
- Location:
- applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/Demo.java
r34759 r34766 81 81 JComboBox<TileSource> tileSourceSelector = new JComboBox<>(new TileSource[] { 82 82 new OsmTileSource.Mapnik(), 83 new OsmTileSource. CycleMap(),83 new OsmTileSource.TransportMap(), 84 84 new BingAerialTileSource(), 85 85 }); -
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/tilesources/BingAerialTileSource.java
r34760 r34766 38 38 /** 39 39 * Tile source for the Bing Maps REST Imagery API. 40 * @see <a href="https://msdn.microsoft.com/en-us/library/ff701724.aspx">MSDN</a> 40 * @see <a href="https://msdn.microsoft.com/en-us/library/bb259689.aspx">MSDN (1)</a> 41 * and <a href="https://msdn.microsoft.com/en-us/library/ff701724.aspx">MSDN (2)</a> 41 42 */ 42 43 public class BingAerialTileSource extends TMSTileSource { … … 58 59 public BingAerialTileSource() { 59 60 super(new TileSourceInfo("Bing", null, null)); 61 minZoom = 1; 60 62 } 61 63 -
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/tilesources/OsmTileSource.java
r34765 r34766 94 94 /** 95 95 * The "Transport Map" OSM tile source. 96 *97 * Template for thunderforest.com.98 96 */ 99 97 public static class TransportMap extends AbstractOsmTileSource {
Note:
See TracChangeset
for help on using the changeset viewer.