Changeset 36381 in osm
- Timestamp:
- 2025-02-04T16:14:15+01:00 (5 days ago)
- Location:
- applications/viewer/jmapviewer
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/viewer/jmapviewer
-
Property ReleaseVersion
changed from
2.23
to2.24
-
Property ReleaseVersion
changed from
-
applications/viewer/jmapviewer/pom.xml
r36373 r36381 6 6 <groupId>org.openstreetmap.jmapviewer</groupId> 7 7 <artifactId>jmapviewer</artifactId> 8 <version>2.2 4-SNAPSHOT</version>8 <version>2.25-SNAPSHOT</version> 9 9 10 10 <name>JMapViewer</name> -
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/tilesources/BingAerialTileSource.java
r36372 r36381 159 159 if (API_KEY.equals(key)) { // If the API key has not been customized, we try to retrieve the API key 160 160 try { 161 key = FeatureAdapter.retrieveApiKey(this.getId()); 161 String rkey = FeatureAdapter.retrieveApiKey(this.getId()); 162 if (rkey != null) 163 key = rkey; 162 164 } catch (IOException ioException) { 163 165 FeatureAdapter.getLogger(this.getClass()).log(Level.WARNING, "Failed to retrieve api key", ioException);
Note:
See TracChangeset
for help on using the changeset viewer.