Changeset 24652 in osm for applications
- Timestamp:
- 2010-12-08T13:01:15+01:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery/src/org/openstreetmap/josm/plugins/imagery/tms/BingAerialTileSource.java
r24536 r24652 26 26 public BingAerialTileSource() { 27 27 super("Bing Aerial Maps", "http://ecn.t2.tiles.virtualearth.net/tiles/"); 28 29 attributions = loadAttributionText();30 System.err.println("Added " + attributions.size() + " attributions.");31 28 } 32 29 … … 157 154 @Override 158 155 public String getAttributionText(int zoom, LatLon topLeft, LatLon botRight) { 156 if (attributions == null) { 157 attributions = loadAttributionText(); 158 System.err.println("Added " + attributions.size() + " attributions."); 159 } 159 160 Bounds windowBounds = new Bounds(topLeft, botRight); 160 161 StringBuilder a = new StringBuilder();
Note:
See TracChangeset
for help on using the changeset viewer.