我已使用HTTParty gem向Google Directions API发出服务器端请求,并在JSON中恢复正常响应。
我想知道我应该用哪个API来显示地图。 Directions API文档未指定。提前道歉,因为这是我第一次使用Google API开发。
我阅读的所有其他文档都说明了如何避免从Directions API获取数据,我想使用Directions API。
请求
@response = HTTParty.get("https://maps.googleapis.com/maps/api/directions/json?origin=#{params[:search][:origin]}&destination=#{params[:search][:destination]}key=#{ENV["google_api_key"]}")