Skip to content

Commit e796134

Browse files
committed
Add padding implementation
1 parent 51af82f commit e796134

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.1.4
2+
3+
* Added ability to place polylines.
4+
* Added ability to set padding to the map.
5+
16
## 0.1.3
27

38
* Updated apple_maps_flutter dependency, to fix a Marker Bug on iOS.

example/pubspec.lock

+2-2
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.0.5"
10+
version: "0.0.6"
1111
async:
1212
dependency: transitive
1313
description:
@@ -94,7 +94,7 @@ packages:
9494
path: ".."
9595
relative: true
9696
source: path
97-
version: "0.1.3"
97+
version: "0.1.4"
9898
quiver:
9999
dependency: transitive
100100
description:

lib/src/platform_maps.dart

+9
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class PlatformMap extends StatefulWidget {
1111
this.compassEnabled = true,
1212
this.trafficEnabled = false,
1313
this.mapType,
14+
this.padding,
1415
this.rotateGesturesEnabled = true,
1516
this.scrollGesturesEnabled = true,
1617
this.zoomGesturesEnabled = true,
@@ -92,6 +93,12 @@ class PlatformMap extends StatefulWidget {
9293
/// Called every time a [AppleMap] is long pressed.
9394
final Function onLongPress;
9495

96+
/// The padding used on the map
97+
///
98+
/// The amount of additional space (measured in screen points) used for padding for the
99+
/// native controls.
100+
final EdgeInsets padding;
101+
95102
/// True if a "My Location" layer should be shown on the map.
96103
///
97104
/// This layer includes a location indicator at the current device location,
@@ -153,6 +160,7 @@ class _PlatformMapState extends State<PlatformMap> {
153160
widget.initialCameraPosition.googleMapsCameraPosition,
154161
compassEnabled: widget.compassEnabled,
155162
mapType: _getGoogleMapType(),
163+
padding: widget.padding,
156164
markers: widget.markers != null
157165
? Marker.toGoogleMapsMarkerSet(widget.markers)
158166
: widget.markers,
@@ -183,6 +191,7 @@ class _PlatformMapState extends State<PlatformMap> {
183191
widget.initialCameraPosition.appleMapsCameraPosition,
184192
compassEnabled: widget.compassEnabled,
185193
mapType: _getAppleMapType(),
194+
padding: widget.padding,
186195
annotations: widget.markers != null
187196
? Marker.toAppleMapsAnnotationSet(widget.markers)
188197
: widget.markers,

pubspec.lock

+1-1
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.0.5"
10+
version: "0.0.6"
1111
async:
1212
dependency: transitive
1313
description:

pubspec.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
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.3
3+
version: 0.1.4
44
author: Luis Thein <[email protected]>
55
homepage: https://github.com/LuisThein
6+
github: https://github.com/LuisThein/flutter_platform_maps
67

78
environment:
89
sdk: ">=2.1.0 <3.0.0"
@@ -13,7 +14,8 @@ dependencies:
1314

1415
google_maps_flutter: ^0.5.21+7
1516

16-
apple_maps_flutter: ^0.0.5
17+
apple_maps_flutter: ^0.0.6
18+
1719

1820
dev_dependencies:
1921
flutter_test:

0 commit comments

Comments
 (0)