pickMapFeatureAt abstract method

void pickMapFeatureAt(
  1. Point<double> point
)

Selects visible map features (e.g., venues) at the specified screen position. Results are delivered to the PickListener via onMapFeaturePickComplete PickListener. point Position in screen pixels to pick from.

Example:

// Pick map feature at screen position
math.Point<double> featurePoint = math.Point<double>(150.0, 250.0);
_locationWindow!.pickMapFeatureAt(featurePoint);
print("Picked map feature at screen position (${featurePoint.x}, ${featurePoint.y})");

Implementation

void pickMapFeatureAt(math.Point<double> point);