File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
packages/google_maps_flutter/google_maps_flutter Expand file tree Collapse file tree 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+
15## 1.1.0
26
37* 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> {
3131
3232 GoogleMapController controller;
3333 Map <PolylineId , Polyline > polylines = < PolylineId , Polyline > {};
34- int _polylineIdCounter = 1 ;
34+ int _polylineIdCounter = 0 ;
3535 PolylineId selectedPolyline;
3636
3737 // Values when toggling polyline color
@@ -215,7 +215,7 @@ class PlacePolylineBodyState extends State<PlacePolylineBody> {
215215 height: 300.0 ,
216216 child: GoogleMap (
217217 initialCameraPosition: const CameraPosition (
218- target: LatLng (52.4478 , - 3.5402 ),
218+ target: LatLng (53.1721 , - 3.5402 ),
219219 zoom: 7.0 ,
220220 ),
221221 polylines: Set <Polyline >.of (polylines.values),
Original file line number Diff line number Diff line change 11name : google_maps_flutter
22description : A Flutter plugin for integrating Google Maps in iOS and Android applications.
33homepage : https://github.com/flutter/plugins/tree/master/packages/google_maps_flutter/google_maps_flutter
4- version : 1.1.0
4+ version : 1.1.1
55
66dependencies :
77 flutter :
You can’t perform that action at this time.
0 commit comments