lmks property

LandmarkStoreCollection get lmks

Get access to the settings for the visible landmark stores.

Returns

  • The landmark store collection

Throws

  • An exception if it fails.

Implementation

LandmarkStoreCollection get lmks {
  if (_lmks == null) {
    final OperationResult resultString = objectMethod(
      _pointerId,
      'MapViewPreferences',
      'lmks',
    );

    _lmks = LandmarkStoreCollection.init(resultString['result'], _mapId);
  }
  return _lmks!;
}