- Timestamp:
- 2012-08-03T21:59:46+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/WMSLayer.java
r5017 r5389 106 106 public static final IntegerProperty PROP_OVERLAP_EAST = new IntegerProperty("imagery.wms.overlapEast", 14); 107 107 public static final IntegerProperty PROP_OVERLAP_NORTH = new IntegerProperty("imagery.wms.overlapNorth", 4); 108 public static final IntegerProperty PROP_IMAGE_SIZE = new IntegerProperty("imagery.wms.imageSize", 500); 108 109 109 110 public int messageNum = 5; //limit for messages per layer 110 111 protected String resolution; 111 protected int imageSize = 500;112 protected int imageSize; 112 113 protected int dax = 10; 113 114 protected int day = 10; … … 158 159 public WMSLayer(ImageryInfo info) { 159 160 super(info); 161 imageSize = PROP_IMAGE_SIZE.get(); 160 162 mv = Main.map.mapView; 161 163 setBackgroundLayer(true); /* set global background variable */
Note:
See TracChangeset
for help on using the changeset viewer.