SimpleLocationPicker constructor

SimpleLocationPicker({
  1. double initialLatitude = SLPConstants.DEFAULT_LATITUDE,
  2. double initialLongitude = SLPConstants.DEFAULT_LONGITUDE,
  3. double zoomLevel = SLPConstants.DEFAULT_ZOOM_LEVEL,
  4. bool displayOnly = false,
  5. Color appBarColor = Colors.blueAccent,
  6. Color appBarTextColor = Colors.white,
  7. String appBarTitle = "Select Location",
  8. Color markerColor = Colors.blueAccent,
})

Implementation

SimpleLocationPicker({
  this.initialLatitude = SLPConstants.DEFAULT_LATITUDE,
  this.initialLongitude = SLPConstants.DEFAULT_LONGITUDE,
  this.zoomLevel = SLPConstants.DEFAULT_ZOOM_LEVEL,
  this.displayOnly = false,
  this.appBarColor = Colors.blueAccent,
  this.appBarTextColor = Colors.white,
  this.appBarTitle = "Select Location",
  this.markerColor = Colors.blueAccent,
});