How to convert lattitude to Street Address

Convert lattitude & langtitude

to

Street Address

Any one Help Me

I am working on Taxi App >>

URGENT

I think its not about ionic, its about your map and map services. if you use google maps try to search on google “find address from coordinates google maps” or something like this.

this.http.get('https://maps.googleapis.com/maps/api/geocode/json?key="YOUR_API_KEY"&latlng='+this.resp+','+this.resp1+'&sensor=true').map(res=>res.json()).subscribe(data => {
        console.log(data);
        var address = data.results[0];
        this.data.location=address.formatted_address; //formatted address contains street address 
      });
1 Like