updateClickable method

Future<bool> updateClickable (
  1. bool clickable
)

更新polyLine是否可点击

Implementation

Future<bool> updateClickable(bool clickable) async {
  this.clickable = clickable;

  return await BMFMapDispatcherFactory.instance
      .getOverlayDispatcher()
      .updateOverlayMemberDispatch(this.getMethodChannel(), {
    'id': this.getId(),
    'member': 'clickable',
    'value': clickable,
  });
}