Skip to content

Commit 37333e8

Browse files
Kylmakallegithub-actions[bot]
authored andcommitted
Bump versions to -beta.1
GitOrigin-RevId: 906fc3136c56d67cffecad7827df989ff40ac7a6
1 parent 6181d2e commit 37333e8

27 files changed

+73
-687
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
.DS_Store
22
/build
33
.build
4-
.create-xcframework
5-
artifacts
64
/Packages
75
xcuserdata
86
node_modules

CHANGELOG.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,9 @@ Mapbox welcomes participation and contributions from everyone.
77
### ⚠️ Breaking changes
88
* Remove line-cutout-width and change line-cutout-opacity default to 1.0
99

10-
### Features ✨ and improvements 🏁
1110
* Add Standard Style color and 3D configuration options: `colorBuildings`, `colorCommercial`, `colorEducation`, `colorIndustrial`, `colorLand`, `colorMedical`, `show3dBuildings`, `show3dFacades`, `show3dLandmarks`, and `show3dTrees`.
12-
* Add `shadowDrawBeforeLayer` property to directional light to allow specifying the position in the layer stack for drawing shadows on the ground.
13-
14-
## 11.17.1 - 11 December, 2025
1511

12+
## 11.17.0
1613
## 11.17.0 - 04 December, 2025
1714

1815
## 11.17.0-rc.3 - 28 November, 2025

LICENSE.md

Lines changed: 2 additions & 15 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.18.0-SNAPSHOT-12-15--04-32.git-68558c6'
4+
m.version = '11.18.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.18.0-SNAPSHOT-12-15--04-32.git-68558c6'
23-
m.dependency 'MapboxCommon', '24.18.0-SNAPSHOT-12-15--04-32.git-68558c6'
22+
m.dependency 'MapboxCoreMaps', '11.18.0-beta.1'
23+
m.dependency 'MapboxCommon', '24.18.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.18.0-SNAPSHOT-12-15--04-32.git-68558c6"
8-
let coreMapsVersion: Version = "11.18.0-SNAPSHOT-12-15--04-32.git-68558c6"
7+
let commonVersion: Version = "24.18.0-beta.1"
8+
let coreMapsVersion: Version = "11.18.0-beta.1"
99
let turfVersion: Version = "4.0.0"
1010

1111
let mapboxMapsPath: String? = nil

Sources/Examples/All Examples/Lab/IndoorExample.swift

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ final class IndoorExample: UIViewController, ExampleProtocol {
66
private var mapView: MapView!
77
// Set indoor style. Do not commit staging style URIs.
88
private var styleURI: String?
9-
private var cancellables = Set<AnyCancelable>()
109

1110
override func viewDidLoad() {
1211
super.viewDidLoad()
@@ -24,10 +23,10 @@ final class IndoorExample: UIViewController, ExampleProtocol {
2423
mapView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
2524
mapView.ornaments.options.scaleBar.visibility = .visible
2625
// EXPERIMENTAL: Not intended for usage in current stata. Subject to change or deletion.
27-
mapView.mapboxMap.indoor.selectFloor(selectedFloorId: "b937e2aa3423453ab0552d9f")
28-
mapView.mapboxMap.indoor.onIndoorUpdated.sink { indoorState in
29-
print(indoorState)
30-
}.store(in: &cancellables)
26+
// mapView.mapboxMap.indoor.selectFloor(selectedFloorId: "b937e2aa3423453ab0552d9f")
27+
// mapView.mapboxMap.indoor.onIndoorUpdate { indoorState in
28+
// print(indoorState)
29+
// }
3130

3231
view.addSubview(mapView)
3332
}

Sources/MapboxMaps/Foundation/CoreAliases.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,3 @@ typealias CoreFeaturesetDescriptor = MapboxCoreMaps_Private.FeaturesetDescriptor
4949
typealias CoreColorTheme = MapboxCoreMaps_Private.ColorTheme
5050
typealias CoreAsyncOperationResultCallback = MapboxCoreMaps_Private.AsyncOperationResultCallback
5151
typealias UIEdgeInsetsCodable = MapboxCoreMaps.UIEdgeInsetsCodable
52-
typealias CoreIndoorManager = MapboxCoreMaps_Private.__IndoorManager

Sources/MapboxMaps/Foundation/MapView.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,8 +496,7 @@ open class MapView: UIView, SizeTrackingLayerDelegate {
496496
logoView: LogoView(logoSize: .regular()),
497497
scaleBarView: MapboxScaleBarOrnamentView(),
498498
compassView: MapboxCompassOrnamentView(),
499-
attributionButton: InfoButtonOrnament(),
500-
indoorSelectorView: IndoorSelectorView(model: IndoorSelectorModel(indoorManager: mapboxMap.indoor)))
499+
attributionButton: InfoButtonOrnament())
501500

502501
// Initialize/Configure location source and location manager
503502
location = LocationManager(

Sources/MapboxMaps/Foundation/MapboxMap.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,8 @@ public final class MapboxMap: StyleManager {
213213
@_spi(Internal)
214214
public lazy var map: MapboxCoreMaps.Map = .Marshaller.toSwift(__map)
215215

216-
@_spi(Experimental)
217-
public lazy var indoor: IndoorManager = .Marshaller.toSwift(__map.getIndoorManager())
216+
// @_spi(Experimental)
217+
// public lazy var indoor: IndoorManager = .Marshaller.toSwift(__map.getIndoorManager())
218218

219219
deinit {
220220
__map.destroyRenderer()

Sources/MapboxMaps/Gestures/GestureHandlers/DoubleTapToZoomInGestureHandler.swift

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ internal final class DoubleTapToZoomInGestureHandler: GestureHandler, FocusableG
1616
self.mapboxMap = mapboxMap
1717
self.cameraAnimationsManager = cameraAnimationsManager
1818
super.init(gestureRecognizer: gestureRecognizer)
19-
gestureRecognizer.delegate = self
2019
gestureRecognizer.addTarget(self, action: #selector(handleGesture(_:)))
2120
}
2221

@@ -39,14 +38,3 @@ internal final class DoubleTapToZoomInGestureHandler: GestureHandler, FocusableG
3938
}
4039
}
4140
}
42-
43-
extension DoubleTapToZoomInGestureHandler: UIGestureRecognizerDelegate {
44-
func gestureRecognizer(
45-
_ gestureRecognizer: UIGestureRecognizer,
46-
shouldReceive touch: UITouch
47-
) -> Bool {
48-
/// Only handle touches that targeting the map, but any of its subviews (including view annotations and ornaments)
49-
assert(self.gestureRecognizer == gestureRecognizer)
50-
return gestureRecognizer.attachedToSameView(as: touch)
51-
}
52-
}

0 commit comments

Comments
 (0)