Skip to content

Commit ba65369

Browse files
authored
Merge branch 'main' into main
2 parents 06743a7 + e7adbf9 commit ba65369

File tree

138 files changed

+227
-149
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+227
-149
lines changed

.github/workflows/flutter_beta.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
defaults:
1515
run:
16-
working-directory: example
16+
working-directory: maplibre_gl_example
1717
steps:
1818
- uses: actions/checkout@v4
1919
- uses: actions/setup-java@v4
@@ -32,14 +32,14 @@ jobs:
3232
uses: actions/upload-artifact@v4
3333
with:
3434
name: maplibre-flutter-demo.apk
35-
path: example/build/app/outputs/flutter-apk/app-release.apk
35+
path: maplibre_gl_example/build/app/outputs/flutter-apk/app-release.apk
3636

3737
build-iOS:
3838
name: Build iOS package
3939
runs-on: macos-latest
4040
defaults:
4141
run:
42-
working-directory: example
42+
working-directory: maplibre_gl_example
4343
steps:
4444
- uses: actions/checkout@v4
4545
- uses: subosito/flutter-action@v2
@@ -49,21 +49,21 @@ jobs:
4949
- uses: bluefireteam/melos-action@v3
5050
- uses: maxim-lobanov/setup-cocoapods@v1
5151
with:
52-
podfile-path: example/ios/Podfile.lock
52+
podfile-path: maplibre_gl_example/ios/Podfile.lock
5353
- name: Build iOS package
5454
run: flutter build ios --simulator
5555
- name: Upload Runner.app as artifact
5656
uses: actions/upload-artifact@v4
5757
with:
5858
name: maplibre-flutter-demo.app
59-
path: example/build/ios/iphonesimulator
59+
path: maplibre_gl_example/build/ios/iphonesimulator
6060

6161
build-web:
6262
name: "Build web"
6363
runs-on: ubuntu-latest
6464
defaults:
6565
run:
66-
working-directory: example
66+
working-directory: maplibre_gl_example
6767
steps:
6868
- uses: actions/checkout@v4
6969
- uses: subosito/flutter-action@v2

.github/workflows/flutter_ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ubuntu-latest
3838
defaults:
3939
run:
40-
working-directory: example
40+
working-directory: maplibre_gl_example
4141
strategy:
4242
fail-fast: false
4343
matrix:
@@ -61,14 +61,14 @@ jobs:
6161
if: ${{ matrix.sdk == '' }}
6262
with:
6363
name: maplibre-flutter-demo.apk
64-
path: example/build/app/outputs/flutter-apk/app-release.apk
64+
path: maplibre_gl_example/build/app/outputs/flutter-apk/app-release.apk
6565

6666
build-iOS:
6767
name: Build iOS package
6868
runs-on: macos-latest
6969
defaults:
7070
run:
71-
working-directory: example
71+
working-directory: maplibre_gl_example
7272
strategy:
7373
fail-fast: false
7474
matrix:
@@ -82,22 +82,22 @@ jobs:
8282
- uses: bluefireteam/melos-action@v3
8383
- uses: maxim-lobanov/setup-cocoapods@v1
8484
with:
85-
podfile-path: example/ios/Podfile.lock
85+
podfile-path: maplibre_gl_example/ios/Podfile.lock
8686
- name: Build iOS package
8787
run: flutter build ios --simulator
8888
- name: Upload Runner.app as artifact
8989
if: ${{ matrix.sdk == '' }}
9090
uses: actions/upload-artifact@v4
9191
with:
9292
name: maplibre-flutter-demo.app
93-
path: example/build/ios/iphonesimulator
93+
path: maplibre_gl_example/build/ios/iphonesimulator
9494

9595
build-web:
9696
name: "Build web"
9797
runs-on: ubuntu-latest
9898
defaults:
9999
run:
100-
working-directory: example
100+
working-directory: maplibre_gl_example
101101
strategy:
102102
fail-fast: false
103103
matrix:

example/lib/full_map.dart

Lines changed: 0 additions & 61 deletions
This file was deleted.

maplibre_gl/CHANGELOG.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,26 @@
1-
## UNRELEASED
1+
## [0.21.0](https://github.com/maplibre/flutter-maplibre-gl/compare/v0.20.0...v0.21.0)
22

3+
### Added
4+
5+
* added the `clearAmbientCache` functionality (#502).
6+
* added the `contains` functionality to `LatLngBounds` (#498).
7+
* added the possibility to set `LocationEnginePlatforms` properties for better device tracking on Android (#510).
8+
9+
### Changed
10+
11+
* BREAKING: `onFeatureTap` returns the `layerId` (#475).
12+
* Changed iOS package name to support Swift Package Manager (#467).
313
* Move the `maplibre_gl` package to a subdirectory of the repository and add
4-
melos to orchestrate all packages.
14+
melos to orchestrate all packages (#453).
15+
16+
### Removed
17+
18+
* Removed support for Dart SDKs older than `3.4.0` (`Flutter SDK 3.22.0`) (#542)
19+
20+
### Fixed
21+
22+
* Fixed exception when destroying mapView on Android by reordering cleanup (#459).
23+
524

625
## 0.20.0
726

@@ -33,6 +52,7 @@ If you notice any build errors, please make sure to run `flutter clean`.
3352
* Added support for Swift Package Manager usage on iOS.
3453
* Migrated main iOS plugin class from Objective-C to Swift.
3554
* Renamed iOS plugin classes from `Mapbox` to `MapLibre`.
55+
* Removed support for Kotlin versions older than `1.9.0` (#460).
3656

3757
**Full Changelog**:
3858
[v0.19.0+2...v0.20.0](https://github.com/maplibre/flutter-maplibre-gl/compare/v0.19.0+2...v0.20.0)

0 commit comments

Comments
 (0)