updateScaleX method

Future<bool> updateScaleX (
  1. double scaleX
)

更新x方向缩放倍数

Implementation

Future<bool> updateScaleX(double scaleX) async {
  this.scaleX = scaleX;
  return await BMFMapDispatcherFactory.instance
      .getMarkerDispatcher()
      .updateMarkerMember(this.getMethodChannel(), {
    'id': this.getId(),
    'member': 'scaleX',
    'value': scaleX,
  });
}