Mapbox welcomes participation and contributions from everyone.
- Note: SwiftUI support is an experimental feature, its API may be changed until it stabilizes.
- [SwiftUI] Fixed point annotations clustering.
- [SwiftUI] Viewport inset system was refactored:
- The
Viewport.inset(...)
function was removed in favor of theViewport.padding(...)
- The
Viewport.inset(...)
previously had anignoringSafeArea
parameter which allowed developers to specify if an edge safe area inset should be accounted for in padding calculation. Starting with this version, instead of this parameter there is aMap.usesSafeAreaInsetsAsPadding(_:)
modifier that enables or disables this for all edges.
- The
- [SwiftUI] New
Map.additionalSafeAreaInsets(...)
modifier that adds additional global safe area insets for the map. Use them to display any UI elements on top of the map. The additional safe area will automatically be accounted for in camera padding calculation in every Viewport. - Added
allowOverlapWithPuck
andignoreCameraPadding
options toViewAnnotation
andMapViewAnnotation
.
- [SwiftUI] Fix bug when
Viewport.inset(...)
didn't use safe area insets on the first load. - [SwiftUI] Fix map basic coordinator clinging to the first subscriptions.
MapboxMap.loadStyle
methods changed error type fromMapLoadingError
toError
.OverviewViewportStateOptions.coordinatesPadding
is renamed toOverviewViewportStateOptions.geometryPadding
.- [SwiftUI] ``Viewport.overview(geometry:bearing:pitch:coordinatesPadding:maxZoom:offset:)
is renamed to
Viewport.overview(geometry:bearing:pitch:geometryPadding:maxZoom:offset:)` - Bearing indication on user location puck is disabled by default to reduce amount map redraws.
To re-enable bearing update rendering, set
mapView.location.options.puckBearingEnabled
totrue
. - The default behavior of resetting the viewport to idle is changed. Previously viewport was reset to idle when the user touched the map for longer than 150 ms. Now it will happen when the user pans the map. If the desired behavior is different, you can disable the default by setting
mapView.viewport.options.transitionsToIdleUponUserInteraction
tofalse
and implementing any gesture that callsmapView.viewport.idle()
.
- Refactor
MapboxMap.loadStyle
to cancel previous style loads when called multiple times. - New experimental
StyleManager.load(mapStyle:transition:completion)
method to loadMapStyle
inMapboxMap
, orSnapshotter
:mapboxMap.load(mapStyle: .standard(lightPreset: .dawn, showRoadLabels: false)) { _ in print("Style is loaded") }
- Support
slot
for annotation managers and annotation groups. - [SwiftUI] Annotation groups can be created with static list of annotations. In the example below polyline annotation group displays two annotations on the same layer.
Map { PolylineAnnotationGroup { PolylineAnnotation(lineCoordinates: route.coordinates) .lineColor("blue") if let alternativeRoute { PolylineAnnotation(lineCoordinates: alternativeRoute.coordinates) .lineColor("green") } } .lineCap(.round) .slot("middle") }
- [SwiftUI] Expose
transitionsToIdleUponUserInteraction
modifier.
- Fix issue where 2D puck images are not getting updates.
- [SwiftUI] Fixed issue when viewport inset with safe area is calculated incorrectly.
- Fixed issue when quick interaction didn't lead to resetting viewport to
idle
.
- Style projection can be undefined for styles that do not explicitly specify it, so
MapboxMap.projection
has become optional. - View Annotation API is changed:
ViewAnnotationOptions.geometry
was removed in favor ofViewAnnotationOptions.annotatedFeature
.ViewAnnotationOptions.associatedFeatureId
was removed. UseAnnotatedFeature.layerFeature(layerId:featureId:)
withViewAnnotationOptions.annotatedFeature
to bind View Annotation to features rendered by any layer.- [SwiftUI] Use
MapViewAnnotation
instead ofViewAnnotation
to display view annotations in SwiftUI.
OverviewViewportStateOptions.padding
is renamed toOverviewViewportStateOptions.coordinatePadding
, theOverviewViewportStateOptions.padding
now represents the camera padding.
- New
ViewAnnotation
class is added for simplifying View Annotation management. It is a simple to use replacement for the oldViewAnnotationOptions
. It automatically updates size and other properties of annotations, and provides new features:- Automatic anchor position from specified
ViewAnnotation.variableAnchor
configurations. - Supports displaying not only at point features, but also at lines and polygons.
- Automatic anchor position from specified
- Support Dynamic View Annotations in SwiftUI.
- Add
MapboxMaps.camera(for:camera:coordinatesPadding:maxZoom:offset)
. - Add
MapViewDebugOptions.padding
debug option. - Add
maxZoom
andoffset
parameters toOverviewViewportStateOptions
.
- Fix issue when transition to Overview Viewport resulted in double padding.
- [SwiftUI] Fix issue when Overview Viewport is incorrect if set as initial viewport.
- Add a new CustomLayer API to simplify manipulation of layers with custom rendering (aka "CustomLayerHost").
- The following APIs have been promoted to stable:
LineLayer/lineDepthOcclusionFactor
,LineLayer/lineDepthOcclusionFactorTransition
,LineLayer/lineEmissiveStrength
andLineLayer/lineEmissiveStrengthTransition
SymbolLayer/iconImageCrossFade
,SymbolLayer/iconImageCrossFadeTransition
,SymbolLayer/iconEmissiveStrength
,SymbolLayer/iconEmissiveStrengthTransition
,SymbolLayer/textEmissiveStrength
andSymbolLayer/textEmissiveStrengthTransition
BackgroundLayer/backgroundEmissiveStrength
andBackgroundLayer/backgroundEmissiveStrengthTransition
CircleLayer/circleEmissiveStrength
andCircleLayer/circleEmissiveStrengthTransition
FillLayer/fillEmissiveStrength
andFillLayer/fillEmissiveStrengthTransition
AmbientLight
,DirectionalLight
and related APIs.
- Fix memory leak in SwiftUI.
- Expose
MapViewDebugOptions
in SwiftUI.
StyleColor.red
,StyleColor.green
,StyleColor.blue
,StyleColor.alpha
are not in use anymore and got removed.- The
syncSourceAndLayerIfNeeded
method in every annotation manager (e.gPointAnnotationManager
and others) was removed from the public API.
- Add MSAA support with the
MapInitOptions/antialiasingSampleCount
property. StyleColor
- add support for all color formats as defined by Mapbox Style Spec.- Introduce experimental Custom Raster Source APIs:
StyleManager/addCustomRasterSource
,StyleManager/setCustomRasterSourceTileData
,StyleManager/invalidateCustomRasterSourceTile
,StyleManager/invalidateCustomRasterSourceRegion
. - Introduce new Map Content Gesture System.
- Add an experimental
MapView/cameraDebugOverlay
which returns a UIView displaying the current state of the camera. - Add
MapView/debugOptions
which wraps the debugOptions on the underlying map inMapViewDebugOptions
. An additional.camera
debug option has been added, which adds aCameraDebugView
to the map to see the current camera state.MapboxMap/debugOptions
has been deprecated; access the underlying map debug options throughmapView.debugOptions.nativeDebugOptions
instead.
MapboxMap.dragStart()
andMapboxMap.dragEnd()
are not in use anymore and got removed.- Remove
MapOptions/optimizeForTerrain
option. Whenever terrain is present layer order is automatically adjusted for better performance.
- Improve map camera and gestures when terrain is used to fix camera bumpiness and map flickering.
- Expose a method to remove tile region with a completion:
TileStore.removeTileRegion(forId:completion:)
. - Bump core maps version to 11.0.0-beta.4 and common sdk to 24.0.0-beta.4.
- Fix
modelCastShadows
andmodelReceiveShadows
options ofPuck3DConfiguration
being ignored. - Fix
StyleColor
failing to initialize with non-sRGB color spaces by converting suppliedUIColor
s tosRGB
color space by default.
- Introduce experimental
MapboxRecorder
, which allows recording of the map and replaying custom scenarios. - Expose
slot
property onLayer
protocol. - Bump core maps version to 11.0.0-beta.3 and common sdk to 24.0.0-beta.3.
- Add privacy policy attribution dialog action.
- Introduce
hsl
,hsla
color expression. - Introduce
random
expression. - Introduce
measureLight
expression lights configuration property. - Introduce
LineLayer/lineBorderColor
,LineLayer/lineBorderWidth
APIs. - Introduce
SymbolLayer/iconImageCrossFade
API. - Introduce experimental
BackgroundLayer/backgroundEmissiveStrength
,CircleLayer/circleEmissiveStrength
,FillLayer/fillEmissiveStrength
,LineLayer/lineEmissiveStrength
,SymbolLayer/iconEmissiveStrength
,SymbolLayer/textEmissiveStrength
,ModelLayer/modelEmissiveStrength
,ModelLayer/modelRoughness
,ModelLayer/modelHeightBasedEmissiveStrengthMultiplier
APIs. - Introduce experimental
FillExtrusionLayer/fillExtrusionAmbientOcclusionWallRadius
,FillExtrusionLayer/fillExtrusionAmbientOcclusionGroundRadius
,FillExtrusionLayer/fillExtrusionAmbientOcclusionGroundAttenuation
,FillExtrusionLayer/fillExtrusionFloodLightColor
,FillExtrusionLayer/fillExtrusionFloodLightIntensity
,FillExtrusionLayer/fillExtrusionFloodLightWallRadius
,FillExtrusionLayer/fillExtrusionFloodLightGroundRadius
,FillExtrusionLayer/fillExtrusionFloodLightGroundAttenuation
,FillExtrusionLayer/fillExtrusionVerticalScale
APIs. - Rename
Viewport
toViewportManager
. - Apply
ModelScaleMode.viewport
to Puck3D configuration and remove the custom expression for themodelScale
of the puck. This means if you are using a constant forPuck3DConfiguration/modelScale
in v10, you need to adjust this model-scale constant so the puck would be rendered correctly in v11, while this value depends on other configurations of your puck, we have found the new adjusted model-scale to fall between 10x-100x of the old value. - Add experimental
tileCover
method to theSnapshotter
that returns tile ids covering the map. - Add optional
maxZoom
andoffset
parameters toMapboxMap.camera(for coordinateBounds:)
.MapboxMap.camera(for coordinateBounds:)
,MapboxMap.camera(for coordinates:)
, andMapboxMap.camera(for geometry:)
no longer return a padding value. Location
is splitted intoLocation
andHeading
structs, the location and heading data are now animated individually.- Replace
loadStyleJSON(_:completion:)
/loadStyleJSON(_:completion:)
with overloadedloadStyle(_:completion:)
. - Mark
Expression.Operator.activeAnchor
as experimental. - Add transition options as a parameter to
loadStyle(...)
methods. Expression.Operator
is now a struct with static variables instead of enum.- Add
MapboxMap.coordinate(s)Info(for:)
for converting offscreen points into geographical coordinates. - Fixed an issue when
MapboxMap.point(for:)
could return false negative result. - Remove
source
,sourceLayer
,filter
properties from theLayer
protocol requirement. - Bump core maps version to 11.0.0-beta.1.
- Refactor style Light API: introduce
AmbientLight
,DirectionalLight
,FlatLight
and methods to set them. - Add expression support to
Layer.visibility
. - Expose new APIs for working with style importing and configuration: getStyleImports(), removeStyleImport(forImportId:), getStyleImportSchema(forImportId:), getStyleImportConfigProperties(forImportId:), setStyleImportConfigPropertiesForImportId(:configs:), getStyleImportConfigProperty(forImportId:config:), setStyleImportConfigPropertyForImportId(:config:value:)
- Expose
slot
property for allLayer
s to link layers from imported styles. - Convert Style properties enums into structs.
- Bump core maps version to 11.0.0-beta.2 and common sdk to 24.0.0-beta.2.
- Remove MetaKit reexport.
- Remove unnecessary check before updating a geo json source.
- Remove deprecated
LocationManager.updateHeadingForCurrentDeviceOrientation()
method. - Remove deprecated
MapEvents.EventKind
. - Make NSNumber extension internal.
- Remove experimental
MapboxMap.setRenderCache(_:)
method. - Remove deprecated
GestureOptions.pinchRotateEnabled
. - Remove deprecated
Location
initializer. - Remove deprecated transition properties from layers.
- Make
easeTo/flyTo
return non-optional cancelable token. - Add
rotation
case toGestureType
to be able to detect rotation separately from other gestures. - Enable zoom during a drag gesture.
- Fix bearing value is fluctuating between initial value and correct value during a rotation gesture.
- Allows animation during any ongoing gestures.
- Sync map size to the size of the metal view.
- Fix missing feature properties for
nil
/null
values. - Added experimental
tileCover
method toMapboxMap
that returns tile ids covering the map. - Expose
owner
property forCameraAnimator
protocol - Updated core styles to the latest versions.
- Merge
TilesetDescriptorOptions
andTilesetDescriptorOptionsForTilesets
. To enable tileset descriptor creation for a list of tilesets that are not part of the original style useTilesetDescriptorOptions
. - Use
DataRef
to pass snapshot and style image data by reference, improving performance - Bumped min iOS version to 12.0
- Expose a subset of ModelLayer APIs.
- Protocol
LocationProvider
now requires class semantic for implementation. - The Map events have been reworked:
- Now all Map events payloads are serialize-free, which brings more type safety and eliminates possible deserialization errors;
- The
MapboxMap
andSnapshotter
now exposeon
-prefixed properties that allows you to subscribe to map events viaobserve
andobserveNext
methods:mapboxMap.onCameraChanged.observe { [weak self] event in self?.camera = event.cameraState }.store(in: &cancelables) mapboxMap.onStyleLoaded.observeNext { [weak self] _ in self?.configureStyle() }.store(in: &cancelables)
- The
AnyCancelable
object returned fromobserve
andobserveNext
should be stored, otherwise the subscription will be immediately canceled; - The same
on
-prefixed properties can now be used asCombine.Publisher
:import Combine mapboxMap.onCameraChanged .debounce(for: .milliseconds(500), scheduler: DispatchQueue.main) .map(\.cameraState) .sink { [weak self] cameraState in self?.camera = cameraState }.store(in: &cancellables)
- Methods
MapboxMap.onEvery
,MapboxMap.onNext
,Snapshotter.onEvery
,Snapshotter.onNext
have been deprecated; - Methods
MapboxMap.observe
andSnapshotter.observe
have been removed.
- Deprecate
PointAnnotationManager.iconTextFit
andPointAnnotationManager.iconTextFitPadding
in favor ofPointAnnotation.iconTextFit
andPointAnnotation.iconTextFitPadding
. - Remove deprecated
PuckBearingSource
and related APIs. - Experimental API
MapboxMap/setMemoryBudget
was renamed toMapboxMaps/setTileCacheBudget
and promoted to stable. - Location consumer methods have been renamed to align with Swift API Design Guidelines. Use
addLocationConsumer(_:)
andremoveLocationConsumer(_:)
rather thanaddLocationConsumer(newConsumer:)
andremoveLocationConsumer(consumer:)
. SourceType
andLayerType
are now structs with static variables instead of enums- Remove
ResourceOptions
andResourceOptionsManager
. IntroduceMapboxOptions
andMapboxMapsOptions
to handle application-level access token and other generic options.- Mapbox's access token can now be set with
MapboxCommon.MapboxOptions
. By default, MapboxMaps SDK will try to read the access token from app bundle's property list orMapboxAccessToken
file when Maps service are initialized; if you wish to set access token programmatically, it is highly recommended to set it before initializing aMapView
.import MapboxMaps MapboxOptions.accessToken = accessToken
TileStore
no longer requiresTileStoreOptions.mapboxAccessToken
to be explicitly set.- Configurations for the external resources used by Maps API can now be set with
MapboxMapsOptions
:import MapboxMaps MapboxMapsOptions.dataPath = customDataPathURL MapboxMapsOptions.assetPath = customAssetPathURL MapboxMapsOptions.tileStoreUsageMode = .readOnly MapboxMapsOptions.tileStore = tileStore
- To clear the temporary map data, you can use
MapboxMap.clearData(completion:)
- Mapbox's access token can now be set with
- Expose new 3D Lights API:
AmbientLight
andDirectionalLight
. TypeConversionError
,SnapshotError
, andViewAnnotationManagerError
are now structs with static variables instead of enums- Extend
Layer
protocol withvisibility
property. - Add required
id
property toSource
. After that changeid
should be specified for source upon creation:let terrainSource = RasterDemSource(id: "terrain-source") mapView.mapboxMap.addSource(terrainSource)
- Support string option in
GeoJSONSourceData
. - Allows passing
extraOptions
(which must be a valid JSON object) when creatingStylePackLoadOptions
andTilesetDescriptorOptions
. - Deprecate
MapboxMap/style
andSnapshotter/style
, from now on you can access Style APIs directly fromMapboxMap
andSnapshotter
instance. - Add a new API to enable Tracing with
Tracing.status = .enabled
. CheckoutTracing
reference to see more. - Introduce
FillExtrusionLayer.fillExtrusionRoundedRoof
,FillExtrusionLayer.fillExtrusionEdgeRadius
API. - Introduce
line-depth-occlusion
API. - Introduce
FillExtrusionLayer/fillExtrusionRoundedRoof
,FillExtrusionLayer/fillExtrusionEdgeRadius
API. - Introduce
lineDepthOcclusionFactor
API forLineLayer
s andPolylineAnnotiationManager
. - Add
Codable
support toCameraOptions
,CameraState
,FollowPuckViewportStateBearing
,FollowPuckViewportStateOptions
. - Expose new Style APIs for partial GeoJSON update:
MapboxMap.addGeoJSONSourceFeatures(forSourceId:features:dataId:)
MapboxMap.updateGeoJSONSourceFeatures(forSourceId:features:dataId:)
MapboxMap.removeGeoJSONSourceFeatures(forSourceId:featureIds:dataId:)
- Update MapboxCoreMaps to 10.15.0 and MapboxCommon to 23.7.0.
- Fixed an issue when
MapboxMap.point(for:)
could return false negative result.
- Update MapboxCoreMaps to 10.15.0-rc.1 and MapboxCommon to 23.7.0-rc.1.
- Fixed an issue when
MapboxMap.point(for:)
could return false negative result.
- Remove unneeded synthesized initializers
- Update MapboxCoreMaps to 10.15.0-beta.1 and MapboxCommon to 23.7.0-beta.1.
- Added experimental
tileCover
method to theSnapshotter
that returns tile ids covering the map. - Update MapboxCoreMaps to 10.14.0 and MapboxCommon to 23.6.0.
- Fix the issue with simultaneous zooming/panning during the pitch gesture.
- Fix the issue with black MapView when transparent style is used.
- Update MapboxCoreMaps to 10.14.0-rc.1 and MapboxCommon to 23.6.0-rc.1.
- Add a renamed flag to
PuckBearingSource
and related APIs. - Update MapboxCoreMaps to 10.14.0-beta.1 and MapboxCommon to 23.6.0-beta.1.
- Remove XCFramework binary dependency on MapboxMobileEvents.
- Update MapboxCoreMaps to 10.13.1 and MapboxCommon to 23.5.0
- [CarPlay] Fix display link is not correctly paused/resumed when map is added to a CarPlay dashboard scene.
- Update MapboxCoreMaps to 10.13.0-rc.1 and MapboxCommon to 23.5.0-rc.1.
- Remove unnecessary check before updating a geo json source.
- Enable zoom during a drag gesture.
- Fix bearing value is fluctuating between initial value and correct value during a rotation gesture.
- Allows animation during any ongoing gestures.
- Sync map size to the size of the metal view.
- Fix visual jitter when an annotation dragging ends.
- Fix missing feature properties for
nil
/null
values. - Added experimental
tileCover
method toMapboxMap
that returns tile ids covering the map. - Update MapboxCoreMaps to 10.13.0-beta.1 and MapboxCommon to 23.5.0-beta.1.
- Bump MapboxCoreMaps to 10.12.1
- Deprecate
Snapshotter.tileMode
. - Bump MapboxCoreMaps to 10.12.0 and MapboxCommon to 23.4.0
- Correct user-agent fragment sent to events/telemetry service.
- Bump MapboxCoreMaps to 10.12.0-rc.1 and MapboxCommon to 23.4.0-rc.1.
- Change annotation end-of-drag delay to 0.125 to minimize lagging.
- Different data types are now used for
querySourceFeatures
andqueryRenderedFeatures
:QueriedSourceFeature
andQueriedRenderedFeature
.QueriedRenderedFeature
has a new fieldlayer
which contains the queried feature's layer id. - Remove deprecated
queryRenderedFeatures()
methods. UsequeryRenderedFeatures(with:options:completion:)
instead. - Remove deprecated
queryFeatureExtension()
method. UsegetGeoJsonClusterLeaves()
/getGeoJsonClusterChildren()
/getGeoJsonClusterExpansionZoom()
instead. - Add the
MapboxMap.resetFeatureState
method. - Add
callback
argument to theMapboxMap
methodsgetFeatureState
,setFeatureState
,removeFeatureState
. - Return
cancelable
from theMapboxMap
methods :getFeatureState
,setFeatureState
,removeFeatureState
,querySourceFeatures
,getGeoJsonClusterLeaves
,getGeoJsonClusterChildren
,getGeoJsonClusterExpansionZoom
. - The
CameraOptions/padding
field is now optional.
- Added basic signposts for performance profiling. To enable them, use
MAPBOX_MAPS_SIGNPOSTS_ENABLED
environment variable. (#1818) - Fix build erros appearing when SDK distributed as a static library through Cocoapods. (#1888)
- Update MapboxCoreMaps to
v10.12.0-beta.1
and MapboxCommon tov23.4.0-beta.1
- Fix app extension support. (#1916)
- Allow pass
dataId
tosourceDataLoaded
event. - Add a dedicated GestureRecognizer (and Handler) to interrupt deceleration animation on tap on the map.
- Update to MapboxCoreMaps 10.11.1 and MapboxCommon 23.3.1. (#1899)
- Improve stability of attribution parsing. (#1849)
- Enable
Expression
to be created without an operator soclusterProperties
can support advanced use cases. (#1855) - Update CoreMaps
10.11.0-rc.1
and CommonSDK23.3.0-rc.1
. (#1856) - Angle normalization function was improved to prevent map spinning on close angles. (#1828)
- Reduce CPU usage/energy consumption whem map idling while showing user location. (#1789)
- Fix loading errors appearing when providing custom endpoint for
ResourceOptions.baseURL
. (#1749) - Remove delegate requirement for annotation interaction. (#1750)
- Reset compass image to default one if
nil
was passed to theMapboxCompassOrnamentView.updateImage(image:)
. (#1766, #1772) - Prevent
PointAnnotationManager
to remove images that are not owned by it from Style. (#1775) - Use
sdf
parameter when adding a style image. (#1803) - Fix scale bar grows beyond its maximum width at large zoom near north/south poles. (#1802)
- Improve GeoJSONSource add/update performance by passing
GeoJSONSourceData
directly. (#1815) - Support
Expression
inFormatOptions
. (#1826) - Update to MapboxCoreMaps 10.11.0-beta.1 and MapboxCommon 23.3.0-beta.1. (#1842)
- [CarPlay] Fix map view permanently pausing when moving to window on foreground (#1808)
- Update CoreMaps and CommonSDK. (#1777)
- Fix memory leak when viewport is being deallocated while transition is running. (#1691)
- Fix issue with simultaneous recognition of tap gesture. (#1712)
- Fix label localization to properly handle Simplified and Traditional Chinese. (#1687)
- Allow simultaneous recognition of map- and annotation- handling gesture recognizers. (#1737)
- Update MapboxCommon to
v23.2.0-rc.3
. (#1738)
- Animates to camera that fit a list of view annotations. (#1634)
- Prevent view annotation being shown erroneously after options update.(#1627)
- Add an example animating a view annotation along a route line. (#1639)
- Enable clustering of point annotations, add example of feature. (#1475)
- Reduce location provider heading orientation update frequency. (#1618)
- Expose the list of added view annotations. (#1621)
- Fix
loadStyleURI/loadStyleJSON
completion being invoked more than once. (#1665) - Remove ornament position deprecation. (#1676)
- Prevent map from being rendered on background. By aligning better with Scene lifecycle API, as well as, respecting scene/application activation status, rendering artifacts should no longer be an issue after app is coming from background. (#1675)
- Support
isDraggable
andisSelected
properties for annotations. (#1659) - New API to load custom style JSON on the initilization of MapView. (#1686)
- Update MapboxCoreMaps to
v10.10.0-beta.1
and MapboxCommon tov23.2.0-beta.1
. (#1680) - Add API to enable/disable render of world copies. (#1684)
- Avoid triggering assertion for the 3D puck layer when returning
allLayerIdentifiers
. (#1650)
- Update to MapboxCoreMaps 10.9.0 and MapboxCommon 23.1.0. (#1652)
- Fix accuracy ring radius jumping when zooming the map in/out with
.reducedAccuracy
location authorization.(#1625) - Fix behavior with initial view annotation placement.(#1604)
- Fix behavior where selected view annotation is not moved to correct z-order.(#1607)
- Update MapboxCoreMaps to
v10.9.0-rc.1
. (#1630) - Update MapboxCommon to
v21.1.0-rc.2
. (#1630)
- Replace MapboxMobileEvents dependency with CoreTelemetry (part of MapboxCommon). (#1379)
- Expose
ResourceRequest
properties publicly. (#1548) - Parse GeoJSON data on a background queue. (#1576)
- Fix block retain cycle in
MapboxMap/observeStyleLoad(_:)
, from now onloadStyleURI
andloadStyleJSON
completion block will not be invoked when MapboxMap is deallocated. (#1575) - Remove
DictionaryEncoder
enforce nil encoding for nested level of the dictionary. (#1565) - Expose
distance-from-center
andpitch
expressions. (#1559) - Expose location puck opacity. (#1585)
- Update MapboxCoreMaps to v10.9.0-beta.1 and MapboxCommon to v23.1.0-beta.1. (#1589)
- Apply mercator scale to 3D puck also when its
modelScale
is not specified. (#1523)
- Expose image property for compass ornament. (#1468)
- Expand scale bar range up to 15000 km/10000 miles. (#1455)
- Add the ability to override scale bar units. (#1473)
- Animate padding changes between 2 camera when used with
FlyToCameraAnimator
. (#1479) - Fix NaN latitude crash rarely happening in
CameraAnimationsManager.fly(to:duration:completion)
. (#1485) - Fix
Style.updateLayer(withId:type:update)
so resetting a layer's properties should work. (#1476) - Add the ability to display heading calibration alert. (#1509)
- Add support for sonar-like pulsing animation around 2D puck. (#1513)
- Support view annotation lookup by an identifier. (#1512)
- Update to MapboxCoreMaps 10.7.0 and MapboxCommon 22.1.0. (#1492)
- Limit
MapboxMap.points(for:)
to the bounds of the map view, if the coordinate's point is beyond then return (-1, -1) for its corresponding point.(#1490) - Remove experimental ModelLayer API. (#1486)
- Add rotation threshold to prevent map from being rotated accidentally. (#1429)
- Introduce
GestureOptions.simultaneousRotateAndPinchZoomEnabled
and deprecateGestureOptions.pinchRotateEnabled
in favor ofGestureOptions.rotateEnabled
. (1429) - Expose public initializer for
TilesetDescriptorOptionsForTilesets
. (#1431) - Fix view annotation losing its feature association after update. (#1446)
- Update CoreMaps to
10.7.0-rc.1
. (#1456)
- Introduce
FillExtrusionLayer.fillExtrusionAmbientOcclusionIntensity
andFillExtrusionLayer.fillExtrusionAmbientOcclusionRadius
properties for FillExtrusionLayer. (1410) - Introduce
PointAnnotation.textLineHeight
and deprecatedPointAnnotationManager.textLineHeight
, astext-line-height
is data-driven property now. (1410) - Remove experimental annotation from Viewport API. (#1392)
- Remove deprecated
animationDuration
parameter inFollowPuckViewportStateOptions
initializer.(#1390) - Deprecate existing QueryRenderedFeatures methods and add cancellable counterparts. (#1378)
- Add well-formed(type-safe) map event types. (#1362)
- Use MapboxCoreMaps API to move a Layer instead of manually removing the layer then adding it back. (#1367)
- Expose API to get puck's location updates. (#1365)
- Add example for simulating a route with vanishing effects. (#1328)
- Expose transition properties for Atmosphere API. (#1401)
- Fix Atmosphere API coding keys so engine can read the new values properly. (#1401)
- Pause metal rendering earlier in app/scene life-cycle to address rendering artifacts when coming from background. (#1402)
- Update to MapboxCoreMaps 10.7.0-beta.1 and MapboxCommon to 22.1.0-beta.1. (#1415)
- Update to MapboxCoreMaps 10.6.0 and MapboxCommon to 22.0.0. (#1394)
- Update to MapboxCoreMaps 10.6.0-rc.1 and MapboxCommon 22.0.0-rc.2. (#1368)
- Add mercator scale factor to 3D puck, so that the 3D puck size won't increase as latitude increases. (#1347)
- Introduce ModelLayer experimental API to render 3D models on the map. (#1348)
- Expose API to check whether an image exists in
Style
. (#1297) - Call
MapboxMap.reduceMemoryUse
when application goes to background. (#1301) - Update to MapboxMobileEvents v1.0.8. (#1324)
- Enable explicit drawing behavior for metal view(call
draw()
explicitly instead ofsetNeedsDisplay
when view's content need to be redrawn) again.(#1331) - Update to MapboxCoreMaps 10.6.0-beta.3 and MapboxCommon 22.0.0-beta.1. (#1335, #1342)
- Add Atmosphere API (#1329)
- Update SDK name in attribution action sheet. (#1338)
- Revert tap target to original value. (#1339)
- Update to MapboxCoreMaps 10.5.1 and MapboxCommon 21.3.0. (#1310, #1313)
- Invoke animator completion handlers added after completion or cancellation. (#1305)
- Add support for runtime source properties. (#1267)
- Start location services lazily. (#1262)
- Fix localization crash on iOS 11 and 12. (#1278)
- Increase tap target to conform to Apple Human Interface guidelines. (#1283)
- Update to MapboxCoreMaps 10.5.0-rc.1 and MapboxCommon 21.3.0-rc.2. (#1281)
- Expose API to set memory budget for
MapboxMap
. (#1288)
- Mitigate
OfflineRegionManager.mergeOfflineDatabase(for:completion)
throwingTypeConversionError.unexpectedType
on a successfull merge. IntroduceOfflineRegionManager.mergeOfflineDatabase(forPath:completion)
as the correct way to merge offline database. (#1192) - Limit MapboxMap.point(for: CLLocationCoordinate2D) to the bounds of map view (#1195)
- Add support for app extensions. (#1183)
BasicCameraAnimator.cancel()
and.stopAnimation()
now invoke the completion blocks withUIViewAnimatingPosition.current
instead of crashing with afatalError
when invoked prior to.startAnimation()
or.startAnimation(afterDelay:)
. (#1197)CameraAnimationsManager.stopAnimations()
will now cancel all animators regardless of their state. Previously, only animators withstate == .active
were canceled. (#1197)- Fix animator-related leaks. (#1200)
- Improve AnyTouchGestureRecognizer's interaction with other gesture recognizers. (#1210)
- Expose convenience properties and methods to transform
CoordinateBounds
. (1226) - Update annotation examples. (#1215)
- Add
Style.setLight(_:)
to set light onto a style. UpdateBuildingExtrusionsExample
with an example to set a light source on the style. (#1234) - Remove
FollowPuckViewportStateOptions.animationDuration
, a workaround for the moving target problem. (#1228) - Deprecate
FollowPuckViewportStateOptions.animationDuration
, a workaround for the moving target problem. (#1228) - Add map view example with
debugOptions
. (#1225) - Introduce
line-trim-offset
property for LineLayer. (#1231) - Add
MapboxMap.coordinateBoundsUnwrapped
. (#1241) - Update
DefaultViewportTransition
to solve the moving target problem. (#1245) - Increase deceleration cutoff threshold from 20 to 35 to prevent camera changes after animation stops. (#1244)
- Update to MapboxCoreMaps 10.5.0-beta.1 and MapboxCommon 21.3.0-beta.2. (#1235)
- API for using globe projection has been moved to
Style.setProjection(_:)
andStyle.projection
and is no longer experimental. (#1235) - Add
OfflineRegion.getStatus(completion:)
. (#1239) - Add a prefix
maps-ios
to all Log message's category. (#1250))
- Revert to using metal view draw notifications (
setNeedsDisplay()
instead ofdraw()
). (#1216)
- Update to MapboxCoreMaps 10.4.1 and MapboxCommon 21.2.0. (#1190)
- Update to MapboxCoreMaps 10.4.0-rc.1 and MapboxCommon 21.2.0-rc.1. (#1158)
- Enable explicit drawing behavior for metal view(call
draw()
explicitly instead ofsetNeedsDisplay
when view's content need to be redrawn).(#1157) - Restore cancellation of animations on single tap. (#1166)
- Fix issue where invalid locations could be emitted when setting a custom location provider. (#1172)
- Fix crash in Puck2D when location accuracy authorization is reduced. (#1173)
- Fix an issue where plain text source attribution was not populated in attribution dialog.(1163)
BasicCameraAnimator.owner
is now public. (#1181)- The animation owner for ease-to and fly-to animations is now
"com.mapbox.maps.cameraAnimationsManager"
. (#1181)
- Prevent rendering in background by pausing/resuming display link in response to application or scene lifecycle events. (#1086)
- Sync viewport and puck animations. (#1090)
- Add puckBearingEnabled property for location. (#1107)
- Fix camera change events being fired after map has stopped moving. (#1118)
- Fix issue where single tap and double tap to zoom in gestures could recognize simultaneously. (#1113)
- Remove experimental GestureOptions.pinchBehavior property. (#1125)
- Update to MapboxCoreMaps 10.4.0-beta.1 and MapboxCommon 21.2.0-beta.1. (#1126)
- Exposed APIs to allow positioning of other views relative to the logoView, compassView, scaleBarView and attributionButton. (#1130)
- Add
GestureOptions.pinchPanEnabled
and.pinchZoomEnabled
. (#1092) - Fix an issue where pinch gesture emitted superfluous camera changed events. (#1137)
- Add focalPoint property to zoom and rotate gestures (#1122)
- Expose public initializers for
LayerInfo
andSourceInfo
. (#1144) - Add
ViewAnnotationManager.removeAll()
that removes all view annotations added before. IntroduceViewAnnotationUpdateObserver
protocol for notifying when annotion views get their frames or visibility changed. AddViewAnnotationManager.addViewAnnotationUpdateObserver(_:)
andViewAnnotationManager.removeViewAnnotationUpdateObserver(_:)
to add and remove observers. (#1136)
- Updated to MapboxCoreMaps 10.3.2 and MapboxCommon 21.1.0. (#1078, #1091, #1104)
- Fixed compass button regression introduced in rc.1. (#1083)
- Removed pitch gesture change angle requirements to avoid map freezing during gesture. (#1089)
- Exposed API to invalidate
OfflineRegion
. (#1026) - Exposed API to set metadata for
OfflineRegion
. (#1060) - Refined Viewport API. (#1040, #1050, #1058)
- Add extension function to show or hide bearing image. (#980)
- Updated to MapboxCoreMaps 10.3.0-rc.1 and MapboxCommon 21.1.0-rc.1. (#1051)
- Add APIs to enable customizing 2D puck accuracy ring color. (#1057)
- Exposed
triggerRepaint()
to allow manual map repainting. (#964) - Exposed
TransitionOptions
to allow control over symbol fade duration. (#902) - Added
Style.removeTerrain()
to allow removing terrain. (#918) Snapshotter
initialization now triggers a turnstyle event. (#908)- Fixed a bug where 2D puck location was never set when location accuracy authorization was reduced. (#989)
- Fixed a bug where setting LocationManager.options would cause the LocationProvider to be reconfigured. (#992)
- Update to MapboxCoreMaps 10.2.0 and MapboxCommon 21.0.1. (#952)
- Fix the crash when MapView had zero width or height. (#903)
- Removed experimental designation from persistent layer APIs. (#849)
- Fixed an issue that prevented direct download artifacts from exposing experimental APIs. (#854)
- Updates
Style.localizeLabels(into:forLayerIds:)
to only localize the primary localization and not the fall-through localizations. (#856) - Removes swiftlint config from direct download artifacts. (#859)
- Removed
AnnotationView
wrapper views fromViewAnnotationManager
API. (#846) - Reduce geometry wrapping using GeometryConvertible. (#861)
- Fixed an issue that could prevent the location puck from appearing. (#862)
- Added support for exponentials to
StyleColor
. (#873) - Fixes initialization of attribution dialog. (#865)
- Improved panning behavior on pitched maps. (#888)
- Added pinch gesture tradeoff configuration option. (#890)
- Update to MapboxCoreMaps 10.2.0-rc.1 and MapboxCommon 21.0.0-rc.2. (#891)
- Fixed an issue where camera animations triggered with
startAnimation(afterDelay:)
could appear jerky after a pan gesture. (#789) - Send location update when puck is nil and other location-related improvements. (#765)
- Update to MapboxCoreMaps 10.2.0-beta.1 and MapboxCommon 21.0.0-rc.1. (#836)
- Updates pan and pinch gesture handling to work iteratively rather than based on initial state. (#837)
AnnotationOrchestrator
, rather than the annotation managers, now manages the single-tap gesture recognizer for annotations. (#840)- Add view annotations feature, which enables the usage of custom UIView subclasses as annotations. (#776)
- Fixed billing issue when upgrading Mapbox Maps SDK from v6 to v10. (#943)
NOTE: As of December 3, 2021, this release is no longer available due to a new bug that was introduced while fixing the billing issue. A new patch will be issued shortly.
- Fixed billing issue when upgrading Mapbox Maps SDK from v6 to v10. (#885)
- Update to
MapboxCoreMaps
v10.1.0 andMapboxCommon
v20.1.0. (#807)
- Fixed an issue with
UIImage
conversion that led to a "mismatched image size" error. (#790) - Update to
MapboxCoreMaps
v10.1.0-rc andMapboxCommon
v20.1.0-rc.2. (#790)
- Make
PointAnnotation.Image
's fields public. (#753) - Set
MapboxMap
flags during gestures and animations. (#754) - Treat anchor as constant for
ease(to:)
animations. (#772) - Fix experimental snapshot API for iOS 15. (#760)
- Decelerate more quickly (or not at all) on pitched maps. (#773)
- Add
GestureOptions.pinchRotateEnabled
to configure whether the pinch gesture rotates the map. (#779) - Fixed a name collision between Swift symbols and
MapboxCoreMaps.Task
. (#769) - Fixed an issue that caused
queryFeatureExtension
to fail. (#769) - Updated
MapboxCoreMaps
to v10.1.0-beta andMapboxCommon
to 20.1.0-rc.1. (#769)
- Fixed billing issue when upgrading Mapbox Maps SDK from v6 to v10. (#942)
NOTE: As of December 3, 2021, this release is no longer available due to a new bug that was introduced while fixing the billing issue. A new patch will be issued shortly.
- Fixed billing issue when upgrading Mapbox Maps SDK from v6 to v10. (#876)
- Passing an unsupported locale into
Style.localizeLabels(into:forLayerIds:)
throws an error instead of crashing. (#752) - Fixed a bug affecting the persistence of user settings when upgrading to v10. (#758)
- Allow compass visibility to accurately reflect set value. (#757)
- Update MapboxMobileEvents to v1.0.6, fixing a null pointer crash. (#762)
- Removes default parameter values in the
addImage
function. (#695) public func layer<T: Layer>(withId id: String) throws -> T
has been updated topublic func layer<T>(withId id: String, type: T.Type) throws -> T where T: Layer
. (#694)public func updateLayer<T: Layer>(withId id: String, update: (inout T) throws -> Void) throws
has been updated topublic func updateLayer<T>(withId id: String, type: T.Type, update: (inout T) throws -> Void) throws where T: Layer
. (#694)public func source<T: Source>(withId id: String) throws -> T
has been updated topublic func source<T>(withId id: String, type: T.Type) throws -> T where T: Source
. (#694)@_spi(Experimental) public func layer(withId id: String, type: Layer.Type) throws -> Layer
is no longer experimental and has been updated topublic func layer(withId id: String) throws -> Layer
. (#694)@_spi(Experimental) public func source(withId id: String, type: Source.Type) throws -> Source
is no longer experimental and has been updated topublic func source(withId id: String) throws -> Source
. (#694)GestureManagerDelegate.gestureBegan(for:)
has been renamed toGestureManagerDelegate.gestureManager(_:didBegin:)
. (#697)- Added the public delegate methods
GestureManagerDelegate.gestureManager(_:didEnd:willAnimate:)
andGestureManagerDelegate.gestureManager(_:didEndAnimatingFor:)
. (#697) - Converts
PointAnnotation.Image
from anenum
to astruct
. (#707) - Removes
PointAnnotation.Image.default
. (#707) - Replaces
PointAnnotation.Image.custom
withPointAnnotation.Image.init(image:name:)
. (#707) - The
tapGestureRecognizer
var on each*AnnotationManager
has been removed in favor of a unified tap gesture recognizer available atGestureManager.singleTapGestureRecognizer
(#709). public func layerProperty(for layerId: String, property: String) -> Any
has been renamed topublic func layerPropertyValue(for layerId: String, property: String) -> Any
to avoid ambiguity. (#708)MapboxCommon.Geometry
extension methods are now marked as internal. (#683)TileRegionLoadOptions
init now takes aGeometry
instead of aMapboxCommon.Geometry
. (#711)CameraAnimationsManager.options
has been removed. UseMapboxMap.cameraBounds
andMapboxMap.setCameraBounds(with:)
instead. (#712)MapboxMap.setCameraBounds(for:)
has been renamed to.setCameraBounds(with:)
(#712)- Renames
Style.updateGeoJSONSource<T: GeoJSONObject>(withId:geoJSON:)
toStyle.updateGeoJSONSource(withId:geoJSON:)
. Instead of passing in the expected GeoJSON object type, you perform pattern matching on the return value usingcase let
. (#715) - Setting
data
property on a GeoJSON source viaStyle.setSourceProperty(for:property:value:)
orStyle.updateGeoJSONSource(withId:geoJSON:)
is now asynchronous and never returns an error. Errors will be reported asynchronously via aMapEvents.EventKind.mapLoadingError
event instead. (#732) - Core and Common APIs that accept user-defined implementations of protocols now hold strong references to the provided objects. Please audit your usage of the following protocols and make any required changes to avoid memory leaks:
CustomLayerHost
,ElevationData
,MapClient
,MBMMetalViewProvider
,Observer
,OfflineRegionObserver
,HttpServiceInterceptorInterface
,HttpServiceInterface
,LogWriterBackend
,OfflineSwitchObserver
,ReachabilityInterface
,TileStoreObserver
. (#732) - Extends
OfflineRegionGeometryDefinition.geometry
to useGeometry
rather thanMapboxCommon.Geometry
. It also adds a convenience initializer that takes aGeometry
. (#706) - Annotation managers are now kept alive by the
AnnotationOrchestrator
(MapView.annotations
) until they are explicitly destroyed by callingmapView.annotations.removeAnnotationManager(withId:)
or are implicitly destroyed by creating a second annotation manager with the same ID. (#725) - The
AnnotationManager
protocol now conforms toAnyObject
. (#725) PreferredFPS
has been removed.MapView.preferredFramesPerSecond
now of typeInt
, rather thanPreferredFPS
. (#735)QueriedFeature.feature
is no longer optional. (#737)TypeConversionError
has a new caseunsuccessfulConversion
. (#737)
TileRegionLoadOptions
exposes its geometry as aGeometry
. (#711)- Adds
FeatureExtensionValue.init(value: Any?, features: [Feature]?)
that works with Turf. (#717) - Adds
FeatureExtensionValue.features: [Feature]?
that works with Turf. (#717) - APIs that accept Turf
Feature
now allowFeature.identifier
and.properties
to benil
. (#717) - APIs that accept Turf
Feature
now ignoreFeature.properties
instead of crashing if it cannot be converted to[String: NSObject]
. (#717) - Any touch event in the map now immediately disables camera animation. Temporarily disable user interaction on the
MapView
to disable this behavior as needed. (#712) BasicCameraAnimator
no longer updates the camera a final time after being stopped or canceled prior to running to completion. (#712)BasicCameraAnimator.isReversed
is now settable. (#712)- The double tap, quick zoom, and double touch gestures now use the gesture's location in the view to anchor camera changes. Previously, they used the camera's center coordinate. (#722)
MapboxCommon.HTTPServiceFactory.reset()
has been added to release the HTTP service implementation. (#732)AnnotationOrchestrator.annotationManagersById
has been added. This dictionary contains all annotation managers that have not been removed. (#725)- Adds the
ExpressionArgument.geoJSONObject(_:)
case, which allows you to include aTurf.GeoJSONObject
instance in an expression with theExpression.Operator.distance
orExpression.Operator.within
operator. (#730) - Adds
MapView.preferredFrameRateRange
for devices using iOS 15.0 and up. (#735) - Adds
TileStore.subscribe(_:)
which can be used to observe aTileStore
's activity. The API design deviates from Android's add/remove observer API so that the developer-providedTileStoreObserver
can be wrapped into aMapboxCommon_Private.TileStoreObserver
without needing to use global state or something like Objective-C associated objects to look up which wrapper goes with with developer-provided observer when calling__removeObserver
. (#737) - Adds
TileStoreObserver
protocol. (#737)
- Fix rendering artifacts for a model layer when
model-opacity
property is used. (#732) - Improve rendering performance by avoiding unnecessary re-layout for cached tiles. (#732)
- Fix telemetry opt-out through attribution dialog. (#743)
- Updates MapboxCoreMaps to v10.0.0, MapboxCommon to v20.0.0. (#732)
- Updates Turf to v2.x. (#741)
- Updates MapboxMobileEvents to v1.0.5. (#724)
BasicCameraAnimator
now keeps animators alive without the user storing the animator. (#646)- Experimental style APIs are now marked with
@_spi(Experimental)
and the previously used underscore prefixes have been removed. In order to access these methods, use@_spi(Experimental)
to annotate the import statement for MapboxMaps. (#680) RenderedQueryOptions.filter
is now of typeExpression
instead ofAny
(#689)OfflineRegionGeometryDefinition.geometry
is now of typeTurf.Geometry
instead ofMapboxCommon.Geometry
(#689)- The
HTTPResponse
init methods that takeMapboxCommon.Expected
instead ofResult
are now correctly marked as refined for Swift. (#689) - The
DownloadStatus
init methods that takeMapboxCommon.Expected
instead ofResult
andNSNumber?
instead ofUInt64?
are not correctly marked as refined for Swift. (#689) GestureOptions.hapticFeedbackEnabled
has been removed. (#663)GestureManager.decelarationRate
has been removed andGestureOptions.decelerationRate
is the single source of truth. (#662)GestureManager
no longer conforms toNSObject
and is not aUIGestureRecognizerDelegate
. (#669)TapGestureHandler.init
was previously public by mistake and is now internal. (#677)- The behavior of
GestureManager.options
has been updated to better reflect theisEnabled
state of the associated gesture recognizers. (#677) - The gesture recognizer properties of
GestureManager
are no longerOptional
. (#677) GestureType
has been redesigned so that its cases have a 1-1 relationship with the built-in gestures. (#677)GestureManager.rotationGestureRecognizer
has been removed. Rotation is now handled by.pinchGestureRecognizer
in addition to its preexisting handling of panning and zooming. (#696)GestureManager.doubleTapToZoomOutGestureRecognizer
has been replaced with.doubleTouchToZoomOutGestureRecognizer
. (#696)PanScrollingMode
has been renamed toPanMode
. (#696)GestureOptions.zoomEnabled
has been replaced by.doubleTapToZoomInEnabled
,.doubleTouchToZoomOutEnabled
, and.quickZoomEnabled
. (#696)GestureOptions.rotateEnabled
has been removed. (#696)GestureOptions.scrollEnabled
has been renamed to.panEnabled
. (#696)GestureOptions.scrollingMode
has been renamed to.panMode
. (#696)GestureOptions.decelerationRate
has been renamed to.panDecelerationFactor
. (#696)GestureType.doubleTapToZoomOut
has been replaced with.doubleTouchToZoomOut
. (#696)GestureType.rotate
has been removed. (#696)GestureType
cases have been reordered for consistency withGestureOptions
andGestureManager
. (#696)
- Allow users to set the map's
MapDebugOptions
. (#648) - Implement 'promoteId' feature for geojson and vector sources. The feature allows to promote feature's property to a feature id, so that promoted id can be used with FeatureState API. (#660)
- Tiled 3D model layer and source (#689)
- Enable instant transitions for data driven symbol layer properties (#689)
- Implement face culling for Metal (#689)
HTTPServiceInterface.getInstance()
is now publicly available. (#689)CameraState
's fields are nowvar
s instead oflet
s for testing purposes, and a public, memberwise initializer has been added. (#677)PanScrollingMode
now conforms toCaseIterable
. (#677)GestureType
now conforms toCaseIterable
. (#677)- Pan deceleration has been reimplemented to produce a more natural deceleration effect. (#692)
- Expose new API to allow users to create a
UIImage
out of the last rendered MapView state. (#693)
- Fixes animations that are started within an UIKit animation context. (#684)
- Fix transition between layers with all-constant properties (#689)
- Fix rendering artifact for a line layer, when its line-gradient property is set at runtime. (#689)
- Don't draw SDF images in text-field and issue warning for it (#689)
- Fix incorrect return from
StyleManager#getStyleLayerPropertyDefaultValue
for 'text-field'. Now the default value is set to["format", "" , {}]
(#689) - GestureManager no longer sets itself as the delegate of all gestures in MapView when its options change. (#677)
- Fixes an issue where tapping the compass could fail to set the bearing to 0 if there was already an animation running. Tapping the compass now cancels any existing animations. (#696)
- Fixes issues with the pinch gesture when removing and re-adding one of the two required touches. (#696)
- Fixes an issue where a pan gesture would fail if it interrupted the deceleration from a previous pan gesture. (#696)
QueriedFeature.feature
is now of typeTurf.Feature?
instead ofMapboxCommon.Feature
. (#628)- Enables error notification in offline mode if the required resource is missing in cache (before map did not emit any notification in this case) (#628)
- Suppresses error notifications on missing volatile tiles in offline mode (#628)
- Adapt setBounds to gl-js behavior: constraining of coordinates and zoom level is now stricter to prevent out of bounds map area to be visible in the viewport (#628)
- Add HTTP interceptor API - HttpServiceInterface has a new method
setInterceptor
that must be implemented (#628) Geometry
now refers toTurf.Geometry
instead ofMapboxCommon.Geometry
. (#622)Feature
now refers toTurf.Feature
instead ofMapboxCommon.Feature
. (#642)- Renamed
ColorRepresentable
toStyleColor
(#650) - Removed the argument label from
StyleColor
'sUIColor
initializer (#650) - Renamed
ColorRepresentable.rgbaDescription
toStyleColor.rgbaString
. (#650) - Changed
StyleColor
'sEncodable
implementation to always encode an rgba color string instead of encoding an rgba expression (#650) - Updated the extension on
UIColor
that addsExpressionArgumentConvertible
to return an rgba color string instead of an rgba expression. (#650) - Annotation managers now sync with their backing source and layer only once per display link. Use
syncSourceAndLayerIfNeeded()
to force the sync to happen earlier. (#650, #621) - The
layerType
argument toStyle._layerPropertyDefaultValue(for:property:)
is now of typeLayerType
instead ofString
(#650) Expression
decoding will now fail if the operator is missing (#650)PointAnnotationManager.textVariableAnchor
is now of type[TextAnchor]?
instead of[String]?
(#650)PointAnnotationManager.textWritingMode
is now of type[TextWritingMode]?
instead of[String]?
(#650)
- It is no longer necessary to
import Turf
. (#622) - Enable instant transitions for data driven paint layer properties (#628)
- Offload networking tasks at the init phase (#631)
- 3D pucks will now be rendered over other 3D content and occluded by terrain (#641)
- Added a public, failable, component-wise initializer to
StyleColor
(#650) - Updated
StyleColor
'sDecodable
support to be able to handle rgba color strings as well as rgba expressions (#650) - Made generated enums conform to
CaseIterable
(#650) - Location puck can now hide the accuracy ring. The default value is to hide the accuracy ring. In order to enable the ring, set the
showAccuracyRing
property inPuck2DConfiguration
totrue
. #629 - Annotation interaction delegates are only called when at least one annotation is detected to have been tapped (638)
- Fix volatile tiles disappearing on "not modified" response (#628)
- Fix crash in MapboxMap.clearData() (#628)
- Trigger map redraw when feature state changes (#628)
- Do not start background task if telemetry collection is disabled (#631)
- Fix KVC decoding for iOS 15 (#631)
- The GeoJSON source backing an
AnnotationMnager
is now removed correctly when anAnnotationManager
is deallocated (#633) - Updated annotations to use
rgbaString
andinit(rgbaString:)
when serializing and deserializingStyleColor
s (#650) - Annotation managers now properly restore the default values of any annotation or common style properties that are reset to nil, with the exception of
text-field
andline-gradient
for which there are currently issues to resolve between mapbox-maps-ios and mapbox-core-maps-ios. (#650) - Fixed Expression decoding when second array element could be an operator (#650)
- Fixed an issue where layer persistence was not maintained after calling
Style._moveLayer
. (#643) - Fix issue where annotations were not being returned to annotation interaction delegates (638)
TileStore.tileRegionGeometry(forId: String, completion: @escaping (Result<MapboxCommon.Geometry, Error>) -> Void)
has been updated toTileStore.tileRegionGeometry(forId: String, completion: @escaping (Result<Geometry, Error>) -> Void)
. (#661)
- Add support for
FeatureState
in GeoJSON sources. (#611)setFeatureState(sourceId:sourceLayerId:featureId:state:)
is used to associate astateMap
for a particular featuregetFeatureState(sourceId:sourceLayerId:featureId:callback:)
is used to retrieve a previously storedstateMap
for a featureremoveFeatureState(sourceId:sourceLayerId:featureId:stateKey:)
is used to remove a previously storedstateMap
for a feature
- Added
GeoJSONSource.generateId
(#593) - Enable the combined usage of line-dasharray with line-gradient (#588)
- Fixed rendering issue for round line-join in line gradients (#594)
- Removed GeoJSONManager. Please use Turf directly instead to serialize and deserialize GeoJSON. (#603)
- Add specific geometry types to annotations. (#612)
- Replace syncAnnotations with property setter. (#614)
- Update all Annotation files to use
get/set
instead ofdidSet
. This fixes an issue where properties were not being set atinit
. (#590) GeoJSONSource.clusterProperties
is now correctly modeled per the style spec. (#597)- Fixes a crash caused by
MapboxMap.clearData()
. (#609) - Added missing attribution and links to info alert controller. (#591)
- Fixed issue that caused incorrect animation of negative padding values (#602)
- Added support for building with Xcode 13b3. (#564)
- Added attribution to snapshots generated by
Snapshotter
. (#567) - Added a convenience initializer for
DownloadStatus
(#454)
- Fixed an issue where panning was not enabled while zooming. (#474)
- Fixed an issue where
MapView
positioning wasn't correct when used in containers such as UIStackView. (#533)
- Added new options to
MapSnapshotOptions
showsLogo
is a flag that will decide whether the logo will be shown on a snapshotshowsAttribution
is a flag that will decide whether the attribution will be shown on a snapshot
- Support
text-writing-mode
property for line symbol-placement text labels. (#522) Note: This change will bring following changes for CJK text block:- For vertical CJK text, all the characters including Latin and Numbers will be vertically placed now. Previously, Latin and Numbers are horizontally placed.
- For horizontal CJK text, it may have a slight horizontal shift due to the anchor shift.
- Expanded
localizeLabels(into: Locale)
to accept a[String]
. This array will contain a list of layer ids that you will want to localize. (#512)
TileRegionError
has a new casetileCountExceeded(String)
. (#522)- FlyToCameraAnimator.state will now be
.inactive
after it completes or is stopped. This change makes its behavior consistent with the behavior ofBasicCameraAnimator
. (#519) - Completion blocks added to
BasicCameraAnimator
will no longer be invoked as a side-effect of deinitialization. (#519) - Removed the
SupportedLanguage
enum. You may now useLocale(identifier: String)
as intended. (#512) - Removed the
MapView.locale
property. Now, in order to localize values, you must callmapView.mapboxMap.style.localizeLabels(into: Locale)
. (#512)
- Clean up network listener after http file source gets out of scope. (#522)
- Fix
line-center
anchor calculation when the anchor is very near to the line geometry point. (#522) - Fix threading issues in HTTP file source. (#522)
- Fixed an issue that could cause flickering during ease to and basic animations (#519)
- Fixed an issue that could result in ease to and basic animations never reaching their final values (#519)
- Introduced static method
MapboxMap.clearData(for:completion:)
and instance methodsMapboxMap.clearData(completion:)
andSnapshotter.clearData(completion:)
. These new methods allow clearing temporary map data. (#496) MapLoadingError
events now include source and tile information where appropriate. These new fields allow developers to understand what source or tile has failed to load and the reason for the failure. (#496)
- Fixed a runtime crash that occurred only when the SDK was included as an XCFramework (direct download). (#497)
- Fixed an issue where animators created by fly to and ease to were not released until the next fly to or ease to began. (#505)
- Fixed an issue where a complete animator would trigger redrawing unnecessarily. (#505)
- Fix raster/v1 terrain tiles fetch failures caused by appending pixel ratio to the URLs when tile size is equal to 512 (#496)
- Improve persistent layer pinning by keeping information about initial LayerPosition (#496)
- Introduced experimental
Style._addPersistentLayer(with:layerPosition:)
,Style._isPersistentLayer(id:)
,Style._addPersistentCustomLayer(withId:layerHost:layerPosition:)
APIs, so that the tagged layer and its associated resources remain when a style is reloaded. This improves performance of annotations during a style change. Experimental APIs should be considered liable to change in any SEMVER version. (#471, #473)
- Annotations now will persist across style changes by default. (#475)
- Adds localization support for v10 Maps SDK. This can be used by setting the
mapView.locale
. Use theSupportedLanguages
enum, which lists currently supportedLocale
. (#480) - Fixed Tileset descriptor bug: Completion handler is called even if the
OfflineManager
instance goes out of scope. - Fixed text rendering when both 'text-rotate' and 'text-offset' are set.
The Mapbox Maps SDK for iOS has moved to release candidate status and is now ready for production use.
- Converted
MapSnapshotOptions
to a struct. (#430) - Removed
CacheManager
. In the following releases, an API to control temporary map data may be provided. (#440) - Changed
ResourceOptions.cachePathURL
todataPathURL
and removedcacheSize
. (#440) - Annotations don't have a
type
property since they can be directly compared to a type. (451) - Internalize extensions of Core and Common types. (#449)
- Allows a developer to choose whether the puck is oriented based on
heading
orcourse
via a newpuckBearingSource
option inmapView.location.options
. By default, the puck will be oriented usingheading
. (#428) - All stock gesture recognizers are now public on the
GestureManager
. (450) - The tap gesture recognizer controlled by any given annotation manager is now public. (451)
- Fixed a bug where animations were not always honored. (#443)
- Fixed an issue that vertical text was not positioned correctly if the
text-offset
property was used. (#440) - Emit
.mapLoadingError
when an empty token is provided for accessing Mapbox data sources. Before the fix, the application may crash if an empty token was provided and map tries to load data from Mapbox data source. (#440) - Do not emit
.mapLoadingError
when an empty URL is set to GeoJSON source. (#440)
- Updated MapboxCoreMaps, MapboxCommon and Turf dependencies. (#440)
- Updated MapboxCoreMaps and MapboxCommon dependencies. (#388)
- Removed the
MBX
prefix fromMBXGeometry
,MBXGeometryType
andMBXFeature
. Existing uses of the similar Turf types need to be fully namespaced, i.e.Turf.Feature
- Introduced separate minZoom/maxZoom fields into CustomGeometrySourceOptions API instead of the formerly used
zoomRange
- Improved zooming performance.
- Fixed terrain transparency issue when a sky layer is not used.
- Removed the
MapboxMap.__map
is now private. (#374)- Added
CameraManagerProtocol.setCameraBounds
,MapboxMap.prefetchZoomDelta
,MapboxMap.options
,MapboxMap.reduceMemoryUse()
,MapboxMap.resourceOptions
andMapboxMap.elevation(at:)
. (#374) - Removed
OfflineError.invalidResult
andOfflineError.typeMismatch
. (#374) - Updated
Projection
APIs to be more Swift-like. (#390) - Added
ResourceOptionsManager
and removedCredentialsManager
which it replaces.ResourceOptions
is now a struct. (#396) - Updated the ambient cache path. (#396)
- Removed
CameraAnimationsManager.setCamera()
and renamedCameraManagerProtocol._setCamera
toCameraManagerProtocol.setCamera()
. UseMapView.mapboxMap.setCamera()
to set the camera. (#426) - Removed
MapCameraOptions
andRenderOptions
; this behavior has moved to bothMapboxMap
andMapView
. (#427) - The Annotations library has been rebuilt to expose many more customization options for each annotation. (#398)
- High level animations return
Cancelable
instead ofCameraAnimator
. (#400)
- Fixed a bug with
TileStore.tileRegionGeometry
returning invalid value. (#390) - Fixed a bug where the underlying renderer was not being destroyed. (#395)
- Fixed a bug where the snapshotter completion handler was being called twice on cancellation. (#382)
- Fixed a bug where
GestureManager.delegate
was inaccessible. (#401)
- Added
Snapshotter.coordinateBounds(for:)
andSnapshotter.camera(for:padding:bearing:pitch:)
. (#386)
- Dependency management for development of the SDK has moved to Swift Package Manager and the existing Cartfile has been removed.
BaseMapView.on()
has now been replaced bymapView.mapboxMap.onNext(...) -> Cancelable
andmapView.mapboxMap.onEvery(...) -> Cancelable
. (#339)StyleURI
,PreferredFPS
, andAnimationOwner
are now structs. (#285)- The
layout
andpaint
substructs for each layer are now merged into the root layer struct. (#362) GestureOptions
are owned byGestureManager
directly. (#343)LocationOptions
are owned byLocationManager
directly. (#344)MapCameraOptions
are owned bymapView.camera
directly. (#345)RenderOptions
are owned byBaseMapView
directly. (#350)AnnotationOptions
are owned byAnnotationManager
directly. (#351)MapView
has been coalesced intoBaseMapView
and the resulting object is calledMapView
. (#353)Style.uri
is now an optional property. (#347)Style
is no longer a dependency onLocationSupportableMapView
. (#352)Style
now has a more flat structure.Layout
andPaint
structs are now obsolete andLayer
properties are at the root layer. (#362)- Changed
LayerPosition
to an enum. (#) - Removed
style
from MapView; updated tests and examples to usemapboxMap.style
. (#361) - The
visibleFeatures
APIs have been renamed toqueryRenderedFeatures
. (#361) LoggingConfiguration
is no longer public. (#361)- The following Swift wrappers have been added for existing types; these primarily change callbacks from using an internal
MBXExpected
type to using Swift'sResult
type. (#361)CacheManager
HttpResponse
OfflineSwitch
(which replaces NetworkConnectivity)OfflineRegionManager
(though this API is deprecated)
- Adds
loadStyleURI
andloadStyleJSON
toMapboxMap
. (#354)
- Fixed an issue where the map's scale bar and compass view could trigger
layoutSubviews()
for the map view. (#338)
OrnamentOptions.logo._isVisible
andOrnamentOptions.attributionButton._isVisible
have been replaced withOrnamentOptions.logo.visibility
andOrnamentOptions.attributionButton.visibility
. (#326)
- Fixed an issue where location pucks would not be rendered. (#331)
camera(for:)
methods have moved fromBaseMapView
toMapboxMap
(#286)- The API has also been aligned with Android by:
- Removing default values for parameters
- Making
bearing
andpitch
parameters optional - Adding the
camera(for:camera:rect:)
variant
- The API has also been aligned with Android by:
OrnamentOptions
should now be accessed viaMapView.ornaments.options
.MapConfig.ornaments
has been removed. Updates can be applied directly toOrnamentsManager.options
. Previously the map's ornament options were updated onMapConfig.ornaments
withMapView.update
. (#310)OrnamentOptions
now uses structs to manage options for individual ornaments. For example,OrnamentOptions.scaleBarPosition
is nowOrnamentOptions.scaleBar.position
. (#318)- The
LogoView
class is now private. (#310) Style
has been significantly refactored, for example:- Synchronous APIs returning
Result
types now throw. - A number of APIs previously accessed via
__map
are now available via theStyle
object. - APIs with a
get
prefix have been renamed; for examplegetLayer<T>(with:type:)
tolayer<T>(withId:type:) throws
andgetSource<T>(id:type:)
tosource<T>(withId:type:) throws
- Synchronous APIs returning
OrnamentsManager
is now a public class and can be accessed via theMapView
'sornaments
property.CompassDirectionFormatter
is now public. It provides a string representation of aCLLocationDirection
and supports the same languages as in pre-v10 versions of the Maps SDK. (#300)-OrnamentOptions
should now be accessed viaMapView.ornaments.options
. Updates can be applied directly to theoptions
property. Previously the map's ornament options were updated viaMapConfig.ornaments
. (#310)- The
LogoView
class is now private. (#310)
-
- A new
CameraTransition
struct has been introduced to allow better control on the "from" and "to" values of a camera animation (#282)- A mutable version of the
CameraTransition
struct is passed into every animation block.
- A mutable version of the
- Animations can only be constructor injected into
CameraAnimator
as part of themakeAnimator*
methods onmapView.camera
. - The
makeCameraAnimator*
methods have been renamed tomakeAnimator*
methods
- A new
-
- Gestures now directly call
__map.setCamera()
instead of using CoreAnimation
- Gestures now directly call
-
- The initializer has changed to
public init(frame: CGRect, mapInitOptions: MapInitOptions = MapInitOptions(), styleURI: StyleURI? = .streets)
. MapOptions
has been renamedMapConfig
. A newMapOptions
has been introduced; its properties are required to initialize the underlying map object.- A
MapInitOptions
configuration struct has been introduced. It currently wraps bothResourceOptions
andMapOptions
and is used when initializing aMapView
. baseURL
andaccessToken
can no longer be set from a nib or storyboard. Instead a newMapInitOptionsProvider
protocol and anIBOutlet
onMapView
has been introduced to allow a customerMapInitOptions
to be provided to theMapView
. This provider is not used when initializing aMapView
programmatically.- The
Manager
suffix has been removed fromMapView.gesturesManager
,MapView.ornamentsManager
,MapView.cameraManager
,MapView.locationManager
, andMapView.annotationsManager
. BaseMapView.camera
has been renamed toBaseMapView.cameraOptions
.
- The initializer has changed to
-
AccountManager
has been removed. A newCredentialsManager
replaces it. You can useCredentialsManager.default
to set a global access token.- MapboxCoreMaps protocol conformances have been encapsulated. (#265)
ObserverConcrete
has been removed.BaseMapView
no longer conforms toMapClient
orMBMMetalViewProvider
, and the methods they required are now internal.- The setter for
BaseMapView.__map
is now private Snapshotter
no longer conforms toObserver
, and the method it required is now internal.
- The
BaseMapView.__map
property has been moved toBaseMapView.mapboxMap.__map
. (#280) - A
CameraOptions
struct has been introduced. This shadows the class of the same name from MapboxCoreMaps and. This avoids unintended sharing and better reflects the intended value semantics of theCameraOptions
concept. (#284)
-
- Updated dependencies to MapboxCoreMaps 10.0.0-beta.20 and MapboxCommon 11.0.1
- ResourceOptions now contains a
TileStore
instance. Tile store usage is enabled by default, the resource optiontileStoreEnabled
flag is introduced to disable it. TileStore
no longer returns cached responses for 401, 403 and unauthorized requests.- Fixed a bug where
TileStore
would not invoke completion closures (when client code did not keep a strong reference to the tile store instance).
- Introduced the
OfflineManager
API that manages style packs and produces tileset descriptors for use with the tile store. TheOfflineManager
andTileStore
APIs are used in conjunction to download offline regions and associated "style packs". These new APIs replace the deprecatedOfflineRegionManager
. Please see the newOfflineManager
guide for more details.
- Fixed a crash in line layer rendering, where the uniform buffer size had an incorrect value.
-
AnnotationManager
no longer conforms toObserver
and no longer has apeer
(#246) -
AnnotationSupportableMap
is now internal (#246) -
- Initializer has been changed to
public init(frame: CGRect, resourceOptions: ResourceOptions, glyphsRasterizationOptions: GlyphsRasterizationOptions = GlyphsRasterizationOptions.default, styleURI: StyleURI? = .streets)
. StyleURL
has been renamed toStyleURI
OrnamentSupportableMapView
is not internal.
- Initializer has been changed to
-
LayoutPosition
has been deprecated in favor ofOrnamentPosition
.LayoutVisibility
has been deprecated in favor ofOrnamentVisibility
.showsLogoView
has been renamed to_showsLogoView
.showsCompass
andshowsScale
have been deprecated. Visibility properties can be used to set how the Compass and Scale Bar should be shown.
-
cancelTransitions
has been renamed tocancelAnimations
.setCamera()
with individual parameters has been deprecated in favor ofsetCamera(to targetCamera: CameraOptions...)
which requiresCameraOptions
.- The following camera convenience functions have been removed:
public func transitionCoordinateBounds(newCoordinateBounds: CoordinateBounds, animated: Bool = false)
public func transitionCoordinateBounds(to newCoordinateBounds: CoordinateBounds, edgePadding: UIEdgeInsets, animated: Bool = false, completion: ((UIViewAnimatingPosition) -> Void)? = nil)
public func transitionVisibleCoordinates(newCoordinates: [CLLocationCoordinate2D], edgePadding: UIEdgeInsets, animated: Bool = false)
public func transitionVisibleCoordinates(to newCoordinates: [CLLocationCoordinate2D], edgePadding: UIEdgeInsets, bearing: CLLocationDirection, duration: TimeInterval, animated: Bool = false, completion: ((UIViewAnimatingPosition) -> Void)? = nil)
public func resetPosition()
public func resetNorth(_ animated: Bool = false)
- In
CameraAnimator
,fractionComplete
is now of typeDouble
anddelayFactor
now returns aDouble
. MapboxLogoView
has been renamed toLogoView
.MapboxLogoSize
has been renamed toLogoSize
.
-
- Initializer is now marked as internal.
styleUri
property has been renamed touri
.- The
url
property fromStyleURL
has been removed.
-
init(from: jsonObject)
andpublic func jsonObject()
have been removed.Element.op
has been renamed toElement.operator
.Argument.array
has been renamed toArgument.numberArray
.ValidExpressionArgument
has been renamed toExpressionArgumentConvertible
- Fixes an issue that could prevent annotations from being selectable. (#246)
- Fixes an issue where some JSON layers are not be decoded correctly. (#248)
- Fixes an issue where the location puck was not animating. (#256)
- The
CameraManager.moveCamera
method has been removed. (#217) UIView.animate
is no longer supported. Instead, useCameraAnimators
. (#217)- Developers should make camera changes directly to
MapView
's camera properties. Previously, changes could be applied toMapView.cameraView
. (#217) CameraAnimator
objects are managed by developers and should be stored by developers to prevent the animations from falling out of scope.LocationOptions.showUserLocation
has been removed. UseLocationOptions.puckType
instead, setting it tonil
if you do not want to show the user location.LocationManager.showUserLocation
has also been removed. (#203)- Make model layer internal and refactor for increased public API clarity
(#194, #198)
ModelLayer
andModelSource
are now internalshouldTrackLocation
flag has been removed fromLocationConsumer
because it was never usedPuckType.puck2D
's associated value is now non-optional. It still has a default value corresponding to the previous behaviorLocationPuckManager
is now internal- Renaming:
LocationPuck
is nowPuckType
LocationOptions.locationPuck
is nowLocationOptions.puckType
LocationIndicatorLayerViewModel
is nowPuck2DConfiguration
PuckModelLayerViewModel
is nowPuck3DConfiguration
- Updates dependencies to MapboxCoreMaps 10.0.0-beta.17 and MapboxCommon 10.0.2.
(#193)
- [rendering] Query rendered features now work for fill-extrusions when terrain is enabled.
- [rendering] Improved terrain rendering performance due to reduction of loaded tiles.
- All layer paint/layout properties can be defined via expressions (#185)
- Added RawRepresentable conformance to StyleURL. Removed enum cases for older style versions. (#168)
- Introduced the platform-driven Drag API for shifting the map’s camera. (#217)
- Introduced
CameraAnimator
, a UIViewPropertyAnimator-based class for animating camera changes. These animators should be created usingCameraManager.makeCameraAnimator
methods. (#217) - Gesture-driven camera changes have been updated to use camera animators. (#217)
- The
AnimatorOwner
enum has been added to track owners for individual animators. (#217) CameraManager.fly(to:)
is now built on camera animators.zoom
,pitch
,bearing
, andcenterCoordinate
keyframes are supported. (#217)- The getter for LocationManager.locationOptions is now public. (#209)
- Added function to get layer identifier for an annotation type. (#189)
- Add PreferredFPS.custom() to add support for custom preferred frames per second values. (#157)
- Fixes an issue in which the puck was not reflecting updates to its configuration (#199)
- Updates MapboxCoreMaps to v10.0.0.beta.16 and MapboxCommon to v10.0.0-beta.12 (#152)
- The above breaking change introduces the new Map Events API which will:
- Simplify the Map API and align it with other weakly typed interfaces (addStyleLayer, addStyleSource, etc.).
- Minimize the effort for addition of new events.
- Expose experimental events.
- Suppress events that a developer hasn't subscribed to.
- Automatically expose new events for Snapshotter (eliminating the need to modify MapObserver and MapSnapshotterObserver separately).
- Events that have been removed:
mapResumedRendering
mapPausedRendering
mapLoadingStarted
renderMapStarted
renderMapFinished
cameraWillChange
cameraIsChanging
- Events that have been renamed:
EventType.Map.mapLoaded
->EventType.Map.loaded
MapEvents.EventKind.cameraDidChange
->MapEvents.EventKind.cameraChanged
- Maps SDK now supports a static bundle via direct download (#149)
- Updates Turf to v2.0.0-alpha.3 (#133)
- Added SwiftUI example. (#78)
- Allow a developer to synchronously update a layer with one API call -- no longer have to retrieve and re-add a layer. (#85)
- MapboxMaps can now be built and tested using Swift Package Manager (#125)
- Prevent pitch and zoom from exceeding limits. Also updates default maximum pitch to 85 degrees. (#103)
- Fixed an issue where quick zoom did not work at higher zoom levels. Also made the duration argument of the setCamera methods non-optional with default of 0. (#109)
- GestureManager.delegate is now weak (#134)
- Using heuristic to provide pan drift when the map is pitched (#120)
- Rely on consumer provided view models directly to customize location pucks (#86)
- Update Mapbox Common for iOS to v10.0.0-beta.9.1 and MapboxCoreMaps to v10.0.0-beta.14.1. (#89)
- Update to Turf 2.0.0-alpha.2 (#93)
- Expose
presentsWithTransaction
property to better synchronize UIKit elements with theMapView
. (#94) - Add MapEvents.styleFullyLoaded. (#90)
- Refactor Annotation "properties" (#70)
- Fix Inconsistent Camera Heading (#68)
- Fix issue where updates to ornament options were not honored (#84)
- Dictionaries passed to expressions are now sorted by default (#81)
- Fixed: Pan drift did not work correctly when bearing was non-zero. (#99)
- Fix issue where toggling LocationOptions.showsUserLocation resulted in options not being updated (#101)
- Pan drift for pitched maps will be disabled. A solution for smooth drifting is being worked on. (#100)
V10 is the latest version of the Mapbox Maps SDK for iOS. v10 brings substantial performance improvements, new features like 3D terrain and a more powerful camera, modern technical foundations, and a better developer experience.
To get started with v10, please refer to our migration guide.
Please visit our issues to see open bugs, enhancements, or features requests.