Changeset 18912 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2023-12-14T13:55:36+01:00 (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/imagery/CachedAttributionBingAerialTileSource.java
r16426 r18912 34 34 */ 35 35 public CachedAttributionBingAerialTileSource(ImageryInfo info) { 36 super(info);36 this(info, null); 37 37 } 38 38 … … 46 46 super(info); 47 47 this.attributionDownloadedTask = attributionDownloadedTask; 48 // See #23227 and https://github.com/openstreetmap/iD/issues/9153#issuecomment-1781569820 49 // Of specific note: 50 // > Due to increased usage of Bing Maps imagery APIs, we decided to separate the free usage of the API 51 // > (for OSM editors) from the paid usage of the API. 52 // We aren't paying for access, so we should solely use the AerialOSM layer. 53 super.setLayer("AerialOSM"); 48 54 } 49 55
Note:
See TracChangeset
for help on using the changeset viewer.