如何使用反向地理编码 google 地图获取公寓地址和其他附近地址
how to get addresses of apartments and other close address with Reverse Geocoding google maps
我正在使用反向地理编码,但它没有给我一个公寓楼的所有地址,它只给我建筑物的地址我如何使用反向地理编码给我潜在的地址以及我如何搜索使用 google 地理编码的邮政编码在建筑物中也获得相同的潜在地址
function getAddressByPostal(postcode: any, country: any) {
axios({
method: 'get',
url: API.PostalUrl + postcode + '|country:' + country + '&key=' + API.API_KEY,
}).then((res: any) => {
function getAddressByCoord(lat: number, lng: number) {
axios({
method: 'get',
url: API.GeocodingUrl + lat + ',' + lng + '&key=' + API.API_KEY,
}).then((res: any) => {
公寓地址在 Google 地图或地理编码 API 上并不总是可用。当你得到一个时,你只得到一个(最近的一个)。
您可以随时搜索(地址地理编码)公寓地址,例如60 29th St. Suite #217, San Francisco returns 包含地址组件 subpremise: "217"
.
的结果
当具有此类 subpremise
地址组件的地址可用时,它们最常出现在 establishment
结果(企业)中。我只是随机点击了纽约市中心 (40.726145,-73.996875),得到了一个地址为“623 Broadway #2f, New York”和地址组成部分 subpremise: "2f"
.
请注意,反向地理编码不是旨在查找附近多个地址一个位置(这附近有什么?);它提供的功能旨在提供实际位置的多个近似描述(我在哪里?)。
我正在使用反向地理编码,但它没有给我一个公寓楼的所有地址,它只给我建筑物的地址我如何使用反向地理编码给我潜在的地址以及我如何搜索使用 google 地理编码的邮政编码在建筑物中也获得相同的潜在地址
function getAddressByPostal(postcode: any, country: any) {
axios({
method: 'get',
url: API.PostalUrl + postcode + '|country:' + country + '&key=' + API.API_KEY,
}).then((res: any) => {
function getAddressByCoord(lat: number, lng: number) {
axios({
method: 'get',
url: API.GeocodingUrl + lat + ',' + lng + '&key=' + API.API_KEY,
}).then((res: any) => {
公寓地址在 Google 地图或地理编码 API 上并不总是可用。当你得到一个时,你只得到一个(最近的一个)。
您可以随时搜索(地址地理编码)公寓地址,例如60 29th St. Suite #217, San Francisco returns 包含地址组件 subpremise: "217"
.
当具有此类 subpremise
地址组件的地址可用时,它们最常出现在 establishment
结果(企业)中。我只是随机点击了纽约市中心 (40.726145,-73.996875),得到了一个地址为“623 Broadway #2f, New York”和地址组成部分 subpremise: "2f"
.
请注意,反向地理编码不是旨在查找附近多个地址一个位置(这附近有什么?);它提供的功能旨在提供实际位置的多个近似描述(我在哪里?)。