landmarks property

LandmarkStoreCollection get landmarks

Collection of landmark stores used as search targets.

Provides access to the set of landmark stores considered during search operations. Can be customized to add specific LandmarkStore instances, allowing the search to work on custom datasets.

Returns

Implementation

LandmarkStoreCollection get landmarks {
  final OperationResult resultString = objectMethod(
    pointerId,
    'SearchPreferences',
    'landmarks',
  );

  return LandmarkStoreCollection.init(resultString['result'], -1);
}