0

我正在寻找一种可能性,以获得没有国名的建议。

我有以下js代码:

var options = {
    types: ['(cities)'],
        componentRestrictions: {country: "us"}
     };
autocomplete = new google.maps.places.Autocomplete((document.getElementById('autocomplete')), options);

结果是例如美国德克萨斯州奥斯汀

现在我只想有那个例子

预期结果是例如德克萨斯州奥斯汀

查看更多信息下面的图片链接 点击这里

你有想法吗?谢谢。迪拉吉甘加尔

4

1 回答 1

1

我对此进行了更多调查,并且在这里有更多信息:

要使用的服务: https ://developers.google.com/maps/documentation/javascript/places-autocomplete?hl=de#place_autocomplete_service

AutocompletePrediction 定义了服务返回的内容https://developers.google.com/maps/documentation/javascript/reference?hl=de#AutocompletePrediction

和这里的 PredictionTerm https://developers.google.com/maps/documentation/javascript/reference?hl=de#PredictionTerm是最初显示为结果的“描述”的一部分。

有趣的部分实际上是 PredictionTerm,它是整个地点建议的一部分。

如果您查看此示例:https ://developers.google.com/maps/documentation/javascript/examples/places-queryprediction

您可以轻松地获取建议结果的每个 PredictionTerm,如下面的片段所示:

predictions.forEach(function(prediction) {
     var li = document.createElement('li');
     var city = prediction.terms[2];
     var content = "Results: "+city;
     li.appendChild(document.createTextNode(prediction.description));
     document.getElementById('results').appendChild(li);
});

我举了一个例子:https ://jsfiddle.net/yfkpvf72/1/

于 2018-05-30T06:18:51.860 回答