查找给定地址最近的 craigslist 网站
如何映射给定地址(zip)最近的 craigslist 站点?或者我正在考虑通过查看城市/州的 craigslist 网站列表来自己制作地图。
how to map closest craigslist site for a given address(zip)? or I was thinking of making that mapping myself by looking at the list of craigslist sites city-wise/state-wise.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实上,我认为最好的解决方案是获取 Craigslist 站点/城市的列表,使用某些地理编码 API 预先构建城市到坐标的映射(我想到了微型地理编码器,但雅虎和必应也提供了很好的解决方案),然后以一种使按最近排序变得容易的方式存储它(例如,MySQL 的地理空间扩展 或 MongoDB 的)。
Indeed, I believe the best solution is to get a list of Craigslist sites/cities, prebuild a mapping of cities to coordinates using some geocoding API (Tiny Geocoder comes to mind but Yahoo and Bing offer good solutions too), and then storing it in a way that makes sort-by-nearest easy (say, MySQL's geospatial extensions or MongoDB's).