0.1.0 • Published 8 years ago

cordova-plugin-clgeocoder v0.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

cordova-plugin-clgeocoder

This plugin adds a geocoder property to the navigator global. Call reverseGeocodeLocation() to transform a latitude and longitude into an address using Apple's CoreLocation service:

navigator.geocoder.reverseGeocodeLocation(latitude, longitude, success, failure);
function success(result) {
  // ...
}
function failure() {
  // ...
}

Installation

cordova plugin add cordova-plugin-clgeocoder