将坐标转换为地图地址

发布于 2024-12-09 07:21:31 字数 169 浏览 0 评论 0原文

我正在开发 GPS 服务器和跟踪系统:

  1. 如何将从 GPS 跟踪设备获取的纬度和经度数据转换为地址数据,以便客户端应用程序报告显示道路名称而不是坐标?
  2. 如何映射坐标数据,以便跟踪器位置显示在地图上,即谷歌地图或矢量地图上?

我将非常感谢您的回答或建议

I am developing a GPS Server and tracking system:

  1. How can I convert latitudes and longitudes data got from a GPS tracking device into address data so that the client application report be displaying road names instead of coordinates?
  2. How can I map the coordinate data so that tracker position be displayed on a map i.e. google maps or vector maps?

I'll highly appreciate your answers or suggestions

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

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

发布评论

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

评论(2

梦里泪两行 2024-12-16 07:21:31

在这里您可以找到如何将 GPS 坐标转换为php 的完整地址?

在 Ruby 中:

require 'curb'

require 'json'

class GpsUtils

GOOGLE_MAP_URL = "http://maps.googleapis.com/maps/api/geocode/json?latlng="

class << self

  # Return the address
  def convert_from_gps_coordinates_to_address(lat, long)
    response = Curl.get(GOOGLE_MAP_URL + lat + "," + long)
    json_response = JSON.parse(response.body_str)
    # Read the full address (formatted_address) from json_response
    json_response["results"].first["formatted_address"] 
  end 

end 

end

GpsUtils.convert_from_gps_coordinates_to_address("19.43250", "-99.1330"

Here you find How to convert GPS coordinates to a full address with php?

And in Ruby:

require 'curb'

require 'json'

class GpsUtils

GOOGLE_MAP_URL = "http://maps.googleapis.com/maps/api/geocode/json?latlng="

class << self

  # Return the address
  def convert_from_gps_coordinates_to_address(lat, long)
    response = Curl.get(GOOGLE_MAP_URL + lat + "," + long)
    json_response = JSON.parse(response.body_str)
    # Read the full address (formatted_address) from json_response
    json_response["results"].first["formatted_address"] 
  end 

end 

end

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