summaryrefslogtreecommitdiff
path: root/android-app/app/src/main
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-04-06 15:58:32 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-04-06 15:58:32 +0000
commit67d9535148c055adac6f7a90f308205d669a423e (patch)
tree378448b7f8996e191bce152fa8aeb0f998123361 /android-app/app/src/main
parent59d31d8d6198d5a8c2c4ba17cf9ad1b42a7e2018 (diff)
feat(map): add Windy Map Forecast API key to wind tile URL
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'android-app/app/src/main')
-rw-r--r--android-app/app/src/main/kotlin/org/terst/nav/MainActivity.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/android-app/app/src/main/kotlin/org/terst/nav/MainActivity.kt b/android-app/app/src/main/kotlin/org/terst/nav/MainActivity.kt
index d64ce8d..d695c1a 100644
--- a/android-app/app/src/main/kotlin/org/terst/nav/MainActivity.kt
+++ b/android-app/app/src/main/kotlin/org/terst/nav/MainActivity.kt
@@ -288,7 +288,7 @@ class MainActivity : AppCompatActivity(), SafetyFragment.SafetyListener {
TileSet("2.2.0", "https://mt1.google.com/vt/lyrs=s&x={x}&y={y}&z={z}"), 256))
.withLayer(RasterLayer("satellite-layer", "satellite-source"))
.withSource(RasterSource("windy-source",
- TileSet("2.2.0", "https://tiles.windy.com/tiles/v2.2/gfs/wind/{z}/{x}/{y}.png"), 256))
+ TileSet("2.2.0", "https://tiles.windy.com/tiles/v2.2/gfs/wind/{z}/{x}/{y}.png?key=EJOu4XMxnFU8mTgf8vLXtudNFzRdoJQE"), 256))
.withLayer(RasterLayer("windy-layer", "windy-source").apply {
setProperties(PropertyFactory.rasterOpacity(0.5f))
})