diff --git a/CHANGELOG.md b/CHANGELOG.md index 07248dd..c6d711b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.9+4 + +* Fixed build failure + ## 0.1.9+3 * InfoWindow anchor is now configurable diff --git a/example/pubspec.lock b/example/pubspec.lock index 1e3997e..91b0061 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -7,7 +7,7 @@ packages: name: apple_maps_flutter url: "https://pub.dartlang.org" source: hosted - version: "0.1.2+4" + version: "0.1.2+5" async: dependency: transitive description: @@ -122,7 +122,7 @@ packages: path: ".." relative: true source: path - version: "0.1.9+3" + version: "0.1.9+4" plugin_platform_interface: dependency: transitive description: diff --git a/lib/src/marker.dart b/lib/src/marker.dart index da5bd48..53c5777 100644 --- a/lib/src/marker.dart +++ b/lib/src/marker.dart @@ -182,6 +182,7 @@ class Marker { appleMaps.Annotation( annotationId: marker.markerId.appleMapsAnnoationId, alpha: marker.alpha, + anchor: Offset(0.5, 1.0), draggable: marker.draggable, infoWindow: marker.infoWindow.appleMapsInfoWindow, onTap: marker.onTap, @@ -199,6 +200,7 @@ class Marker { googleMaps.Marker( markerId: marker.markerId.googleMapsMarkerId, alpha: marker.alpha, + anchor: Offset(0.5, 1.0), draggable: marker.draggable, infoWindow: marker.infoWindow.googleMapsInfoWindow, onTap: marker.onTap, diff --git a/pubspec.lock b/pubspec.lock index 25dec23..df72174 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -7,7 +7,7 @@ packages: name: apple_maps_flutter url: "https://pub.dartlang.org" source: hosted - version: "0.1.2+4" + version: "0.1.2+5" async: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 98964f6..aa8574b 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: platform_maps_flutter description: A Flutter package that combines google_maps and apple_maps to provide a crossplatform native map implementation. -version: 0.1.9+3 +version: 0.1.9+4 homepage: https://github.com/LuisThein repository: https://github.com/LuisThein/platform_maps_flutter issue_tracker: https://github.com/LuisThein/platform_maps_flutter/issues @@ -14,7 +14,7 @@ dependencies: google_maps_flutter: ^0.5.28+1 - apple_maps_flutter: ^0.1.2+4 + apple_maps_flutter: ^0.1.2+5 dev_dependencies: flutter_test: