3

看起来很简单,但我很挣扎。

这是我目前所看到的。我显示位置坐标只是为了测试它的工作。但我也想坚持数据库,因此 ajax 调用。我这样做是正确的方式还是有更简单或更好的方法?

<p id="demo">Click the button to get your coordinates:</p>
<button onclick="getLocation()">Try It</button>
<script>
    var x=document.getElementById("demo");
    var lat;
    var long;
    function getLocation()
    {
        if (navigator.geolocation)
        {
            navigator.geolocation.getCurrentPosition(showPosition);

        }
        else{x.innerHTML="Geolocation is not supported by this browser.";}
    }
    function showPosition(position)
    {
        lat = position.coords.latitude;
        long = position.coords.longitude;
        x.innerHTML="Latitude: " + lat +
                "<br>Longitude: " + long;

        $.ajax({
            type: 'POST',
            url: 'http://localhost:3000/locations',
            data: { lat: lat, long: long },
            contentType: 'application/json',
            dataType: 'json'

        });
    }
</script>
4

3 回答 3

7

您可以尝试一种“更简单”的方式,使用 geocoder gem,它提供了多种方法来获取用户位置,其中一种是通过请求。

request.location.city => Medellin
request.location.country => Colombia

您可以在以下链接中找到有用的信息

Railscast

官方网页

GitHub

于 2013-10-15T15:47:53.027 回答
2

看看这个答案。基本上,只需通过 cookie 设置地理位置并从控制器中的 cookie 中读取纬度和经度。

于 2013-10-15T15:01:07.720 回答
0

我是这样做的:

控制器:

def location
    respond_to do |format|
      format.json {
        lat = params["lat"]
        lng = params["lng"]
        radius = 5000
        type = "restraunt"
        key = "-"
        url = "https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=#{lat},#{lng}&radius=#{radius}&types=#{type}&key=#{key}"
        data = JSON.load(open(url))
        render json: { :data => data }
      }
    end
  end

路线.rb:

get "/location" => "application#location"

看法:

function getLocation(){
    if (navigator.geolocation) {
        navigator.geolocation.getCurrentPosition(function (position){
          $.ajax({
            type: 'GET',
            url: '/location',
            data: { lat: position.coords.latitude, lng: position.coords.longitude },
            contentType: 'application/json',
            dataType: 'json'
            }).done(function(data){
               console.log(data)
            });
        });
    }
  }
于 2016-05-26T17:55:35.270 回答