好了,所以基本上我使用离子当地人着用于获取纬度和我的输入位置的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? 请不要提供使用本地人,因为我想只有在浏览器平台部署此的任何解决方案。