Skip to content

Commit

Permalink
publish : 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
liodali committed Jul 7, 2024
1 parent 77efa2c commit 7ee44aa
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 1.1.6:
* fix bug in drawMultiRoad #530
* improve customTile where we added the support for full url
* improve lints
### 1.0.5:
* remove unnecessary internal APIs
* fix lastknownLocation in android
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# flutter_osm_plugin

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


## Platform Support
Expand Down Expand Up @@ -50,7 +50,7 @@
Add the following to your `pubspec.yaml` file:

dependencies:
flutter_osm_plugin: ^1.0.5
flutter_osm_plugin: ^1.1.0



Expand Down Expand Up @@ -232,6 +232,7 @@ controller = MapController.customLayer(
maxZoomLevel: 19,
urlsServers: [
TileURLs(
//"https://tile.opentopomap.org/{z}/{x}/{y}"
url: "https://tile.opentopomap.org/",
subdomains: [],
)
Expand All @@ -245,6 +246,7 @@ controller = MapController.customLayer(
* also,you can use our predefined custom tiles like
* `cyclOSMLayer` constructor for cycling tiles
* `publicTransportationLayer` constructor for transport tiles ,it's public osm server
* we support full server path like `("https://tile.opentopomap.org/{z}/{x}/{y}")`

For more example see our example in `home_example.dart`
<br>
Expand Down
11 changes: 7 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_osm_plugin
description: OpenStreetMap Plugin Native for flutter apps (Andoird/iOS/web)
version: 1.0.5
version: 1.1.0


homepage: https://github.com/liodali/osm_flutter
Expand All @@ -15,12 +15,15 @@ dependencies:
plugin_platform_interface: ^2.1.2
flutter_plugin_android_lifecycle: ^2.0.17
permission_handler: ^11.0.1
url_launcher: ^6.2.1
url_launcher: ^6.3.0
dio: ^5.3.3
uuid: ^4.2.1
flutter_osm_interface: ^1.0.2
flutter_osm_web: ^1.0.3
flutter_osm_interface: #^1.0.2
path: ./flutter_osm_interface/
flutter_osm_web: #^1.0.3
path: ./flutter_osm_web/
dev_dependencies:
flutter_lints: ^4.0.0
flutter_test:
sdk: flutter

Expand Down

0 comments on commit 7ee44aa

Please sign in to comment.