prefetchesTiles property

bool get prefetchesTiles

A Boolean value indicating whether the map should prefetch tiles.

When this property is set to YES, the map view prefetches tiles designed for a low zoom level and displays them until receiving more detailed tiles for the current zoom level. The prefetched tiles typically contain simplified versions of each shape, improving the map view’s perceived performance.

The default value of this property is YES.

Implementation

bool get prefetchesTiles {
  return _objc_msgSend_91o635(this.ref.pointer, _sel_prefetchesTiles);

}
set prefetchesTiles (bool value)

A Boolean value indicating whether the map should prefetch tiles.

When this property is set to YES, the map view prefetches tiles designed for a low zoom level and displays them until receiving more detailed tiles for the current zoom level. The prefetched tiles typically contain simplified versions of each shape, improving the map view’s perceived performance.

The default value of this property is YES.

Implementation

set prefetchesTiles(bool value) {
_objc_msgSend_1s56lr9(this.ref.pointer, _sel_setPrefetchesTiles_, value);

}