mapCitiesLandmarkStoreId property

int get mapCitiesLandmarkStoreId

Returns the special-purpose landmark store id for map cities data.

This id references an internal store and cannot be resolved with getLandmarkStoreById.

Returns

  • int: The map cities landmark store id.

Implementation

static int get mapCitiesLandmarkStoreId {
  final OperationResult resultString = staticMethod(
    'LandmarkStoreService',
    'getMapCitiesLandmarkStoreId',
  );

  final int res = resultString['result'];
  return res;
}