使用 Google 地图 API 通过 BN 代码对纽约高中进行地理编码
Using Google Maps API to geocode NYC high schools by BN code
我正在尝试使用地图地理编码 API 和分配给每所高中的唯一 BN 代码对 NYC 高中进行地理编码。例如,在 Google 地图中输入 K733 会在纽约布鲁克林的 MESA Charter High School 上生成一个标记。但是,当我像这样使用 API url 时:
https://maps.googleapis.com/maps/api/geocode/json?address=K733
我不断收到 "ZERO_RESULTS"。我也尝试过使用 Places API 并且得到了相同的结果。谁能指出我正确的方向?甚至可以从 Google 地图中提取此信息吗?
无法使用唯一的 BN 代码进行地图地理编码 API,因为地址组件需要 postal address
address — The street address that you want to geocode, in the format
used by the national postal service of the country concerned.
Additional address elements such as business names and unit, suite or
floor numbers should be avoided. Please refer to the FAQ for
additional guidance.
我正在尝试使用地图地理编码 API 和分配给每所高中的唯一 BN 代码对 NYC 高中进行地理编码。例如,在 Google 地图中输入 K733 会在纽约布鲁克林的 MESA Charter High School 上生成一个标记。但是,当我像这样使用 API url 时:
https://maps.googleapis.com/maps/api/geocode/json?address=K733
我不断收到 "ZERO_RESULTS"。我也尝试过使用 Places API 并且得到了相同的结果。谁能指出我正确的方向?甚至可以从 Google 地图中提取此信息吗?
无法使用唯一的 BN 代码进行地图地理编码 API,因为地址组件需要 postal address
address — The street address that you want to geocode, in the format used by the national postal service of the country concerned. Additional address elements such as business names and unit, suite or floor numbers should be avoided. Please refer to the FAQ for additional guidance.