visible property
bool
get
visible
Whether this layer is displayed. A value of NO hides the layer.
Related examples
TODO: Show and hide a layer, learn how to toggle an MLNStyleLayer
object's visibility.
Implementation
bool get visible {
return _objc_msgSend_91o635(this.ref.pointer, _sel_isVisible);
}
set
visible
(bool value)
Whether this layer is displayed. A value of NO hides the layer.
Related examples
TODO: Show and hide a layer, learn how to toggle an MLNStyleLayer
object's visibility.
Implementation
set visible(bool value) {
_objc_msgSend_1s56lr9(this.ref.pointer, _sel_setVisible_, value);
}