You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+34-2
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,39 @@
1
-
### main
1
+
### 2.1.0
2
2
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.
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]
Copy file name to clipboardexpand all lines: README.md
+11-11
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# Mapbox Maps SDK Flutter Plugin
1
+
# Mapbox Maps SDK Flutter SDK
2
2
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.
4
4
5
5
Web and desktop are not supported.
6
6
@@ -44,7 +44,7 @@ Contributions welcome!
44
44
45
45
## Requirements
46
46
47
-
The Maps Flutter Plugin is compatible with applications:
47
+
The Maps Flutter SDK is compatible with applications:
48
48
49
49
- Deployed on iOS 12 or higher
50
50
- Built using the Android SDK 21 or higher
@@ -53,7 +53,7 @@ The Maps Flutter Plugin is compatible with applications:
53
53
## Installation
54
54
55
55
### 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.
57
57
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.
58
58
59
59
#### Secret token
@@ -70,7 +70,7 @@ To access platform SDKs you will need to create a secret access token with the `
70
70
```
71
71
72
72
#### 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`:
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:
111
111
112
112
```
113
113
dependencies:
114
-
mapbox_maps_flutter: ^2.1.0-rc.1
114
+
mapbox_maps_flutter: ^2.1.0
115
115
```
116
116
117
117
### 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.
119
119
120
120
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.
121
121
@@ -155,7 +155,7 @@ It also allows or add listeners for various events - related to style loading, m
155
155
#### MapboxMap controller
156
156
The `MapboxMap` controller instance is provided with `MapWidget.onMapCreated` callback.
157
157
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,
159
159
query rendered features, etc.
160
160
161
161
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 : [
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.
280
280
281
281
### Camera position
282
282
You can set the starting camera position using `MapWidget.cameraOptions` :
Copy file name to clipboardexpand all lines: android/src/main/kotlin/com/mapbox/maps/mapbox_maps/pigeons/PolylineAnnotationMessenger.kt
+3-1
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,9 @@ enum class LineJoin(val raw: Int) {
66
66
/** 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. */
67
67
ROUND(1),
68
68
/** 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. */
Copy file name to clipboardexpand all lines: ios/Classes/Generated/PolylineAnnotationMessenger.swift
+2
Original file line number
Diff line number
Diff line change
@@ -64,6 +64,8 @@ enum LineJoin: Int {
64
64
case rOUND =1
65
65
/// A join with a sharp, angled corner which is drawn with the outer sides beyond the endpoint of the path until they meet.
66
66
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
67
69
}
68
70
69
71
/// Controls the frame of reference for `line-translate`.
0 commit comments