updateLineJoinType method

Future<bool> updateLineJoinType (
  1. BMFLineJoinType lineJoinType
)

更新折线拐角处理方式式

BMFLineJoinType lineJoinType 折线拐角处理方式

Implementation

Future<bool> updateLineJoinType(BMFLineJoinType lineJoinType) async {
  this.lineJoinType = lineJoinType;

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