editable property

bool editable
inherited

if true the user can edit the polyline or polygon.

Implementation

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

Implementation

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