Skip to content

Commit 927ebb2

Browse files
committed
Add missing map types
1 parent a1566f0 commit 927ebb2

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

ios/Classes/MapView/FlutterMapView.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ class FlutterMapView: MKMapView, UIGestureRecognizerDelegate {
2727
MKMapType.standard,
2828
MKMapType.satellite,
2929
MKMapType.hybrid,
30+
MKMapType.satelliteFlyover,
31+
MKMapType.hybridFlyover,
32+
MKMapType.mutedStandard,
3033
]
3134

3235
let userTrackingModes: Array<MKUserTrackingMode> = [

lib/src/ui.dart

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@ enum MapType {
1414

1515
/// Hybrid tiles (satellite images with some labels/overlays)
1616
hybrid,
17+
18+
/// Satellite flyover tiles (aerial photos)
19+
satelliteFlyover,
20+
21+
/// Hybrid flyover tiles (satellite images with some labels/overlays)
22+
hybridFlyover,
23+
24+
/// Muted standard tiles (traffic and labels, subtle terrain information)
25+
mutedStandard,
1726
}
1827

1928
enum TrackingMode {

0 commit comments

Comments
 (0)