updateScaleX method
- double scaleX
更新x方向缩放倍数
Android独有
Implementation
Future<bool> updateScaleX(double scaleX) async {
bool ret = await BMFMapDispatcherFactory.instance.markerDispatcher
.updateMarkerMember(this.methodChannel, {
'id': this.Id,
'member': 'scaleX',
'value': scaleX,
});
if (ret) {
this.scaleX = scaleX;
}
return ret;
}