GeometryManager constructor

GeometryManager(
  1. MapLibreMapController mapController, {
  2. dynamic onGeometryTap(
    1. String featureId,
    2. Map<String, dynamic>? properties
    )?,
})

Implementation

GeometryManager(this.mapController, {this.onGeometryTap}) {
  mapController.onFeatureTapped.add((point, latLng, id, layerId, annotation) {
    _processTap(point, latLng, id);
  });
}