0

我们正在运营一个网站 (www.taxileader.net/taxi-tegel.html),人们可以在其中预订从机场到目的地的出租车。

要预订和计算通常是机场的起始地址(我们的数据库中已经存在纬度/经度)与其目的地之间的距离,我们使用谷歌地图 v3

在“目的地字段”中,我们已经有一个自动完成功能,可以从客户所写的地址中提取邮政编码(或邮政编码),但我们还需要他们找到酒店的邮政编码。

我们用来获取地址信息的 API 调用是 geocoder v3,这是错误的,还是我们必须添加其他东西才能找到酒店?

$("#txt_indirizzo").autocomplete({
    //This bit uses the geocoder to fetch address values
    source : function(request, response) {
        geocoder.geocode({
            'address' : request.term,
            'bounds' : bound
        }, function(results, status) {
            response($.map(results, function(item) {
                var zip = '';
                for (var i in item.address_components) {
                    if (item.address_components[i].types[0] == 'postal_code' || item.address_components[i].types[1] == 'postal_code') {
                        zip = item.address_components[i].long_name;
                    }
                }
                if (zip == '') {
                    return;
                } else {
                    return {
                        value : item.formatted_address,
                        latitude : item.geometry.location.lat(),
                        longitude : item.geometry.location.lng(),
                        zip : zip
                    }
                }

            }));
        })
    },
    //This bit is executed upon selection of an address
    select : function(event, ui){
        if (tipoDiTrasf == 2) {
            return;
        }

        chk_txt_indirizzo = true;
        if (ui.item.zip != '') {

            chkPostcode(ui.item.zip, ui.item.latitude, ui.item.longitude, ui.item.value, '#txt_indirizzo');

        } else {
            alert('Questo non è un indirizzo valido');
            setTimeout('$("#txt_indirizzo").val("")', 5);
        }
        tab(1);
    },
    change : function() {
        if (!chk_txt_indirizzo) {
            $("#txt_indirizzo").val('').data("autocomplete").term = "";
            zip_indirizzo = pointLat2 = pointLon2 = setIndirizzo = false;
            putondinNam();

        }
    }
});

至少有没有办法让谷歌地图只自动完成到城市?

我的意思是在“城市字段”中,我们只想显示城市而不是地址

非常感谢

4