landmarks property
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
- LandmarkStoreCollection: The collection of landmark stores.
Implementation
LandmarkStoreCollection get landmarks {
final OperationResult resultString = objectMethod(
pointerId,
'SearchPreferences',
'landmarks',
);
return LandmarkStoreCollection.init(resultString['result'], -1);
}