aboutsummaryrefslogtreecommitdiff
path: root/iosApp/iosApp/Units/UnitsView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'iosApp/iosApp/Units/UnitsView.swift')
-rw-r--r--iosApp/iosApp/Units/UnitsView.swift6
1 files changed, 4 insertions, 2 deletions
diff --git a/iosApp/iosApp/Units/UnitsView.swift b/iosApp/iosApp/Units/UnitsView.swift
index a91511e..2d51f53 100644
--- a/iosApp/iosApp/Units/UnitsView.swift
+++ b/iosApp/iosApp/Units/UnitsView.swift
@@ -58,8 +58,10 @@ struct UnitsView: View {
Picker (selection: $unitsViewModel.mapLayerType, label: Text("map-layer")) {
Text("openstreetmap")
.tag(MapLayer.companion.layers[MapLayer.Type_.streets]!)
- Text("satellite")
- .tag(MapLayer.companion.layers[MapLayer.Type_.satellite]!)
+ Text("gmaps-streets")
+ .tag(MapLayer.companion.layers[MapLayer.Type_.gmapsStreets]!)
+ Text("gmaps-satellite")
+ .tag(MapLayer.companion.layers[MapLayer.Type_.gmapsSatellite]!)
}
} label: {
Image(systemName: "square.stack.3d.up")