merge-requests/390/merge
Mirza.Shafique 5 years ago
parent 32f62fbe56
commit f20883184e

@ -139,6 +139,7 @@ class _CMCLocationPageState extends State<CMCLocationPage> {
initialPosition: LatLng(latitude, longitude), initialPosition: LatLng(latitude, longitude),
useCurrentLocation: showCurrentLocation, useCurrentLocation: showCurrentLocation,
), ),
)); ),
);
} }
} }

@ -132,7 +132,8 @@ class _NewCMCStepThreePageState extends State<NewCMCStepThreePage> {
// _controller.complete(controller); // _controller.complete(controller);
// }, // },
// ), // ),
child: Image.network("https://maps.googleapis.com/maps/api/staticmap?center=" + child: Image.network(
"https://maps.googleapis.com/maps/api/staticmap?center=" +
widget.cmcInsertPresOrderRequestModel.latitude.toString() + widget.cmcInsertPresOrderRequestModel.latitude.toString() +
"," + "," +
widget.cmcInsertPresOrderRequestModel.longitude.toString() + widget.cmcInsertPresOrderRequestModel.longitude.toString() +

@ -194,7 +194,11 @@ class _NewCMCStepTowPageState extends State<NewCMCStepTowPage> {
longitude: longitude, longitude: longitude,
), ),
), ),
); ).then((value) {
setState(() {
});
});
}, },
child: Padding( child: Padding(
padding: EdgeInsets.only(left: 12, right: 12, bottom: 16, top: 8), padding: EdgeInsets.only(left: 12, right: 12, bottom: 16, top: 8),

Loading…
Cancel
Save