lmks property
Get access to the settings for visible landmark stores.
Landmark stores contain map features like points of interest (POIs), buildings, and other geographic features. Use this collection to control which landmark stores are visible and configure their display properties.
Returns
- (LandmarkStoreCollection) The landmark store collection for the view.
See also:
- LandmarkStoreCollection - Configure visible landmark stores.
- markers - Marker collections.
Implementation
LandmarkStoreCollection get lmks {
if (_lmks == null) {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewPreferences',
'lmks',
dependencyId: _mapPointerId,
);
_lmks = LandmarkStoreCollection.init(
resultString['result'],
_mapPointerId,
);
}
return _lmks!;
}