1.0.0 • Published 7 years ago

country-coords v1.0.0

Weekly downloads
7
License
-
Repository
github
Last release
7 years ago

GPS Coordinates (latitude and longitude) for all iso-3166-1 countries

const coords = require('country-coords');

console.log(currencies.map(c => c.country+': '+c.latitude+','+c.longitude));
    // AD: 42.5,1.5
    // …

// export a Map
byCountry()

const byCountry = coords.byCountry();

byCountry.has('DK');
    // true

byCountry.get('DK');
    // { country: 'DK', latitude: 56, longitude: 10 }

See also: