setAssetPath static method

void setAssetPath(
  1. String path
)

The path to the Maps asset folder. Default is application's main bundle path.

This option is ignored for Android platform.

The path to the folder where application assets are located. Resources whose protocol is asset:// will be fetched from an asset folder or asset management system provided by respective platform.

Implementation

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