tileCacheEnabled property

bool get tileCacheEnabled

A Boolean value indicating whether the map may cache tiles for different zoom levels or not.

When this property is set to YES, the map view consumes more memory and provide a smoother user experience when zoom in/out.

The default value of this property is YES.

Implementation

bool get tileCacheEnabled {
  return _objc_msgSend_91o635(this.ref.pointer, _sel_tileCacheEnabled);

}
set tileCacheEnabled (bool value)

A Boolean value indicating whether the map may cache tiles for different zoom levels or not.

When this property is set to YES, the map view consumes more memory and provide a smoother user experience when zoom in/out.

The default value of this property is YES.

Implementation

set tileCacheEnabled(bool value) {
_objc_msgSend_1s56lr9(this.ref.pointer, _sel_setTileCacheEnabled_, value);

}