PowerGeoPoint constructor

PowerGeoPoint({
  1. Map<String, dynamic>? properties,
  2. List<double>? bbox,
  3. String? title,
  4. dynamic id,
  5. required GeoJSONPoint geometry,
})

Creates a PowerGeoPoint instance with the specified properties.

  • properties: Optional map of properties associated with the point.
  • bbox: Optional bounding box information.
  • title: Optional title for the point.
  • id: Unique identifier for the point.
  • geometry: The geographic point geometry.

Implementation

PowerGeoPoint({
  Map<String, dynamic>? properties,
  List<double>? bbox,
  String? title,
  dynamic id,
  required this.geometry,
}) : super(properties: properties, bbox: bbox, title: title, id: id);