Changeset 15057 in josm


Ignore:
Timestamp:
2019-05-06T23:30:58+02:00 (5 years ago)
Author:
Don-vip
Message:

see #16301 - suppress icon warning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java

    r15049 r15057  
    6262    public enum ImageryType {
    6363        /** A WMS (Web Map Service) entry. **/
    64         WMS("wms"),
     64        WMS(/* ICON(data/imagery/) */ "wms"),
    6565        /** A TMS (Tile Map Service) entry. **/
    66         TMS("tms"),
     66        TMS(/* ICON(data/imagery/) */ "tms"),
    6767        /** TMS entry for Microsoft Bing. */
    68         BING("bing"),
     68        BING(/* ICON(data/imagery/) */ "bing"),
    6969        /** 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"),
    7171        /** 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"),
    7373        /** WMTS stores GetCapabilities URL. Does not store any information about the layer **/
    74         WMTS("wmts");
    75 
     74        WMTS(/* ICON(data/imagery/) */ "wmts");
    7675
    7776        private final String typeString;
Note: See TracChangeset for help on using the changeset viewer.