USGSMap static method

Universe USGSMap({
  1. Key? key,
  2. required USGSType type,
  3. required dynamic center,
  4. TileLayerOptions? options,
  5. double? zoom,
  6. double? minZoom,
  7. double? maxZoom,
  8. double? rotation,
  9. bool? disableRotation,
  10. Color? background,
  11. MapController? controller,
  12. TileLayer? base,
  13. MarkerLayer? markers,
  14. CircleLayer? circles,
  15. PolylineLayer? polylines,
  16. PolygonLayer? polygons,
  17. RectangleLayer? rectangles,
  18. List<TileLayer> tiles = const [],
  19. List<ImageOverlay> images = const [],
  20. List<VideoOverlay> videos = const [],
  21. List<MapLayer> layers = const [],
  22. List<Widget> controls = const [],
  23. Crs? crs,
  24. Size? size,
  25. bool? live,
  26. bool? moveWhenLive,
  27. dynamic centerMarker,
  28. dynamic locationMarker,
  29. num? centerMarkerSize,
  30. num? locationMarkerSize,
  31. bool? showCenterMarker,
  32. bool? showLocator,
  33. Locator? locator,
  34. bool? showLocationMarker,
  35. bool? showLocationIndicator,
  36. LocationIndicator? locationIndicator,
  37. bool? showCompass,
  38. Compass? compass,
  39. bool? showScale,
  40. Scale? scale,
  41. bool? interactive,
  42. LatLngBounds? maxBounds,
  43. LatLngBounds? fitBounds,
  44. FitBoundsOptions? fitBoundsOptions,
  45. bool? slideOnBoundaries,
  46. bool? adaptiveBoundaries,
  47. bool? hideAttribution,
  48. dynamic onTap(
    1. LatLng?
    )?,
  49. dynamic onLongPress(
    1. LatLng?
    )?,
  50. MapChangedCallback? onChanged,
  51. Function? onReady,
})

Used to display map with base TileLayer from USGS.

Example:

U.USGSMap(
  type: USGSType.ImageryTopo,
  controller: MapController(),
  center: [-6.175329, 106.827253],
  zoom: 15,
)

@param: type

enum to define the type of USGS Map tiles to load.

Available values: USGSType.Topo USGSType.Imagery USGSType.ImageryTopo

@param: center

Used to define center latlng position of the map. It can accept many types of value:

A list of two (or three) values that represents latitude and longitude (and altitude).

U.USGSMap(
  type: USGSType.ImageryTopo,
  controller: MapController(),
  center: [-6.175329, 106.827253],
  zoom: 15,
)

or an instance of LatLng object:

U.USGSMap(
  type: USGSType.ImageryTopo,
  controller: MapController(),
  center: LatLng(-6.175329, 106.827253),
  zoom: 15,
)

or location name.

The built-in GeoCoder inside will automatically convert it to latlng position for you.

Default to LatLng(0.0, 0.0) if your location is not found.

U.USGSMap(
  type: USGSType.ImageryTopo,
  controller: MapController(),
  center: 'Emirates Stadium',
  zoom: 15,
)

Implementation

// ignore: non_constant_identifier_names
static Universe USGSMap({
  Key? key,
  required USGSType type,
  required dynamic center,
  L.TileLayerOptions? options,
  double? zoom,
  double? minZoom,
  double? maxZoom,
  double? rotation,
  bool? disableRotation,
  Color? background,
  C.MapController? controller,
  L.TileLayer? base,
  L.MarkerLayer? markers,
  L.CircleLayer? circles,
  L.PolylineLayer? polylines,
  L.PolygonLayer? polygons,
  L.RectangleLayer? rectangles,
  List<L.TileLayer> tiles = const [],
  List<L.ImageOverlay> images = const [],
  List<L.VideoOverlay> videos = const [],
  List<L.MapLayer> layers = const [],
  List<Widget> controls = const [],
  Crs? crs,
  Size? size,
  bool? live,
  bool? moveWhenLive,
  dynamic centerMarker,
  dynamic locationMarker,
  num? centerMarkerSize,
  num? locationMarkerSize,
  bool? showCenterMarker,
  bool? showLocator,
  Locator? locator,
  bool? showLocationMarker,
  bool? showLocationIndicator,
  L.LocationIndicator? locationIndicator,
  bool? showCompass,
  Compass? compass,
  bool? showScale,
  Scale? scale,
  bool? interactive,
  LatLngBounds? maxBounds,
  LatLngBounds? fitBounds,
  FitBoundsOptions? fitBoundsOptions,
  bool? slideOnBoundaries,
  bool? adaptiveBoundaries,
  bool? hideAttribution,
  Function(LatLng?)? onTap,
  Function(LatLng?)? onLongPress,
  MapChangedCallback? onChanged,
  Function? onReady,
}) {
  return U.Map(
    key: key,
    center: center,
    zoom: zoom,
    minZoom: minZoom,
    maxZoom: maxZoom,
    rotation: rotation,
    disableRotation: disableRotation,
    background: background,
    controller: controller,
    markers: markers,
    circles: circles,
    polylines: polylines,
    polygons: polygons,
    rectangles: rectangles,
    tiles: tiles,
    images: images,
    videos: videos,
    layers: layers,
    controls: controls,
    crs: crs,
    size: size,
    live: live,
    moveWhenLive: moveWhenLive,
    centerMarker: centerMarker,
    locationMarker: locationMarker,
    centerMarkerSize: centerMarkerSize,
    locationMarkerSize: locationMarkerSize,
    showCenterMarker: showCenterMarker,
    showLocator: showLocator,
    locator: locator,
    showLocationMarker: showLocationMarker,
    showLocationIndicator: showLocationIndicator,
    locationIndicator: locationIndicator,
    showCompass: showCompass,
    compass: compass,
    showScale: showScale,
    scale: scale,
    interactive: interactive,
    maxBounds: maxBounds,
    fitBounds: fitBounds,
    fitBoundsOptions: fitBoundsOptions,
    slideOnBoundaries: slideOnBoundaries,
    adaptiveBoundaries: adaptiveBoundaries,
    hideAttribution: hideAttribution,
    onTap: onTap,
    onLongPress: onLongPress,
    onChanged: onChanged,
    onReady: onReady,
    base: USGSTileLayer(
      type: type,
      options: options ?? L.TileLayerOptions(),
    ),
  );
}