Changeset 36372 in osm
- Timestamp:
- 2025-01-27T14:43:10+01:00 (2 months ago)
- Location:
- applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/tilesources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/tilesources/AbstractTMSTileSource.java
r36223 r36372 44 44 baseUrl = baseUrl.substring(0, baseUrl.length()-1); 45 45 } 46 this.id = info.get Url();46 this.id = info.getId(); 47 47 this.noTileHeaders = info.getNoTileHeaders(); 48 48 this.noTileChecksums = info.getNoTileChecksums(); -
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/tilesources/BingAerialTileSource.java
r36329 r36372 81 81 */ 82 82 public BingAerialTileSource() { 83 super(new TileSourceInfo("Bing", null, null));83 super(new TileSourceInfo("Bing", null, "Bing")); 84 84 minZoom = 1; 85 85 } … … 132 132 try { 133 133 return new URI(FeatureAdapter.getSetting(METADATA_API_SETTING, METADATA_API_URL) 134 .replace(API_KEY_PLACEHOLDER, FeatureAdapter.getSetting(API_KEY_SETTING, API_KEY))134 .replace(API_KEY_PLACEHOLDER, getKey()) 135 135 .replace(API_KEY_LAYER, this.layer)).toURL(); 136 136 } catch (URISyntaxException e) { … … 139 139 throw malformedURLException; 140 140 } 141 } 142 143 /** 144 * Get the API key for Bing imagery 145 * Order of preference is as follows: 146 * <ol> 147 * <li>Custom API key provided by {@link FeatureAdapter#getSetting(String, String)} via {@link #API_KEY_SETTING}</li> 148 * <li>API key provided by {@link FeatureAdapter#retrieveApiKey(String)}</li> 149 * <li>The hardcoded API key. This should not be used whenever possible.</li> 150 * </ol> 151 * @return The API key to use 152 */ 153 private String getKey() { 154 // Preference order for key 155 // 1. Custom API key 156 // 2. Remote API key 157 // 3. Hardcoded API key 158 String key = FeatureAdapter.getSetting(API_KEY_SETTING, API_KEY); 159 if (API_KEY.equals(key)) { // If the API key has not been customized, we try to retrieve the API key 160 try { 161 key = FeatureAdapter.retrieveApiKey(this.getId()); 162 } catch (IOException ioException) { 163 FeatureAdapter.getLogger(this.getClass()).log(Level.WARNING, "Failed to retrieve api key", ioException); 164 } 165 } 166 return key; 141 167 } 142 168
Note:
See TracChangeset
for help on using the changeset viewer.