使用javascript更新Google Places API结果

时间:2013-12-06 05:10:40

标签: javascript php google-places-api

我正在使用Google Places API来使用javascript获取位置详细信息。

var request = {
            input: request.term,
            componentRestrictions: {country: 'us'},
            types: ['geocode']};

service.getPlacePredictions(request, function (predictions, status) {

    if (status != 'OK') {
        return;
    }
    response($.map(predictions, function (prediction, i) {
        var cty_st = '';

        var pred_terms_lnt = prediction.terms.length;

        if(pred_terms_lnt >= 3){
            cty_st = prediction.terms[pred_terms_lnt - 3].value+', '+prediction.terms[pred_terms_lnt - 2].value;
        }
        else if(pred_terms_lnt >= 2){
            cty_st = prediction.terms[pred_terms_lnt - 2].value;
        }
        else{
            cty_st = prediction.description.replace(", United States", "");
        }

        return {
            label: cty_st,
            value: cty_st,
            ref: prediction.reference,
            id: prediction.id
        }
  }));
 });

我想仅显示所提取结果中的城市和州代码,当我搜索某个位置时,我会在结果中找到重复的城市,状态编码器。我想从结果中删除这些重复项。怎么做?

enter image description here

从上面的结果中,您可以看到最后两个结果具有相同的城市和州代码。我想只展示一次。

1 个答案:

答案 0 :(得分:0)

而不是types: ['geocode']使用types: ['(cities)']