File tree 3 files changed +7
-3
lines changed
packages/google_maps_flutter/google_maps_flutter 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.1.1
2
+
3
+ * Fix in example app to properly place polyline at initial camera position.
4
+
1
5
## 1.1.0
2
6
3
7
* Add support for holes in Polygons.
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ class PlacePolylineBodyState extends State<PlacePolylineBody> {
31
31
32
32
GoogleMapController controller;
33
33
Map <PolylineId , Polyline > polylines = < PolylineId , Polyline > {};
34
- int _polylineIdCounter = 1 ;
34
+ int _polylineIdCounter = 0 ;
35
35
PolylineId selectedPolyline;
36
36
37
37
// Values when toggling polyline color
@@ -215,7 +215,7 @@ class PlacePolylineBodyState extends State<PlacePolylineBody> {
215
215
height: 300.0 ,
216
216
child: GoogleMap (
217
217
initialCameraPosition: const CameraPosition (
218
- target: LatLng (52.4478 , - 3.5402 ),
218
+ target: LatLng (53.1721 , - 3.5402 ),
219
219
zoom: 7.0 ,
220
220
),
221
221
polylines: Set <Polyline >.of (polylines.values),
Original file line number Diff line number Diff line change 1
1
name : google_maps_flutter
2
2
description : A Flutter plugin for integrating Google Maps in iOS and Android applications.
3
3
homepage : https://github.com/flutter/plugins/tree/master/packages/google_maps_flutter/google_maps_flutter
4
- version : 1.1.0
4
+ version : 1.1.1
5
5
6
6
dependencies :
7
7
flutter :
You can’t perform that action at this time.
0 commit comments