removeLandmarkStore static method

void removeLandmarkStore(
  1. int landmarkStoreId
)

Removes the landmark store identified by landmarkStoreId.

The LandmarkStore instance must be disposed (see LandmarkStore.dispose) before removal; otherwise the store will not be removed. The operation fails when the store is currently in use.

Parameters

  • landmarkStoreId: Identifier of the store to remove.

Implementation

static void removeLandmarkStore(final int landmarkStoreId) {
  staticMethod(
    'LandmarkStoreService',
    'removeLandmarkStore',
    args: landmarkStoreId,
  );
}