Google将地理编码请求与组件映射-语法

时间:2018-12-05 00:55:35

标签: javascript google-maps

我想使用组件过滤器发出google-maps请求,但语法不正确。

在开发人员站点上找不到。

Google-Maps Component-Filter

我现在有这个:

axios.get('https://maps.googleapis.com/maps/api/geocode/json',{
                    params:{
                      address:location,
                      language: 'de',
                      components: (country | AT),
                      key:'APIKEY'
                    }
                  })

由于在开发人员站点上的书面内容,您应该使用管道将对分开...

我也尝试过:

components: {country:AT}

components: ({country:AT})

没有一个有效。有谁可以帮助我吗。

0 个答案:

没有答案