getCenterLatlng method

Future<LatLng> getCenterLatlng()

获取中心点

Implementation

Future<LatLng> getCenterLatlng() async {
  String result = await _mapChannel.invokeMethod("map#getCenterPoint");
  return LatLng.fromJson(json.decode(result));
}