위도, 경도로 한글 주소 가져오기

oen·2022년 1월 9일
0

🇫 Flutter

목록 보기
5/14

파리미터에 &language=ko 를 추가하면 된다.

Future<dynamic> getPlaceAddress({double lat = 0.0, double lng = 0.0}) async {
  final url =
      'https://maps.googleapis.com/maps/api/geocode/json?latlng=$lat,$lng&key=$GOOGLE_API_KEY&language=ko';
  http.Response response = await http.get(Uri.parse(url));

  return jsonDecode(response.body)['results'][0]['address_components'][1]
      ['long_name'];
}

=> ex) '행신동'

profile
🐾

0개의 댓글