PowerGeoPoint constructor
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);