Skip to content

Commit 7ee44aa

Browse files
committed
publish : 1.1.0
1 parent 77efa2c commit 7ee44aa

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 1.1.6:
2+
* fix bug in drawMultiRoad #530
3+
* improve customTile where we added the support for full url
4+
* improve lints
15
### 1.0.5:
26
* remove unnecessary internal APIs
37
* fix lastknownLocation in android

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# flutter_osm_plugin
66

7-
![pub](https://img.shields.io/badge/pub-v1.0.5-blue)
7+
![pub](https://img.shields.io/badge/pub-v1.1.0-blue)
88

99

1010
## Platform Support
@@ -50,7 +50,7 @@
5050
Add the following to your `pubspec.yaml` file:
5151

5252
dependencies:
53-
flutter_osm_plugin: ^1.0.5
53+
flutter_osm_plugin: ^1.1.0
5454

5555

5656

@@ -232,6 +232,7 @@ controller = MapController.customLayer(
232232
maxZoomLevel: 19,
233233
urlsServers: [
234234
TileURLs(
235+
//"https://tile.opentopomap.org/{z}/{x}/{y}"
235236
url: "https://tile.opentopomap.org/",
236237
subdomains: [],
237238
)
@@ -245,6 +246,7 @@ controller = MapController.customLayer(
245246
* also,you can use our predefined custom tiles like
246247
* `cyclOSMLayer` constructor for cycling tiles
247248
* `publicTransportationLayer` constructor for transport tiles ,it's public osm server
249+
* we support full server path like `("https://tile.opentopomap.org/{z}/{x}/{y}")`
248250

249251
For more example see our example in `home_example.dart`
250252
<br>

pubspec.yaml

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_osm_plugin
22
description: OpenStreetMap Plugin Native for flutter apps (Andoird/iOS/web)
3-
version: 1.0.5
3+
version: 1.1.0
44

55

66
homepage: https://github.com/liodali/osm_flutter
@@ -15,12 +15,15 @@ dependencies:
1515
plugin_platform_interface: ^2.1.2
1616
flutter_plugin_android_lifecycle: ^2.0.17
1717
permission_handler: ^11.0.1
18-
url_launcher: ^6.2.1
18+
url_launcher: ^6.3.0
1919
dio: ^5.3.3
2020
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/
2325
dev_dependencies:
26+
flutter_lints: ^4.0.0
2427
flutter_test:
2528
sdk: flutter
2629

0 commit comments

Comments
 (0)