You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
As of #6371, MGLMapView.mm has a compiler warning due to the new MapChangeDidFinishLoadingStyle signal not being handled by an MGLMapViewDelegate method:
Semantic Issue Group
/Users/mxn/hub/mapbox-gl-native/platform/macos/src/MGLMapView.mm:753:13: Enumeration value 'MapChangeDidFinishLoadingStyle' not handled in switch
We’ll need to add -[MGLMapView mapView:didFinishLoadingStyle:] to both the iOS and macOS SDKs. The second parameter would be an MGLStyle, at least once #6097 lands and an instance of MGLStyle sticks around a bit longer.
Adding this method will take us a little further from the set of delegate methods exposed by MapKit (#2775), but MapKit doesn’t have the concept of remote map types anyhow (at least publicly).
As of #6371, MGLMapView.mm has a compiler warning due to the new
MapChangeDidFinishLoadingStyle
signal not being handled by an MGLMapViewDelegate method:We’ll need to add
-[MGLMapView mapView:didFinishLoadingStyle:]
to both the iOS and macOS SDKs. The second parameter would be an MGLStyle, at least once #6097 lands and an instance of MGLStyle sticks around a bit longer.Adding this method will take us a little further from the set of delegate methods exposed by MapKit (#2775), but MapKit doesn’t have the concept of remote map types anyhow (at least publicly).
/cc @friedbunny
The text was updated successfully, but these errors were encountered: