0.3.0 • Published 5 years ago

react-native-geocoding-simple v0.3.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

react-native-geocoding-simple

A geocoding module for React Native to transform a description of a location (i.e. street address, town name, etc.) into geographic coordinates (i.e. latitude and longitude) and vice versa.

This module uses Google Maps Geocoding API and requires an API key for purposes of quota management. Please check this link out to obtain your API key.

Install

npm install --save react-native-geocoding

Example

import Geocoder from 'react-native-geocoding';

// Initialize the module (needs to be done only once)
Geocoder.init("xxxxxxxxxxxxxxxxxxxxxxxxx"); // use a valid API key
// With more options
// Geocoder.init("xxxxxxxxxxxxxxxxxxxxxxxxx", {language : "en"}); // set the language

Geocoder.from("Colosseum")
		.then(json => {
			var location = json.results[0].geometry.location;
			console.log(location);
		})
		.catch(error => console.warn(error));

Geocoder.from(41.89, 12.49)
		.then(json => {
        		var addressComponent = json.results[0].address_components[0];
			console.log(addressComponent);
		})
		.catch(error => console.warn(error));

// Works as well :
// ------------

// location object
Geocoder.from({
	latitude : 41.89,
	longitude : 12.49
});

// latlng object
Geocoder.from({
	lat : 41.89,
	lng : 12.49
});

// array
Geocoder.from([41.89, 12.49]);

Error Codes

NameCodeDescription
NOT_INITIATED0Module hasn't been initiated. Call init function, and pass it your app's api key as parameter.
INVALID_PARAMETERS1Parameters are invalid.
FETCHING2Error wile fetching to server. The error's 'origin' property contains the fetch error.
PARSING3Error while parsing server response. The error's 'origin' property contains the response.
SERVER4Error from the server. The error's 'origin' property contains the response's body.

Release Notes

See CHANGELOG.md