Google 将 API 邮政编码映射到邮政编码行车路线

Google maps API zipcode to zipcode driving directions

我正在按照 Google gCloud 指南绘制地图(嵌入到 iframe 中)。在我的问题中,起点和终点是数字邮政编码。

这是我使用的URL:

https://www.google.com/maps/embed/v1/directions?key=MY_API_KEY&origin=address=07304&destination=90210

这是我得到的:

我什么时候应该得到这个:

这拾取了真正的来源(新泽西州泽西市),但对于 90210(加利福尼亚州比佛利山庄),它拾取了纽约皇后区的一家企业(90210 激光)。

有没有一种方法可以在 URL 中指定 ZIPCODE 起点和 ZIPCODE 目的地而不必先获取纬度、经度或城市名称;就像指定“07304”时一样?

我不限于 Google 地图,任何可以将邮政编码正确编码为邮政编码方向的免费或低成本服务都是很好的解决方案。

谢谢

一个选项是:origin=zip 07304&destination=zip 90210

<iframe width="600" height="450" frameborder="0" style="border:0"
src="https://www.google.com/maps/embed/v1/directions?key=[API_KEY]&origin=zip 07304&destination=zip 90210" 
allowfullscreen></iframe>

live example