使用谷歌地图computeDistanceBetween获取最近的位置返回NaN [英] Use google maps computeDistanceBetween to get the closest location returns NaN

查看:225
本文介绍了使用谷歌地图computeDistanceBetween获取最近的位置返回NaN的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

好的,我在测试网站上设置了地图和自动填充字段。

Ok so I have set up a map and an autocomplete field on a testing site.

我的目标是让用户输入他/她的地址到领域,然后当他/她点击确认时,根据所提供的信息制定出最接近他们的商店。

My goal is to get the user to input his/her address into the field and then when he/she clicks confirm work out the closest store to them based on the information provided.

我有每个商店的经纬度自动完成我现在有lat / long的用户地址,但是当我使用文档中提供的computeDistanceBetween方法时,我得到了NaN而不是期望的结果。

I have the lat/long for each store and with the help of autocomplete I now have the lat/long of the users address but when I use the computeDistanceBetween method provided in the documentation I get NaN instead of a desired result.

这里是一个链接到测试网站的想法 - http://dev.touch-akl.com/map /

Here is a link to the test site to get an idea - http://dev.touch-akl.com/map/

以下是我到目前为止所尝试的内容

And Below is what I have tried so far

    //----------------------------------------------------------------
    //--- Search Box -------------------------------------------------

    var input = document.getElementById('address');
    var $confirm = $('#confirm');

    var options = {
       types: ['geocode'],
       componentRestrictions: {country: 'nz'}//Turkey only
    };        

    var autocomplete = new google.maps.places.Autocomplete(input,options);
    autocomplete.bindTo('bounds', map);

    $confirm.click(function(){

        var _street = $('#address').val();
        var place = autocomplete.getPlace();
        var _coordinates = place.geometry.location.toString();
        var _delivery = _coordinates.substring(1, _coordinates.length - 1);
        var _kCord = '-36.874694,174.735292';
        var _pCord = '-36.858317,174.782284'

        console.log(_coordinates);
        console.log(_delivery);

        console.log(google.maps.geometry.spherical.computeDistanceBetween(_pCord, _delivery));
        console.log(google.maps.geometry.spherical.computeDistanceBetween(_kCord, _delivery));


    });


推荐答案

google.maps.geometry.spherical.computeDistanceBetween要求你为它提供两个google.maps.LatLng对象,而你使用的是字符串,这是行不通的。以下应该...

google.maps.geometry.spherical.computeDistanceBetween requires that you feed it two google.maps.LatLng objects whereas you are using strings, and that won't work. The following should...

$confirm.click(function(){
    var _street = $('#address').val();
    var place = autocomplete.getPlace();
    var _coordinates = place.geometry.location; //a google.maps.LatLng object
    var _kCord = new google.maps.LatLng(-36.874694, 174.735292);
    var _pCord = new google.maps.LatLng(-36.858317, 174.782284);

    console.log(_coordinates);

    console.log(google.maps.geometry.spherical.computeDistanceBetween(_pCord, _coordinates));
    console.log(google.maps.geometry.spherical.computeDistanceBetween(_kCord, _coordinates));
});

这篇关于使用谷歌地图computeDistanceBetween获取最近的位置返回NaN的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆