什么是易趣使用的送货地址建议和验证?

时间:2018-02-07 10:45:50

标签: google-places-api ebay shipping usps googleplacesautocomplete

我正在开发一个电子商务网站,我需要经过验证的地址才能发货。

目前我只需要美国的解决方案。

我想像 eBay 那样实现它。我注意到eBay只列出了建议框中的有效地址,但google's auto-complete显示了所有内容。

请参阅以下屏幕截图。

易趣客人结账页面。 enter image description here

Google的自动填写地址 enter image description here

2 个答案:

答案 0 :(得分:0)

eBay送货地址建议基于之前针对相同地址前缀

处理的订单

答案 1 :(得分:0)

这是API的预期行为,来自Example。您无法更改其返回的数据的格式,并且数据集可能与ebay不同,因为它们可能正在使用其他服务。

另一方面,如果您想将搜索限制在美国,则可以这样做。通过添加组件限制:

var defaultBounds = new google.maps.LatLngBounds(
  new google.maps.LatLng(-33.8902, 151.1759),
  new google.maps.LatLng(-33.8474, 151.2631));

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

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