SimpleMapOptions constructor

const SimpleMapOptions({
  1. bool interactive = true,
  2. SimpleMapProjection projection = const MillerProjection(offsetEquator: 77, offsetPrimeMeridian: -33),
  3. IconData mapIcon = MapProjectionIcon.miller,
  4. Color mapColor = const Color(0xFFCDD0D7),
  5. Color bgColor = const Color(0x0),
  6. Color? pointColor,
  7. Color? startPointColor,
  8. bool withShadow = true,
  9. Offset shadowOffset = const Offset(0.0, 0.5),
  10. Widget markerBuilder(
    1. SimpleMapMarker,
    2. Offset
    )?,
})

Implementation

const SimpleMapOptions({
  this.interactive = true,
  this.projection = const MillerProjection(
    offsetEquator: 77,
    offsetPrimeMeridian: -33,
  ),
  this.mapIcon = MapProjectionIcon.miller,
  this.mapColor = const Color(0xFFCDD0D7),
  this.bgColor = const Color(0x0),
  this.pointColor,
  this.startPointColor,
  this.withShadow = true,
  this.shadowOffset = const Offset(0.0, 0.5),
  this.markerBuilder,
});