|
2 | 2 |
|
3 | 3 | using Microsoft.Maui.Handlers;
|
4 | 4 |
|
5 |
| -#if IOS |
| 5 | +#if __IOS__ |
6 | 6 | using PlatformView = MapboxMaui.MapViewContainer;
|
7 | 7 | #elif __ANDROID__
|
8 | 8 | using PlatformView = AndroidX.Fragment.App.FragmentContainerView;
|
@@ -37,4 +37,62 @@ public MapboxViewHandler() : base(Mapper, CommandMapper)
|
37 | 37 | {
|
38 | 38 |
|
39 | 39 | }
|
| 40 | + |
| 41 | +#if __ANDROID__ |
| 42 | +#elif __IOS__ |
| 43 | +#else |
| 44 | + protected override PlatformView CreatePlatformView() |
| 45 | + { |
| 46 | + return new PlatformView(); |
| 47 | + } |
| 48 | + private static void HandleGestureSettingsChanged(MapboxViewHandler handler, IMapboxView view) |
| 49 | + { |
| 50 | + throw new NotImplementedException(); |
| 51 | + } |
| 52 | + |
| 53 | + private static void HandleLightChanged(MapboxViewHandler handler, IMapboxView view) |
| 54 | + { |
| 55 | + throw new NotImplementedException(); |
| 56 | + } |
| 57 | + |
| 58 | + private static void HandleImagesChanged(MapboxViewHandler handler, IMapboxView view) |
| 59 | + { |
| 60 | + throw new NotImplementedException(); |
| 61 | + } |
| 62 | + |
| 63 | + private static void HandleLayersChanged(MapboxViewHandler handler, IMapboxView view) |
| 64 | + { |
| 65 | + throw new NotImplementedException(); |
| 66 | + } |
| 67 | + |
| 68 | + private static void HandleTerrainChanged(MapboxViewHandler handler, IMapboxView view) |
| 69 | + { |
| 70 | + throw new NotImplementedException(); |
| 71 | + } |
| 72 | + |
| 73 | + private static void HandleSourcesChanged(MapboxViewHandler handler, IMapboxView view) |
| 74 | + { |
| 75 | + throw new NotImplementedException(); |
| 76 | + } |
| 77 | + |
| 78 | + private static void HandleCameraOptionsChanged(MapboxViewHandler handler, IMapboxView view) |
| 79 | + { |
| 80 | + throw new NotImplementedException(); |
| 81 | + } |
| 82 | + |
| 83 | + private static void HandleDebugOptionsChanged(MapboxViewHandler handler, IMapboxView view) |
| 84 | + { |
| 85 | + throw new NotImplementedException(); |
| 86 | + } |
| 87 | + |
| 88 | + private static void HandleScaleBarVisibilityChanged(MapboxViewHandler handler, IMapboxView view) |
| 89 | + { |
| 90 | + throw new NotImplementedException(); |
| 91 | + } |
| 92 | + |
| 93 | + private static void HandleMapboxStyleChanged(MapboxViewHandler handler, IMapboxView view) |
| 94 | + { |
| 95 | + throw new NotImplementedException(); |
| 96 | + } |
| 97 | +#endif |
40 | 98 | }
|
0 commit comments