Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 617 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 617 Bytes

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: