This package is discontinued because this reasons:
- Easy to implement by developers
- Hard to mantain by community (one more package and dependency with google_maps_flutter)
- Only provide a solution to Google and no for others providers like OpenMaps
Map Input Field for flutter_form_builder package. Used to select coordinates on a map.
This package makes use of google_maps_flutter, for platform specific setup use the guidelines specified here
FormBuilderMapField(
attribute: 'Coordinates',
decoration: InputDecoration(labelText: 'Select Location'),
markerIconColor: Colors.red,
markerIconSize: 50,
onChanged: (val){
print(val);
},
),