File tree Expand file tree Collapse file tree 5 files changed +11
-5
lines changed Expand file tree Collapse file tree 5 files changed +11
-5
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.1.9+4
2
+
3
+ * Fixed build failure
4
+
1
5
## 0.1.9+3
2
6
3
7
* InfoWindow anchor is now configurable
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ packages:
7
7
name: apple_maps_flutter
8
8
url: "https://pub.dartlang.org"
9
9
source: hosted
10
- version: "0.1.2+4 "
10
+ version: "0.1.2+5 "
11
11
async:
12
12
dependency: transitive
13
13
description:
@@ -122,7 +122,7 @@ packages:
122
122
path: ".."
123
123
relative: true
124
124
source: path
125
- version: "0.1.9+3 "
125
+ version: "0.1.9+4 "
126
126
plugin_platform_interface:
127
127
dependency: transitive
128
128
description:
Original file line number Diff line number Diff line change @@ -182,6 +182,7 @@ class Marker {
182
182
appleMaps.Annotation (
183
183
annotationId: marker.markerId.appleMapsAnnoationId,
184
184
alpha: marker.alpha,
185
+ anchor: Offset (0.5 , 1.0 ),
185
186
draggable: marker.draggable,
186
187
infoWindow: marker.infoWindow.appleMapsInfoWindow,
187
188
onTap: marker.onTap,
@@ -199,6 +200,7 @@ class Marker {
199
200
googleMaps.Marker (
200
201
markerId: marker.markerId.googleMapsMarkerId,
201
202
alpha: marker.alpha,
203
+ anchor: Offset (0.5 , 1.0 ),
202
204
draggable: marker.draggable,
203
205
infoWindow: marker.infoWindow.googleMapsInfoWindow,
204
206
onTap: marker.onTap,
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ packages:
7
7
name: apple_maps_flutter
8
8
url: "https://pub.dartlang.org"
9
9
source: hosted
10
- version: "0.1.2+4 "
10
+ version: "0.1.2+5 "
11
11
async:
12
12
dependency: transitive
13
13
description:
Original file line number Diff line number Diff line change 1
1
name : platform_maps_flutter
2
2
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
4
4
homepage : https://github.com/LuisThein
5
5
repository : https://github.com/LuisThein/platform_maps_flutter
6
6
issue_tracker : https://github.com/LuisThein/platform_maps_flutter/issues
@@ -14,7 +14,7 @@ dependencies:
14
14
15
15
google_maps_flutter : ^0.5.28+1
16
16
17
- apple_maps_flutter : ^0.1.2+4
17
+ apple_maps_flutter : ^0.1.2+5
18
18
19
19
dev_dependencies :
20
20
flutter_test :
You can’t perform that action at this time.
0 commit comments