FlutterMapContainer constructor

const FlutterMapContainer({
  1. Key? key,
  2. required Widget child,
  3. required MapCamera camera,
  4. required LatLng point,
  5. Alignment alignment = Alignment.center,
  6. bool rotate = true,
  7. EdgeInsetsGeometry? margin,
  8. double? width,
  9. double? height,
  10. bool glow = false,
  11. Widget glowOverlay = const GlowOverlay(),
  12. Offset pixelOffset = Offset.zero,
  13. void onMeasured(
    1. Key key,
    2. Size size
    )?,
})

Implementation

const FlutterMapContainer({
  super.key,
  required this.child,
  required this.camera,
  required this.point,
  this.alignment = Alignment.center,
  this.rotate = true,
  this.margin,
  this.width,
  this.height,
  this.glow = false,
  this.glowOverlay = const GlowOverlay(),
  this.pixelOffset = Offset.zero,
  this.onMeasured,
});