Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mavagio/country-iso-to-coordinates

Map country ISO code to coordinates and name
https://github.com/mavagio/country-iso-to-coordinates

Last synced: about 1 month ago
JSON representation

Map country ISO code to coordinates and name

Awesome Lists containing this project

README

        

### Description
Get country latitude and longitude and name based on ISO code.

### Example
```
npm i country-iso-to-coordinates
```
```js

import IsoToLatLong from 'country-iso-to-coordinates';

const country = IsoToLatLong['GB'];

console.log(country); // { coordinate: [ '55.378051', '-3.435973' ], name: 'United Kingdom' }

```