File tree Expand file tree Collapse file tree 5 files changed +19
-23
lines changed
Expand file tree Collapse file tree 5 files changed +19
-23
lines changed Original file line number Diff line number Diff line change 6262 run : flutter test -r expanded --coverage
6363 - name : Run Codecov
6464 if : ${{ matrix.sdk == '' }}
65- uses : codecov/codecov-action@v5
65+ uses : codecov/codecov-action@v6
6666 env :
6767 CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
6868
9494 run : flutter build apk --dart-define=COMMIT_SHA=${{ github.sha }} --dart-define=flutter.flutter_map.unblockOSM="${{ secrets.UNBLOCK_OSM }}"
9595 - name : Archive Artifact
9696 if : ${{ matrix.sdk == '' }}
97- uses : actions/upload-artifact@v6
97+ uses : actions/upload-artifact@v7
9898 with :
9999 name : apk-build
100100 path : example/build/app/outputs/apk/release
@@ -129,7 +129,7 @@ jobs:
129129 working-directory : .
130130 - name : Archive Artifact
131131 if : ${{ matrix.sdk == '' }}
132- uses : actions/upload-artifact@v6
132+ uses : actions/upload-artifact@v7
133133 with :
134134 name : exe-build
135135 path : windowsTemp/WindowsApplication.exe
@@ -156,7 +156,7 @@ jobs:
156156 - name : Build Web Application
157157 run : flutter build web --wasm --dart-define=COMMIT_SHA=${{ github.sha }} --dart-define=flutter.flutter_map.unblockOSM="${{ secrets.UNBLOCK_OSM }}"
158158 - name : Archive Artifact
159- uses : actions/upload-artifact@v6
159+ uses : actions/upload-artifact@v7
160160 if : ${{ matrix.sdk == '' }}
161161 with :
162162 name : web-build
Original file line number Diff line number Diff line change 1212 steps :
1313 - name : Check labels of issue
1414 id : check_labels
15- uses : actions/github-script@v8
15+ uses : actions/github-script@v9
1616 with :
1717 github-token : ${{ secrets.GITHUB_TOKEN }}
1818 script : |
4242 # action removes the label when the automatic reminder message gets sent.
4343 - name : Remove `waiting for user response` label if exists
4444 if : steps.check_labels.outputs.result == 'true'
45- uses : actions/github-script@v8
45+ uses : actions/github-script@v9
4646 with :
4747 github-token : ${{ secrets.GITHUB_TOKEN }}
4848 script : |
Original file line number Diff line number Diff line change 2424 - name : Run Tests with Coverage
2525 run : flutter test -r expanded --coverage
2626 - name : Run Codecov
27- uses : codecov/codecov-action@v5
27+ uses : codecov/codecov-action@v6
2828 env :
2929 CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
3030
5353 - name : Build Android Application
5454 run : flutter build apk --dart-define=COMMIT_SHA=${{ github.sha }} --dart-define=flutter.flutter_map.unblockOSM="${{ secrets.UNBLOCK_OSM }}"
5555 - name : Archive Artifact
56- uses : actions/upload-artifact@v6
56+ uses : actions/upload-artifact@v7
5757 with :
5858 name : apk-build
5959 path : example/build/app/outputs/apk/release
8282 run : iscc "windowsApplicationInstallerSetup.iss"
8383 working-directory : .
8484 - name : Archive Artifact
85- uses : actions/upload-artifact@v6
85+ uses : actions/upload-artifact@v7
8686 with :
8787 name : exe-build
8888 path : windowsTemp/WindowsApplication.exe
@@ -107,7 +107,7 @@ jobs:
107107 - name : Build Web Application
108108 run : flutter build web --wasm --dart-define=COMMIT_SHA=${{ github.sha }} --dart-define=flutter.flutter_map.unblockOSM="${{ secrets.UNBLOCK_OSM }}"
109109 - name : Archive Artifact
110- uses : actions/upload-artifact@v6
110+ uses : actions/upload-artifact@v7
111111 with :
112112 name : web-build
113113 path : example/build/web
Original file line number Diff line number Diff line change @@ -21,12 +21,11 @@ part 'retina_mode.dart';
2121part 'tile_error_evict_callback.dart' ;
2222part 'wms_tile_layer_options.dart' ;
2323
24- /// Describes the needed properties to create a tile-based layer. A tile is an
24+ /// Describes the needed properties to create a raster tile layer. A tile is an
2525/// image bound to a specific geographical position.
2626///
27- /// You should read up about the options by exploring each one, or visiting
28- /// https://docs.fleaflet.dev/usage/layers/tile-layer. Some are important to
29- /// avoid issues.
27+ /// Read the [online documentation] (https://docs.fleaflet.dev/layers/tile-layer)
28+ /// to get started by following the recommended setup.
3029@immutable
3130class TileLayer extends StatefulWidget {
3231 /// The URL template is a string that contains placeholders, which, when filled
Original file line number Diff line number Diff line change @@ -6,18 +6,15 @@ import 'package:flutter_map/src/map/inherited_model.dart';
66import 'package:flutter_map/src/misc/move_and_rotate_result.dart' ;
77import 'package:latlong2/latlong.dart' ;
88
9- /// Controller to programmatically interact with [FlutterMap] , such as
10- /// controlling it and accessing some of its properties.
9+ /// Controller to programmatically interact with a [FlutterMap] .
1110///
12- /// See https://docs.fleaflet.dev/usage/controller#initialisation for information
13- /// on how to set-up and connect a controller to a map widget instance .
11+ /// Read the [online documentation] ( https://docs.fleaflet.dev/usage/programmatic-interaction)
12+ /// to get started .
1413abstract class MapController {
15- /// Controller to programmatically interact with [FlutterMap] , such as
16- /// controlling it and accessing some of its properties.
14+ /// Controller to programmatically interact with a [FlutterMap] .
1715 ///
18- /// See https://docs.fleaflet.dev/usage/controller#initialisation for
19- /// information how to set-up and connect a controller to a map widget
20- /// instance.
16+ /// Read the [online documentation] (https://docs.fleaflet.dev/usage/programmatic-interaction)
17+ /// to get started.
2118 ///
2219 /// Factory constructor redirects to underlying implementation's constructor.
2320 factory MapController () = MapControllerImpl ;
You can’t perform that action at this time.
0 commit comments