setDataPath static method

void setDataPath(
  1. String path
)

The path to the Maps data folder.

The engine will use this folder for storing offline style packages and temporary data. The application must have sufficient permissions to create files within the provided directory. If a data path is not provided, the default location will be used.

Implementation

static void setDataPath(String path) {
  _options.setDataPath(path);
}