Skip to content

Instantly share code, notes, and snippets.

@leny
Created July 14, 2018 10:13
Show Gist options
  • Save leny/090c71864433ec23172226c9943d44d9 to your computer and use it in GitHub Desktop.
Save leny/090c71864433ec23172226c9943d44d9 to your computer and use it in GitHub Desktop.
const getGeolocationFromAddress = ({city, position: {latitude, longitude}}) => {
if (latitude && longitude) {
return `${city} (${latitude}, ${longitude})`;
}
return `${city}`;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment