searchGeocode method

Future<GeocodeResult> searchGeocode(
  1. String name,
  2. String city
)

地址转坐标 name表示地址,第二个参数表示查询城市,中文或者中文全拼,citycode、adcode

Implementation

Future<GeocodeResult> searchGeocode(String name, String city) {
  L.p('方法searchGeocode dart端参数: name -> $name, cityCode -> $city');

  return _searchChannel
      .invokeMethod(
        'search#searchGeocode',
        {'name': name, 'city': city},
      )
      .then((result) => result)
      .then((jsonResult) => GeocodeResult.fromJson(jsonDecode(jsonResult)));
}