selectFeatures method

void selectFeatures(
  1. List<Feature> features
)

Selects the features in the list and adds them to the current list of selected features.

Parameters:

Implementation

void selectFeatures(
  List<Feature> features,
) {
  final coreFeatures = features.toArray(
    valueType: _ElementType.feature,
  );
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_AnnotationLayer_selectFeatures(
      _handle,
      coreFeatures._handle,
      errorHandler,
    );
  });
}