Skip to content

Commit 776f68b

Browse files
authoredJul 9, 2024··
Expose LineJoin.NONE (#613)
* Bump Maps SDK to 11.5.0 * Expose LineJoin.NONE * Replace plugin references with SDK. (#614) * Bump version to 2.1.0 (#615) * Replace plugin references with SDK. * Bump version to 2.1.0 * Update changelog
1 parent e99cca7 commit 776f68b

15 files changed

+68
-25
lines changed
 

‎CHANGELOG.md

+34-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,39 @@
1-
### main
1+
### 2.1.0
22

3-
* Bump Maps SDK to 11.5.0.
3+
* Add ModelLayer API.
4+
* Support for offline map, allowing users to download and store map data on their devices for use in environments with limited or no internet connectivity.
5+
* Layer expressions support. Specify expressions when constructing a layer with all new expression support for layers.
6+
*Before:*
7+
```dart
8+
mapboxMap.style.setStyleLayerProperty("layer", "line-gradient",
9+
'["interpolate",["linear"],["line-progress"],0.0,["rgb",255,0,0],0.4,["rgb",0,255,0],1.0,["rgb",0,0,255]]');
410
11+
```
12+
*After:*
13+
```dart
14+
LineLayer(
15+
...
16+
lineGradientExpression: [
17+
"interpolate",
18+
["linear"],
19+
["line-progress"],
20+
0.0,
21+
["rgb", 255, 0, 0],
22+
0.4,
23+
["rgb", 0, 255, 0],
24+
1.0,
25+
["rgb", 0, 0, 255]
26+
],
27+
);
28+
```
29+
* Expose `text-occlusion-opacity`, `icon-occlusion-opacity`, `line-occlusion-opacity`, `model-front-cutoff`, `lineZOffset` as experimental.
30+
* Add min/max/default values for most of the style properties.
31+
* Expose `clusterMinPoints` property for `GeoJSONSource`.
32+
* Expose `SlotLayer` and `RasterParticleLayer`.
33+
* Expose `LocationComponentSettings.slot`.
34+
* Add `@experimental` annotation to relevant APIs.
35+
* Expose `LineJoin.NONE`.
36+
* Bump Maps SDK to 11.5.0 for Android and 11.5.1 for iOS.
537

638
### 2.1.0-rc.1
739

‎LICENSE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
### License
22

3-
Mapbox Maps Flutter Plugin
3+
Mapbox Maps Flutter SDK
44

55
Copyright © 2022 - 2023 Mapbox, Inc. All rights reserved.
66

77
The software and files in this repository (collectively, “Software”) are licensed under the Mapbox TOS for use only with the relevant Mapbox product(s) listed at www.mapbox.com/pricing. This license allows developers with a current active Mapbox account to use and modify the authorized portions of the Software as needed for use only with the relevant Mapbox product(s) through their Mapbox account in accordance with the Mapbox TOS. This license terminates automatically if a developer no longer has a Mapbox account in good standing or breaches the Mapbox TOS. For the license terms, please see the Mapbox TOS at https://www.mapbox.com/legal/tos/ which incorporates the Mapbox Product Terms at www.mapbox.com/legal/service-terms. If this Software is a SDK, modifications that change or interfere with marked portions of the code related to billing, accounting, or data collection are not authorized and the SDK sends limited de-identified location and usage data which is used in accordance with the Mapbox TOS. [Updated 2023-01]
88

9-
## Additional Mapbox Maps Flutter Plugin licenses
9+
## Additional Mapbox Maps Flutter SDK licenses
1010

1111
[enum_to_string](https://pub.dev/packages/enum_to_string).
1212

‎README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Mapbox Maps SDK Flutter Plugin
1+
# Mapbox Maps SDK Flutter SDK
22

3-
The Mapbox Maps SDK Flutter Plugin is an officially developed solution from Mapbox that enables use of our latest Maps SDK product (v11.5.0). The plugin allows developers to embed highly customized maps using a Flutter widget on Android and iOS.
3+
The Mapbox Maps SDK Flutter SDK is an officially developed solution from Mapbox that enables use of our latest Maps SDK product (v11.5.0). The SDK allows developers to embed highly customized maps using a Flutter widget on Android and iOS.
44

55
Web and desktop are not supported.
66

@@ -44,7 +44,7 @@ Contributions welcome!
4444

4545
## Requirements
4646

47-
The Maps Flutter Plugin is compatible with applications:
47+
The Maps Flutter SDK is compatible with applications:
4848

4949
- Deployed on iOS 12 or higher
5050
- Built using the Android SDK 21 or higher
@@ -53,7 +53,7 @@ The Maps Flutter Plugin is compatible with applications:
5353
## Installation
5454

5555
### Configure credentials
56-
To run the Maps Flutter Plugin you will need to configure the Mapbox Access Tokens.
56+
To run the Maps Flutter SDK you will need to configure the Mapbox Access Tokens.
5757
Read more about access tokens and public/secret scopes at the platform [Android](https://docs.mapbox.com/android/maps/guides/install/#configure-credentials) or [iOS](https://docs.mapbox.com/ios/maps/guides/install/#configure-credentials) docs.
5858

5959
#### Secret token
@@ -70,7 +70,7 @@ To access platform SDKs you will need to create a secret access token with the `
7070
```
7171

7272
#### Public token
73-
You can set the access token for Mapbox Maps Flutter Plugin(as well as for every Mapbox SDK) via `MapboxOptions`:
73+
You can set the access token for Mapbox Maps Flutter SDK(as well as for every Mapbox SDK) via `MapboxOptions`:
7474
```
7575
MapboxOptions.setAccessToken(ACCESS_TOKEN);
7676
```
@@ -107,15 +107,15 @@ String ACCESS_TOKEN = String.fromEnvironment("ACCESS_TOKEN");
107107
```
108108

109109
### Add the dependency
110-
To use the Maps Flutter Plugin add the git dependency to the pubspec.yaml:
110+
To use the Maps Flutter SDK add the git dependency to the pubspec.yaml:
111111

112112
```
113113
dependencies:
114-
mapbox_maps_flutter: ^2.1.0-rc.1
114+
mapbox_maps_flutter: ^2.1.0
115115
```
116116

117117
### Configure permissions
118-
You will need to grant location permission in order to use the location component of the Maps Flutter Plugin.
118+
You will need to grant location permission in order to use the location component of the Maps Flutter SDK.
119119

120120
You can use an existing library to request location permission, e.g. with [permission_handler](https://pub.dev/packages/permission_handler) `await Permission.locationWhenInUse.request();` will trigger permission request.
121121

@@ -155,7 +155,7 @@ It also allows or add listeners for various events - related to style loading, m
155155
#### MapboxMap controller
156156
The `MapboxMap` controller instance is provided with `MapWidget.onMapCreated` callback.
157157

158-
`MapboxMap` exposes an entry point to the most of the APIs Maps Flutter Plugin provides. It allows to control the map, camera, styles, observe map events,
158+
`MapboxMap` exposes an entry point to the most of the APIs Maps Flutter SDK provides. It allows to control the map, camera, styles, observe map events,
159159
query rendered features, etc.
160160

161161
It's organized similarly to the [Android](https://docs.mapbox.com/android/maps/api/11.5.0/mapbox-maps-android/com.mapbox.maps/-mapbox-map/) and [iOS](https://docs.mapbox.com/ios/maps/api/11.5.0/documentation/mapboxmaps/mapboxmap) counterparts.
@@ -237,7 +237,7 @@ You can find more examples of the AnnotationManagers usage in the sample app : [
237237
## Map styles
238238
Platform docs : [Android](https://docs.mapbox.com/android/maps/guides/styles/), [iOS](https://docs.mapbox.com/ios/maps/guides/styles/).
239239

240-
The Mapbox Maps Flutter Plugin allows full customization of the look of the map used in your application.
240+
The Mapbox Maps Flutter SDK allows full customization of the look of the map used in your application.
241241

242242
### Set a style
243243
You can specify the initial style uri at `MapWidget.styleUri`, or load it at runtime using `MapboxMap.loadStyleURI` / `MapboxMap.loadStyleJson` :
@@ -276,7 +276,7 @@ To apply an expression to interpolate gradient color to a line layer:
276276

277277
## Camera and animations
278278
Platform docs : [Android](https://docs.mapbox.com/android/maps/guides/camera-and-animation/), [iOS](https://docs.mapbox.com/ios/maps/guides/camera-and-animation/).
279-
The camera is the user's viewpoint above the map. The Maps Flutter Plugin provides you with options to set and adjust the camera position, listen for camera changes, get the camera position, and restrict the camera position to set bounds.
279+
The camera is the user's viewpoint above the map. The Maps Flutter SDK provides you with options to set and adjust the camera position, listen for camera changes, get the camera position, and restrict the camera position to set bounds.
280280

281281
### Camera position
282282
You can set the starting camera position using `MapWidget.cameraOptions` :

‎android/src/main/kotlin/com/mapbox/maps/mapbox_maps/annotation/PolylineAnnotationEnumsExtensions.kt

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ fun LineJoin.toLineJoin(): com.mapbox.maps.extension.style.layers.properties.gen
1717
LineJoin.BEVEL -> com.mapbox.maps.extension.style.layers.properties.generated.LineJoin.BEVEL
1818
LineJoin.ROUND -> com.mapbox.maps.extension.style.layers.properties.generated.LineJoin.ROUND
1919
LineJoin.MITER -> com.mapbox.maps.extension.style.layers.properties.generated.LineJoin.MITER
20+
LineJoin.NONE -> com.mapbox.maps.extension.style.layers.properties.generated.LineJoin.NONE
2021
else -> throw(RuntimeException("Unsupported LineJoin: $this"))
2122
}
2223
}
@@ -43,6 +44,7 @@ fun com.mapbox.maps.extension.style.layers.properties.generated.LineJoin.toFLTLi
4344
com.mapbox.maps.extension.style.layers.properties.generated.LineJoin.BEVEL -> LineJoin.BEVEL
4445
com.mapbox.maps.extension.style.layers.properties.generated.LineJoin.ROUND -> LineJoin.ROUND
4546
com.mapbox.maps.extension.style.layers.properties.generated.LineJoin.MITER -> LineJoin.MITER
47+
com.mapbox.maps.extension.style.layers.properties.generated.LineJoin.NONE -> LineJoin.NONE
4648
else -> throw(RuntimeException("Unsupported LineJoin: $this"))
4749
}
4850
}

‎android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/PolylineAnnotationMessenger.kt

+3-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ enum class LineJoin(val raw: Int) {
6666
/** A join with a rounded end which is drawn beyond the endpoint of the line at a radius of one-half of the line's width and centered on the endpoint of the line. */
6767
ROUND(1),
6868
/** A join with a sharp, angled corner which is drawn with the outer sides beyond the endpoint of the path until they meet. */
69-
MITER(2);
69+
MITER(2),
70+
/** Line segments are not joined together, each one creates a separate line. Useful in combination with line-pattern. Line-cap property is not respected. Can't be used with data-driven styling. */
71+
NONE(3);
7072

7173
companion object {
7274
fun ofRaw(raw: Int): LineJoin? {

‎example/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# mapbox_maps_example
22

3-
Demonstrates how to use the mapbox_maps plugin.
3+
Demonstrates how to use the Mapbox Maps Flutter SDK.
44

55
## Getting Started
66

‎example/ios/Podfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PODS:
22
- Flutter (1.0.0)
33
- integration_test (0.0.1):
44
- Flutter
5-
- mapbox_maps_flutter (2.1.0-rc.1):
5+
- mapbox_maps_flutter (2.1.0):
66
- Flutter
77
- MapboxMaps (~> 11.5.1)
88
- Turf (= 2.8.0)
@@ -49,7 +49,7 @@ EXTERNAL SOURCES:
4949
SPEC CHECKSUMS:
5050
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
5151
integration_test: ce0a3ffa1de96d1a89ca0ac26fca7ea18a749ef4
52-
mapbox_maps_flutter: 07bd5180ffcd126dc5b44556654a14475ade81d2
52+
mapbox_maps_flutter: c7e9ddad4b3e7e68397fc0f8643ff408913dc44f
5353
MapboxCommon: c69a04a1accd77650372c96d8978a15ed1d95186
5454
MapboxCoreMaps: 9d8833b738b94d63ee842722641e8cfdc1fa1191
5555
MapboxMaps: 24a52620178b5390373489c083d4a3acd319c1d3

‎example/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ packages:
192192
path: ".."
193193
relative: true
194194
source: path
195-
version: "2.1.0-rc.1"
195+
version: "2.1.0"
196196
matcher:
197197
dependency: transitive
198198
description:

‎example/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: mapbox_maps_example
2-
description: Demonstrates how to use the mapbox_maps_flutter plugin.
2+
description: Demonstrates how to use the Mapbox Maps Flutter SDK.
33
version: "1.0.0-beta.1"
44

55
# The following line prevents the package from being accidentally published to

‎ios/Classes/EnumsMapping.swift

+2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ extension MapboxMaps.LineJoin {
5050
case .bEVEL: self = .bevel
5151
case .rOUND: self = .round
5252
case .mITER: self = .miter
53+
case .nONE: self = .none
5354
}
5455
}
5556

@@ -58,6 +59,7 @@ extension MapboxMaps.LineJoin {
5859
case .bevel: return .bEVEL
5960
case .round: return .rOUND
6061
case .miter: return .mITER
62+
case .none: return .nONE
6163
default: return nil
6264
}
6365
}

‎ios/Classes/Generated/PolylineAnnotationMessenger.swift

+2
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ enum LineJoin: Int {
6464
case rOUND = 1
6565
/// A join with a sharp, angled corner which is drawn with the outer sides beyond the endpoint of the path until they meet.
6666
case mITER = 2
67+
/// Line segments are not joined together, each one creates a separate line. Useful in combination with line-pattern. Line-cap property is not respected. Can't be used with data-driven styling.
68+
case nONE = 3
6769
}
6870

6971
/// Controls the frame of reference for `line-translate`.

‎ios/mapbox_maps_flutter.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'mapbox_maps_flutter'
7-
s.version = '2.1.0-rc.1'
7+
s.version = '2.1.0'
88

99
s.summary = 'Mapbox Maps SDK Flutter Plugin.'
1010
s.description = 'An officially developed solution from Mapbox that enables use of our latest Maps SDK product.'

‎lib/src/map_widget.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ class _MapWidgetState extends State<MapWidget> {
187187
'textureView': widget.textureView,
188188
'styleUri': widget.styleUri,
189189
'channelSuffix': _suffix,
190-
'mapboxPluginVersion': '2.1.0-rc.1',
190+
'mapboxPluginVersion': '2.1.0',
191191
'eventTypes': _events.eventTypes.map((e) => e.index).toList(),
192192
};
193193

‎lib/src/pigeons/polyline_annotation_messenger.dart

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: mapbox_maps_flutter
2-
description: A Flutter plugin for integrating Mapbox Maps SDK v11 in Android/iOS application.
3-
version: 2.1.0-rc.1
2+
description: Interactive, thoroughly customizable maps powered by Mapbox Maps mobile SDKs.
3+
version: 2.1.0
44
homepage: https://github.com/mapbox/mapbox-maps-flutter
55

66
environment:

0 commit comments

Comments
 (0)
Please sign in to comment.