Skip to content

Commit cecc32d

Browse files
temapgithub-actions[bot]
authored andcommitted
Release 0.16.0-beta.1 version update
GitOrigin-RevId: 25f4cdd4de7ff06365059a4356755a684dd115ef
1 parent 0f49400 commit cecc32d

File tree

17 files changed

+20
-157
lines changed

17 files changed

+20
-157
lines changed

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ Mapbox welcomes participation and contributions from everyone.
66

77
* Added support for `LandmarkIcons` featureset in Mapbox Standard Style. The `LandmarkIcons` featureset allows querying and configuring landmark building icons that appear on the map. Access landmark properties including landmarkId, name, type, and localized names through the `StandardLandmarkIconsFeature` class.
88
* Enhanced `MapStyle.standard()` and `MapStyle.standardSatellite()` with new configuration parameters for color customization, landmark icons visibility, point-of-interest styling, road appearance, and administrative boundaries.
9-
* Expose `LineLayer.lineCutoutFadeWidth` to control route line cutout fade width.
10-
119
## 11.15.0 - 11 September, 2025
1210

1311
## 11.15.0-rc.1 - 28 August, 2025

LICENSE.md

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MapboxMaps.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |m|
22

33
m.name = 'MapboxMaps'
4-
m.version = '11.16.0-SNAPSHOT-09-23--04-29.git-0091bc8'
4+
m.version = '11.16.0-beta.1'
55

66
m.summary = 'Vector map solution for iOS with full styling capabilities.'
77
m.description = 'Metal-based vector map solution for iOS with full styling capabilities.'
@@ -19,8 +19,8 @@ Pod::Spec.new do |m|
1919
m.source_files = 'Sources/MapboxMaps/**/*.{swift,h}'
2020
m.resource_bundles = { 'MapboxMapsResources' => ['Sources/MapboxMaps/**/*.{xcassets,strings}', 'Sources/MapboxMaps/MapboxMaps.json', 'Sources/MapboxMaps/PrivacyInfo.xcprivacy'] }
2121

22-
m.dependency 'MapboxCoreMaps', '11.16.0-SNAPSHOT-09-23--04-29.git-0091bc8'
23-
m.dependency 'MapboxCommon', '24.16.0-SNAPSHOT-09-23--04-29.git-0091bc8'
22+
m.dependency 'MapboxCoreMaps', '11.16.0-beta.1'
23+
m.dependency 'MapboxCommon', '24.16.0-beta.1'
2424
m.dependency 'Turf', '4.0.0'
2525

2626
end

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import PackageDescription
55
import Foundation
66

7-
let commonVersion: Version = "24.16.0-SNAPSHOT-09-23--04-29.git-0091bc8"
8-
let coreMapsVersion: Version = "11.16.0-SNAPSHOT-09-23--04-29.git-0091bc8"
7+
let commonVersion: Version = "24.16.0-beta.1"
8+
let coreMapsVersion: Version = "11.16.0-beta.1"
99
let turfVersion: Version = "4.0.0"
1010

1111
let mapboxMapsPath: String? = nil

Sources/Examples/All Examples/Annotations/DynamicViewAnnotationExample.swift

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@ final class DynamicViewAnnotationExample: UIViewController, ExampleProtocol {
6767
self.finish()
6868
}.store(in: &cancelables)
6969

70-
self.view.addSubview(modeButton)
71-
NSLayoutConstraint.activate([
72-
self.view.centerXAnchor.constraint(equalTo: modeButton.centerXAnchor),
73-
self.view.safeAreaLayoutGuide.bottomAnchor.constraint(equalToSystemSpacingBelow: modeButton.bottomAnchor, multiplier: 1)
74-
])
70+
self.toolbarItems = [
71+
UIBarButtonItem(barButtonSystemItem: .flexibleSpace, target: nil, action: nil),
72+
UIBarButtonItem(customView: modeButton),
73+
UIBarButtonItem(barButtonSystemItem: .flexibleSpace, target: nil, action: nil)
74+
]
7575

7676
addParkingAnnotation(
7777
coordinate: CLLocationCoordinate2D(latitude: 37.445, longitude: -122.1704),
@@ -298,8 +298,7 @@ private final class Route {
298298
routeLayer.slot = .middle
299299
// make route lines visible through obstructing 3D buildings and other aboveground features
300300
routeLayer.lineCutoutWidth = .constant(30)
301-
routeLayer.lineCutoutFadeWidth = .constant(0.5)
302-
routeLayer.lineCutoutOpacity = .constant(0)
301+
routeLayer.lineCutoutOpacity = .constant(0.2)
303302
try! mapView.mapboxMap.addLayer(routeLayer)
304303

305304
// Annotation

Sources/MapboxMaps/Annotations/Generated/PolylineAnnotationManager.swift

Lines changed: 0 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Sources/MapboxMaps/Documentation.docc/API Catalogs/Performance.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
- ``MapRecorderOptions-struct``
1212
- ``MapPlayerOptions-struct``
13-
- ``PlaybackFinished``
1413

1514
### Performance recording
1615

Sources/MapboxMaps/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<key>CFBundleVersion</key>
2020
<string>271</string>
2121
<key>MBXBundleVersion</key>
22-
<string>11.16.0-SNAPSHOT-09-23--04-29.git-0091bc8</string>
22+
<string>11.16.0-beta.1</string>
2323
</dict>
2424
</plist>

Sources/MapboxMaps/MapboxMaps.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "11.16.0-SNAPSHOT-09-23--04-29.git-0091bc8"
2+
"version": "11.16.0-beta.1"
33
}

Sources/MapboxMaps/Style/Generated/Layers/LineLayer.swift

Lines changed: 0 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)