1.0.1 • Published 8 months ago

adresse-gouv v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
8 months ago

Wrapper for: api-adresse.data.gouv.fr

Downloads

Info

  • I'm not affiliate with the french gouv.

Install

npm install adresse-gouv

Usage

// Find an address by name
// Return an array of addresses order by relevance
const address = await Address.search("1 rue de l'equerre 51100");

// Find an address by latitude and longitude
// Return an array of addresses order by relevance
const address = await Address.reverse(48.866667, 2.333333);


// Calculate the distance between two addresses
const address1 = await Address.search("1 rue de l'equerre 51100");
const address2 = await Address.search("4 rue de l'equerre 51100");

const distanceBetween = address1[0].distanceFrom(address2[0]);
1.0.1

8 months ago

1.0.0

8 months ago