Google Maps reverse geocoding

Does anyone have good code examples of how to implement Reverse Geocoding with Google Maps API (native preferably) and Ionic 2?

    import { Geocoder, GeocoderRequest } from 'ionic-native';

    let req: GeocoderRequest = { position: location }
    Geocoder.geocode(req).then((results)=>{
    })

see more information here…

2 Likes

Thanks, exactly the solution I’ve got as well! Works like a charm!