File tree 3 files changed +15
-6
lines changed
3 files changed +15
-6
lines changed Original file line number Diff line number Diff line change
1
+ ### 1.1.6:
2
+ * fix bug in drawMultiRoad #530
3
+ * improve customTile where we added the support for full url
4
+ * improve lints
1
5
### 1.0.5:
2
6
* remove unnecessary internal APIs
3
7
* fix lastknownLocation in android
Original file line number Diff line number Diff line change 4
4
5
5
# flutter_osm_plugin
6
6
7
- ![ pub] ( https://img.shields.io/badge/pub-v1.0.5 -blue )
7
+ ![ pub] ( https://img.shields.io/badge/pub-v1.1.0 -blue )
8
8
9
9
10
10
## Platform Support
50
50
Add the following to your ` pubspec.yaml ` file:
51
51
52
52
dependencies:
53
- flutter_osm_plugin: ^1.0.5
53
+ flutter_osm_plugin: ^1.1.0
54
54
55
55
56
56
@@ -232,6 +232,7 @@ controller = MapController.customLayer(
232
232
maxZoomLevel: 19,
233
233
urlsServers: [
234
234
TileURLs(
235
+ //"https://tile.opentopomap.org/{z}/{x}/{y}"
235
236
url: "https://tile.opentopomap.org/",
236
237
subdomains: [],
237
238
)
@@ -245,6 +246,7 @@ controller = MapController.customLayer(
245
246
* also,you can use our predefined custom tiles like
246
247
* ` cyclOSMLayer ` constructor for cycling tiles
247
248
* ` publicTransportationLayer ` constructor for transport tiles ,it's public osm server
249
+ * we support full server path like ` ("https://tile.opentopomap.org/{z}/{x}/{y}") `
248
250
249
251
For more example see our example in ` home_example.dart `
250
252
<br >
Original file line number Diff line number Diff line change 1
1
name : flutter_osm_plugin
2
2
description : OpenStreetMap Plugin Native for flutter apps (Andoird/iOS/web)
3
- version : 1.0.5
3
+ version : 1.1.0
4
4
5
5
6
6
homepage : https://github.com/liodali/osm_flutter
@@ -15,12 +15,15 @@ dependencies:
15
15
plugin_platform_interface : ^2.1.2
16
16
flutter_plugin_android_lifecycle : ^2.0.17
17
17
permission_handler : ^11.0.1
18
- url_launcher : ^6.2.1
18
+ url_launcher : ^6.3.0
19
19
dio : ^5.3.3
20
20
uuid : ^4.2.1
21
- flutter_osm_interface : ^1.0.2
22
- flutter_osm_web : ^1.0.3
21
+ flutter_osm_interface : # ^1.0.2
22
+ path : ./flutter_osm_interface/
23
+ flutter_osm_web : # ^1.0.3
24
+ path : ./flutter_osm_web/
23
25
dev_dependencies :
26
+ flutter_lints : ^4.0.0
24
27
flutter_test :
25
28
sdk : flutter
26
29
You can’t perform that action at this time.
0 commit comments