removeLandmarkStore static method

void removeLandmarkStore(
  1. int landmarkStoreId
)

Remove the landmark store specified by ID.

The landmark store should be disposed before calling this method. Dispose the landmark store using LandmarkStore.dispose. The landmarks store will not be removed unless the object is disposed.

The method does not work if the landmark store is in use.

Parameters

  • IN landmarkStoreId The landmark store ID

Throws

  • An exception if it fails to initialize.

Implementation

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