有人有使用 django-gmapi 进行地理编码的经验吗?
作者说: Google Geocoding Web 服务的第 3 版还实现了进一步启用不显眼的 JavaScript 方法。但是,我在他们的网站上找不到任何示例。以前有人用过吗?
The author said: Version 3 of the Google Geocoding Web service is also implemented to further enable an unobtrusive javascript approach. However, I can not find any examples on their sites. Has anybody used it before?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个简单的例子。我之前没有使用过 django-gmapi ,所以这可能不是最好的方法。
将其重新粘贴到 Google 地图中,您就会看到One Exchange Plaza,就像我们一样通缉。
请注意,当我解析上面的结果时,我没有发现任何错误。您的应用程序可能应该将结果缓存在数据库中,以便您的页面加载不会因地理编码查询而减慢,并且不会达到任何 API 限制。
Here's a quick example. I haven't used
django-gmapi
before, so this might not be the best approach.Stick that back into google maps, and you get One Exchange Plaza, as we wanted.
Note I'm not catching any errors when I parse the results above. Your app should probably cache the results in the database, so that your page loads are not slowed down by geocoding queries, and so you don't hit any api limits.