editable property

bool get editable
inherited

if true the user can edit the polyline or polygon.

Implementation

bool get editable=>_editable;
set editable (bool value)
inherited

Implementation

set editable(bool value){
  _editable=value;
  _sendData('setPloyEditable', {'editable':value});
}