updateIsPerspective method

Future<bool> updateIsPerspective (
  1. bool isPerspective
)

更新近大远小的开关

Android独有

Implementation

Future<bool> updateIsPerspective(bool isPerspective) async {
  bool ret = await BMFMapDispatcherFactory.instance.markerDispatcher
      .updateMarkerMember(this.methodChannel, {
    'id': this.Id,
    'member': 'isPerspective',
    'value': isPerspective,
  });

  if (ret) {
    this.isPerspective = isPerspective;
  }

  return ret;
}