- Timestamp:
- 2019-05-06T23:30:58+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java
r15049 r15057 62 62 public enum ImageryType { 63 63 /** A WMS (Web Map Service) entry. **/ 64 WMS( "wms"),64 WMS(/* ICON(data/imagery/) */ "wms"), 65 65 /** A TMS (Tile Map Service) entry. **/ 66 TMS( "tms"),66 TMS(/* ICON(data/imagery/) */ "tms"), 67 67 /** TMS entry for Microsoft Bing. */ 68 BING( "bing"),68 BING(/* ICON(data/imagery/) */ "bing"), 69 69 /** TMS entry for Russian company <a href="https://wiki.openstreetmap.org/wiki/WikiProject_Russia/kosmosnimki">ScanEx</a>. **/ 70 SCANEX( "scanex"),70 SCANEX(/* ICON(data/imagery/) */ "scanex"), 71 71 /** A WMS endpoint entry only stores the WMS server info, without layer, which are chosen later by the user. **/ 72 WMS_ENDPOINT( "wms_endpoint"),72 WMS_ENDPOINT(/* ICON(data/imagery/) */ "wms_endpoint"), 73 73 /** WMTS stores GetCapabilities URL. Does not store any information about the layer **/ 74 WMTS("wmts"); 75 74 WMTS(/* ICON(data/imagery/) */ "wmts"); 76 75 77 76 private final String typeString;
Note:
See TracChangeset
for help on using the changeset viewer.