自动完成点击地理编码

时间:2012-11-12 11:32:16

标签: javascript google-maps google-maps-api-3 google-api geocode

这是我正在处理的代码:

http://jsfiddle.net/njDvn/75/

var GeoCoded = {done: false};

$(document).ready(function(){
    console.log('ready!');
    autosuggest();
    console.log($('#myform input[type="submit"]'));
    $('#myform').on('submit',function(e){


        if(GeoCoded.done)
            return true;

        e.preventDefault();
        console.log('submit stopped');
        var geocoder = new google.maps.Geocoder();
        var address = document.getElementById('location').value;

        $('#myform input[type="submit"]').attr('disabled',true);

        geocoder.geocode({
            'address': address
        }, 
        function (results, status) {
            if (status == google.maps.GeocoderStatus.OK) {
                var latLng = results[0].geometry.location;
                $('#lat').val(results[0].geometry.location.lat());
                $('#lng').val(results[0].geometry.location.lng());
                //if you only want to submit in the event of successful geocoding, you can only trigger submission here.
                GeoCoded.done = true;
                $('#myform').submit();
            } else {
                console.log("Geocode was not successful for the following reason: " + status);
                //enable the submit button
                $('#myform input[type="submit"]').attr('disabled',false);
            }


        });        

    });    

});

这就是我想要的方式但是我想在有人点击自动完成时完成地理编码。因此,当他们输入内容并单击autosuggest列表中的建议时,它实际上会在单击结果时完成地理编码调用。

如果有人能告诉我这是否可能,我会非常感激,因为我自己无法弄清楚如何做到这一点。

1 个答案:

答案 0 :(得分:1)

自动填充功能自动包含地理编码功能。 Example here.

修改

以下是该示例的要点:

创建自动完成控件的关键行是:

var input = document.getElementById('searchTextField');
var options = {
    types: [],
    componentRestrictions: {country: 'us'}
};

var autocomplete = new google.maps.places.Autocomplete(input, options);

您还需要加载Places库:

<script src="https://maps.googleapis.com/maps/api/js?sensor=false&libraries=places"></script>

并在您的HTML中:

<input id="searchTextField" type="text" size="50" value="">

顺便说一句,您没有“向地理编码器添加自动填充功能”。地方自动填充功能课程包括地理编码功能。