Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 ruby on rails 中,在谷歌地图中显示用户输入地址的标记的一般方法是什么?
我应该在加载地图时为每个地址调用地理编码服务,还是应该在保存地址然后显示所有坐标时调用它?
我想答案是在保存时调用地理编码。否则,我将超过 2500 次调用/天谷歌地图地理编码服务的限制
当用户向您提供地址时,您绝对应该对地址进行地理编码,然后将收到的 latLngs 保存在您的数据库中。这种方式节省了地理编码请求的数量。