Skip to content

Commit cb2aa08

Browse files
authored
Merge branch 'master' into fix/incorrect-tile-keys
2 parents 8e435bf + cde93c8 commit cb2aa08

File tree

5 files changed

+19
-23
lines changed

5 files changed

+19
-23
lines changed

.github/workflows/branch.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
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

@@ -94,7 +94,7 @@ jobs:
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

.github/workflows/issue-comment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
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: |
@@ -42,7 +42,7 @@ jobs:
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: |

.github/workflows/master.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
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

@@ -53,7 +53,7 @@ jobs:
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
@@ -82,7 +82,7 @@ jobs:
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

lib/src/layer/tile_layer/tile_layer.dart

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,11 @@ part 'retina_mode.dart';
2121
part 'tile_error_evict_callback.dart';
2222
part '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
3130
class TileLayer extends StatefulWidget {
3231
/// The URL template is a string that contains placeholders, which, when filled

lib/src/map/controller/map_controller.dart

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,15 @@ import 'package:flutter_map/src/map/inherited_model.dart';
66
import 'package:flutter_map/src/misc/move_and_rotate_result.dart';
77
import '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.
1413
abstract 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;

0 commit comments

Comments
 (0)