npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

open-street-map-reverse-geo-node-client

v1.0.11

Published

[![Build Status](https://travis-ci.com/damienmarchandfr/open-street-map-reverse-geo-node-client.svg?branch=master)](https://travis-ci.com/damienmarchandfr/open-street-map-reverse-geo-node-client)

Downloads

10

Readme

Open Street Map Reverse GeoCoding

Build Status

A free reverse geocoding service.

This library can be used to get location information from latitude and longitude for free. To get faster results, it is possible to enable the cache feature to store request results. This allows to reduce the number of API calls. It uses the OSM fundation API: https://wiki.osmfoundation.org/wiki/Main_Page

Open Street Map Reverse GeoCoding is a free service. Use it with moderation.

Installation

To install Open Street Map Reverse GeoCoding, run the following command:

yarn add open-street-map-reverse-geo-node-client

or

npm install open-street-map-reverse-geo-node-client --save

Stop Callbacks! Use Promises

This library does not use callbacks. Use promises instead.

Use the library with TypeScript

( see src/tests/index.test.ts file )

import { ReverseGeocoder } from  '.';

const  geo  =  new  ReverseGeocoder()
const result = await geo.getReverse('0','0')

The response:

{
    placeId:  '91511633',
    displayName:  'Opéra Municipal, Place de Jaude, Bonnabaud, Clermont-Ferrand, Puy-de-Dôme Auvergne-Rhône - Alpes, France métropolitaine, 63037, France',
    lat:  '45.77755365',
    lng:  '3.08255435728528',
    address:
    { 
	    theatre:  'Opéra Municipal',
	    pedestrian:  'Place de Jaude',
	    suburb:  'Bonnabaud',
	    city:  'Clermont-Ferrand',
	    county:  'Clermont-Ferrand',
	    state:  'Auvergne-Rhône-Alpes',
	    country:  'France',
	    postcode:  '63037',
	    countryCode:  'fr'
    },
    fromCache :  false
}

Use the library with JavaScript

const Geo = require('./dist')

const reverse = new Geo.ReverseGeocoder()

reverse.getReverse('45.777210', '3.082520')
	.then((location)=>{console.log(location)})
	.catch(err=>{console.error(err)})

Enable cache

Cache is enabled by default. To disable this option:

geo.disableCache()

Configure

You can configure your reverse geocoder instance.

const fakeGeo = new ReverseGeocoder({
	cacheIsEnabled : false, // Enable or disable cache
	callApi : false, // Set to true for your tests
	maxCacheSize : 200 // Number of elements saved in memory
})

Mock

If you want to run your test without calling API you can configure your reverse geocoder instance.

const fakeGeo = new ReverseGeocoder({
	cacheIsEnabled : false,
	callApi : false
})

Run tests

yarn run test

or

npm run test