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 was archived by the owner on Aug 8, 2023. It is now read-only.
The structs MGLCoordinateSpan, MGLCoordinateBounds, and MGLOfflinePackProgress should be marked with the objc_boxable attribute so that they can be boxed in Objective-C. For example:
The structs
MGLCoordinateSpan,MGLCoordinateBounds, andMGLOfflinePackProgressshould be marked with theobjc_boxableattribute so that they can be boxed in Objective-C. For example:becomes:
MGLCoordinateBounds cb = …; NSValue *value = @(cb);/cc @boundsj