Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgraded mapbox gl js to 2.7.0 - readme updates #889

Merged
merged 2 commits into from
Feb 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,15 @@ flutter run -d {device_id} --dart-define=ACCESS_TOKEN=ADD_YOUR_TOKEN_HERE`
| Gesture | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| User Location | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| Style DSL | :x: | :x: | :x: |
| Raster Layer | :x: | :x: | :x: |
| Raster Layer | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| Symbol Layer | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| Circle Layer | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| Line Layer | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| Fill Layer | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| Vector Source | :x: | :x: | :x: |
| Raster Source | :x: | :x: | :x: | | | | |
| Hillshade Layer | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| Heatmap Layer | :x: | :x: | :x: |
| Vector Source | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| Raster Source | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| GeoJson Source | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| Image Source | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| Expressions | :white_check_mark: | :white_check_mark: | :white_check_mark: |
Expand Down
2 changes: 1 addition & 1 deletion example/web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<link rel="shortcut icon" type="image/png" href="/favicon.png"/>

<!-- Mapbox -->
<script src='https://api.mapbox.com/mapbox-gl-js/v2.6.1/mapbox-gl.js'></script>
<script src='https://api.mapbox.com/mapbox-gl-js/v2.7.0/mapbox-gl.js'></script>

<title>example</title>
<link rel="manifest" href="/manifest.json">
Expand Down
2 changes: 1 addition & 1 deletion mapbox_gl_web/lib/src/mapbox_web_gl_platform.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
part of mapbox_gl_web;

const _mapboxGlCssUrl =
'https://api.mapbox.com/mapbox-gl-js/v2.6.1/mapbox-gl.css';
'https://api.mapbox.com/mapbox-gl-js/v2.7.0/mapbox-gl.css';

class MapboxWebGlPlatform extends MapboxGlPlatform
implements MapboxMapOptionsSink {
Expand Down