谷歌地图。按标题协调解析器

发布于 2024-11-24 19:53:57 字数 217 浏览 0 评论 0原文

我认为这是常见的任务。
我的数据库中有大约 2400 个带有滑雪胜地名称的原始数据。我必须解析每个原始搜索结果中点的坐标。有时,结果有多个点,我怎样才能出现结果?
建议执行此任务的最佳算法。 Google Maps API 可能有一些有用的方法来完成此任务。

I think it's common task.
I have about 2400 raws in database with titles of skiing resorts. I have to parse coordimate of point in search results of each raw. Sometimes, result has more than one point, how can i occurate results?
Suggest best algorytm for this task. May be Google Maps API has some helpfull methods for this task.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

就此别过 2024-12-01 19:53:57

我认为您可以考虑使用 JQuery 向服务器发送异步请求,服务器响应以检索数据。检索数据行后,您可以使用 JSON 构建这些位置,例如 [{x:1,y:1},{x:2,y:2}];这意味着两行数据。当服务器方法运行完成时,客户端会引发一个可以访问结果 JSON 的回调; JSON 可以由您手动解析为 Google API 中的 LatLng 对象。我想你知道其余的事情。

希望有帮助。

I think you can consider about JQuery to send a async request to the the server, the server responses for retrieving the data. After retrieving your rows of data, you can build these position with JSON which likes this [{x:1,y:1},{x:2,y:2}]; it means two rows of data. When the server method runs completely, the client side raises a callback which can access result JSON; the JSON can be manually parsed by you to the LatLng object in Google API right. I think you know the rest stuffs.

Hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文