Skip to content

Commit b028151

Browse files
committed
fix: fixed build failure
Bumped version + updated CHANGELOG.md
1 parent 9196c9a commit b028151

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.9+4
2+
3+
* Fixed build failure
4+
15
## 0.1.9+3
26

37
* InfoWindow anchor is now configurable

example/pubspec.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ packages:
77
name: apple_maps_flutter
88
url: "https://pub.dartlang.org"
99
source: hosted
10-
version: "0.1.2+4"
10+
version: "0.1.2+5"
1111
async:
1212
dependency: transitive
1313
description:
@@ -122,7 +122,7 @@ packages:
122122
path: ".."
123123
relative: true
124124
source: path
125-
version: "0.1.9+3"
125+
version: "0.1.9+4"
126126
plugin_platform_interface:
127127
dependency: transitive
128128
description:

lib/src/marker.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ class Marker {
182182
appleMaps.Annotation(
183183
annotationId: marker.markerId.appleMapsAnnoationId,
184184
alpha: marker.alpha,
185+
anchor: Offset(0.5, 1.0),
185186
draggable: marker.draggable,
186187
infoWindow: marker.infoWindow.appleMapsInfoWindow,
187188
onTap: marker.onTap,
@@ -199,6 +200,7 @@ class Marker {
199200
googleMaps.Marker(
200201
markerId: marker.markerId.googleMapsMarkerId,
201202
alpha: marker.alpha,
203+
anchor: Offset(0.5, 1.0),
202204
draggable: marker.draggable,
203205
infoWindow: marker.infoWindow.googleMapsInfoWindow,
204206
onTap: marker.onTap,

pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ packages:
77
name: apple_maps_flutter
88
url: "https://pub.dartlang.org"
99
source: hosted
10-
version: "0.1.2+4"
10+
version: "0.1.2+5"
1111
async:
1212
dependency: transitive
1313
description:

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: platform_maps_flutter
22
description: A Flutter package that combines google_maps and apple_maps to provide a crossplatform native map implementation.
3-
version: 0.1.9+3
3+
version: 0.1.9+4
44
homepage: https://github.com/LuisThein
55
repository: https://github.com/LuisThein/platform_maps_flutter
66
issue_tracker: https://github.com/LuisThein/platform_maps_flutter/issues
@@ -14,7 +14,7 @@ dependencies:
1414

1515
google_maps_flutter: ^0.5.28+1
1616

17-
apple_maps_flutter: ^0.1.2+4
17+
apple_maps_flutter: ^0.1.2+5
1818

1919
dev_dependencies:
2020
flutter_test:

0 commit comments

Comments
 (0)