이 페이지에서는 장소 ID의 주소 가져오기 요청과 응답을 보여줍니다.
필수 매개변수
place_id
- 해당 장소의 장소 ID 사람이 읽을 수 있는 주소를 얻고자 합니다. 장소 ID는 다른 Google API와 함께 사용할 수 있습니다. 예를 들어 다음과 같이 반환한placeID
를 사용합니다. Roads API 스냅된 지점의 주소를 가져옵니다. 자세한 내용은 장소 ID 개요를 참고하세요.key
- 애플리케이션의 API 키입니다. 이 키는 할당량을 관리할 수 있습니다 자세히 알아보기 키 가져오기:
선택적 매개변수는 역 지오코딩.
다음 쿼리는 브루클린의 한 장소에 대한 장소 ID를 포함합니다.
https://maps.googleapis.com/maps/api/geocode/json?place_id=ChIJd8BlQ2BZwokRAFUEcm_qrcA
&key=YOUR_API_KEY
위의 쿼리는 다음과 같은 결과를 반환합니다.
{
"results" : [
{
"address_components" : [
{
"long_name" : "277",
"short_name" : "277",
"types" : [ "street_number" ]
},
{
"long_name" : "Bedford Avenue",
"short_name" : "Bedford Ave",
"types" : [ "route" ]
},
{
"long_name" : "Williamsburg",
"short_name" : "Williamsburg",
"types" : [ "neighborhood", "political" ]
},
{
"long_name" : "Brooklyn",
"short_name" : "Brooklyn",
"types" : [ "political", "sublocality", "sublocality_level_1" ]
},
{
"long_name" : "Kings County",
"short_name" : "Kings County",
"types" : [ "administrative_area_level_2", "political" ]
},
{
"long_name" : "New York",
"short_name" : "NY",
"types" : [ "administrative_area_level_1", "political" ]
},
{
"long_name" : "United States",
"short_name" : "US",
"types" : [ "country", "political" ]
},
{
"long_name" : "11211",
"short_name" : "11211",
"types" : [ "postal_code" ]
}
],
"formatted_address" : "277 Bedford Ave, Brooklyn, NY 11211, USA",
"geometry" : {
"location" : {
"lat" : 40.7142205,
"lng" : -73.9612903
},
"location_type" : "ROOFTOP",
"viewport" : {
"northeast" : {
"lat" : 40.71556948029149,
"lng" : -73.95994131970849
},
"southwest" : {
"lat" : 40.7128715197085,
"lng" : -73.9626392802915
}
}
},
"place_id" : "ChIJd8BlQ2BZwokRAFUEcm_qrcA",
"types" : [ "street_address" ]
}
],
"status" : "OK"
}
응답의 필드에 대한 설명은 다음을 참조하세요. 지오코딩 응답.