Skip to content

Releases: doppelganger9/cordova-plugin-geocoder

v0.2.1 - Geocoder + Reverse Geocoder

17 Mar 16:33
Compare
Choose a tag to compare

This version adds a reverse geocoder method.
There is also a sample project which can be used to debug the plugin.
Added package.json to use cordova plugin add --fetch
See README.md for details.

v1.2.2 - Quality & result object changes

25 Jan 12:53
Compare
Choose a tag to compare

Adds Licensing, Readme, Release notes, testing with the sample app.
Breaking Changes to the contents of the result object (which by the way is now the same for iOS and android, now):

{
    "lat": 51.5237492,
    "lng": -0.1585802,
    "formattedAddress": "Sherlock Holmes Museum, 239 Baker Street, London, NW1 6XE, England",
    "streetNumber": "239",
    "street": "Baker Street",
    "postalCode": "NW1 6XE",
    "town": "London",
    "countryCode": "GB",
    "country": "United Kingdom"
}

v0.2.0 - multiple results returned

25 Jan 08:11
Compare
Choose a tag to compare

Added an optional argument to enable fetching multiple results from geocoder call.