Google 地理编码:地理编码时地点 ID 不同 business/company 名称和地址

Google geocoding: Place Id are different when geocoding business/company name and address

我的问题: 我的场景是在我的应用程序中有一个输入字段,您可以在其中搜索使用自动完成的地址。在此字段中,您可以输入任何公司名称,它会找到 lat/long 并在输入下方的地图上设置标记。然后用户也可以使用地图将标记拖放到某处,问题就来了,因为我无法通过这种方式获取我的要求中需要的公司名称。我失败的尝试如下。


通过lat/lon查找公司名称: 我需要根据职位(lat/long)获取公司名称。

所以我尝试对 lat/lon 进行地理编码以获取地点 ID: https://maps.googleapis.com/maps/api/geocode/json?latlng=55.93366899999999,12.258698299999992&key=xxx

它给了我place_id:"ChIJwSWuIGRAUkYRf7LPSwRStYU"

然后我用它来获取地名: https://maps.googleapis.com/maps/api/place/details/json?placeid=ChIJwSWuIGRAUkYRf7LPSwRStYU&key=xxx

但是没有地名! JSON 不包含有关业务的任何信息。


通过地址查找公司名称: 所以我尝试对地址进行地理编码而不是 lat/long: https://maps.googleapis.com/maps/api/geocode/json?address=Sigrunsvej%2040%20Hillerød

这给了我地点 ID:ChIJa1mGSGFAUkYR2SpylJRKlLM https://maps.googleapis.com/maps/api/place/details/json?placeid=ChIJa1mGSGFAUkYR2SpylJRKlLM&key=xxx

扔到地方后,地方和以前一样,没有公司名..


通过 "company name": 查找公司名称但是当我尝试在 url 中提供公司名称时,我得到了第三名 ID: https://maps.googleapis.com/maps/api/geocode/json?address=Bauhaus%20Hillerød

地点 ID:ChIJZWxjtmZAUkYRWY4K-RTjwsk https://maps.googleapis.com/maps/api/place/details/json?placeid=ChIJZWxjtmZAUkYRWY4K-RTjwsk&key=xxx

这个地方id有效,我得到公司名称"BAUHAUS"。


问题:那么我如何在不知道公司名称的情况下获取公司名称呢?一个地方可以有不同的地点 ID 对我来说也很疯狂。

在该位置使用 nearbySearch

var service = new google.maps.places.PlacesService(map);
var radius = 100;
service.nearbySearch({
  location: new google.maps.LatLng(55.93366899999999, 12.258698299999992),
  radius: radius,
  type: "store"
}, callback);

Returns一个结果:

BAUHAUS Hillerød
placeId:ChIJZWxjtmZAUkYRWY4K-RTjwsk

(注意:没有 type:"store",我得到不同的结果)

proof of concept fiddle

代码片段:

var infowindow;
var map;

function initialize() {
  map = new google.maps.Map(
    document.getElementById("map_canvas"), {
      center: new google.maps.LatLng(55.93366899999999, 12.258698299999992),
      zoom: 13,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    });
  infowindow = new google.maps.InfoWindow();
  var service = new google.maps.places.PlacesService(map);
  var radius = 100;
  var circle = new google.maps.Circle({
    map: map,
    center: map.getCenter(),
    radius: radius
  });
  map.fitBounds(circle.getBounds());
  service.nearbySearch({
    location: map.getCenter(),
    radius: radius,
    type: "store"
  }, callback);
}

function callback(results, status) {
  if (status === google.maps.places.PlacesServiceStatus.OK) {
    console.log(results.length + " results");
    for (var i = 0; i < results.length; i++) {
      createMarker(results[i]);
    }
  } else console.log("status=" + status);
}

function createMarker(place) {
  var placeLoc = place.geometry.location;
  var marker = new google.maps.Marker({
    map: map,
    position: place.geometry.location
  });

  google.maps.event.addListener(marker, 'click', function() {
    infowindow.setContent(place.name + "<br>placeId:" + place.place_id);
    infowindow.open(map, this);
  });
  google.maps.event.trigger(marker, 'click');
}


google.maps.event.addDomListener(window, "load", initialize);
html,
body,
#map_canvas {
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px
}
<script src="https://maps.googleapis.com/maps/api/js?libraries=places"></script>
<div id="map_canvas"></div>