Skip to content
This repository was archived by the owner on Sep 4, 2021. It is now read-only.

Allow latitude and longitude as position properties #57

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,14 @@ public class MainActivity extends ReactActivity {
import Geocoder from 'react-native-geocoder';

// Position Geocoding
var NY = {
const NY = {
lat: 40.7809261,
lng: -73.9637594
lng: -73.9637594,

// Or, keys can be latitude/longitude

latitude: 40.7809261,
longitude: -73.9637594,
};

Geocoder.geocodePosition(NY).then(res => {
Expand Down
13 changes: 9 additions & 4 deletions js/geocoder.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,18 @@ export default {
},

geocodePosition(position) {
if (!position || !position.lat || !position.lng) {
return Promise.reject(new Error("invalid position: {lat, lng} required"));
if (!position || (!position.lat && !position.latitude) || (!position.lng && !position.longitude)) {
return Promise.reject(new Error("Invalid position: { lat|latitude, lng|longitude } required"));
}

return RNGeocoder.geocodePosition(position).catch(err => {
const lat = position.lat || position.latitude;
const lng = position.lng || position.longitude;

const latLng = { lat, lng };

return RNGeocoder.geocodePosition(latLng).catch(err => {
if (!this.apiKey) { throw err; }
return GoogleApi.geocodePosition(this.apiKey, position);
return GoogleApi.geocodePosition(this.apiKey, latLng);
});
},

Expand Down
8 changes: 0 additions & 8 deletions js/googleApi.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,18 +59,10 @@ function format(raw) {

export default {
geocodePosition(apiKey, position) {
if (!apiKey || !position || !position.lat || !position.lng) {
return Promise.reject(new Error("invalid apiKey / position"));
}

return this.geocodeRequest(`${googleUrl}?key=${apiKey}&latlng=${position.lat},${position.lng}`);
},

geocodeAddress(apiKey, address) {
if (!apiKey || !address) {
return Promise.reject(new Error("invalid apiKey / address"));
}

return this.geocodeRequest(`${googleUrl}?key=${apiKey}&address=${encodeURI(address)}`);
},

Expand Down