如何获取从谷歌的网址地图API,而不是添加地理编码功能的Web应用程序离子地理编码数据?(How t

2019-11-05 06:08发布

好了,所以基本上我使用离子当地人着用于获取纬度和我的输入位置的LNG。 但是,随着当地人只适用于Android和IOS,我想要的东西API样的,我可以在任何平台使用,这将适当还给我经纬度位置的郎事情。 搜索后,我来到了有谷歌的URL API

http://maps.google.com/maps/api/geocode/json?address='+ term +'CA&sensor=false

所以我试图用。 但同时称这是通过我的代码。 它给未定义输入。

这里是我的代码:

getLocation(term){


return new Promise(resolve => {
  this.http.get('http://maps.google.com/maps/api/geocode/json?address='+ term +'CA&sensor=false')
    .map(res => res.json())
    .subscribe(data => {
      console.log(data.results[0]);
      resolve(data);
    });
});

}

另外我这样从另一个函数调用它:

    initMap() {

        this.getLocation('seattle');
        //Also I want to use lat lang here. Please provide proper way to get that.

}

如何使用离子那个URL API? 请不要提供使用本地人,因为我想只有在浏览器平台部署此的任何解决方案。

文章来源: How to fetch geocode data from URL of maps API of google instead of adding geocode function in IONIC WebAPP?