OpenStreetMaps constructor

const OpenStreetMaps({
  1. Key? key,
  2. required OpenMapOptions options,
  3. OpenMapBloc? bloc,
  4. TileLayer tileLayer(
    1. TileLayer defaultLayer
    )?,
  5. MyLocationButtonCallBack? myLocationButton,
  6. ValueChanged<SelectedLocation>? onDone,
  7. String? searchHint,
  8. ReverseZoom? reverseZoom,
  9. SearchFilters? searchFilters,
})

Implementation

const OpenStreetMaps({
  Key? key,
  required this.options,
  this.bloc,
  this.tileLayer,
  this.myLocationButton,
  this.onDone,
  this.searchHint,
  this.reverseZoom,
  this.searchFilters,
}) : super(key: key);