Socket
Socket
Sign inDemoInstall

@p-j/geocodejson-googleapis

Package Overview
Dependencies
34
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @p-j/geocodejson-googleapis

GeocodeJSON adapter for Google Maps Geocoding API


Version published
Weekly downloads
2
increased by100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

GeocodeJSON

GeocodeJSON packages are a collection of small utility to work with geocoding API such as Google Geocoding API, HERE Geocoding API, Opencage, etc... As well as self hosted solution like Mimirsbrunn.

These packages provide a simple inteface for geocoding addresses exposing the underlying APIs filtering capabilities while returning all response in a standard format: GeocodeJSON, a GeoJSON extension.

These packages leverage cross-fetch to work on both backend & frontend

lerna lerna codecov Build Status FOSSA Status

@p-j/geocodejson-googleapis

version changelog

Geocode & format to GeocodeJSON using Google Geocoding API

Usage

import { geocode, parse, getFetchArgs } from '@p-j/geocodejson-googleapis'

// if you want to use your own fetch wrapper / http library
const { url, options } = getFetchArgs({
  apiKey: 'YOUR-GOOGLE-API-KEY-HERE',
  address: 'Place de la République, Paris, France',
  language: 'fr',
  bounds: {
    northeast: { lat: 48.8689734302915, lng: 2.3657448 },
    southwest: { lat: 48.8662754697085, lng: 2.3622065 },
  },
  componentRestrictions: { locality: 'Paris', country: 'FR' },
})
// url = 'https://maps.googleapis.com/maps/api/geocode/json?address=Place+de+la+R%C3%A9publique%2C+Paris%2C+France&bounds=48.8689734302915%2C2.3657448%7C48.8662754697085%2C2.3622065&components=locality%3AParis%7Ccountry%3AFR&key=YOUR-GOOGLE-API-KEY-HERE&language=fr'
// options = { method: 'GET' }

// using cross-fetch; also adds the "query" property to the response
const rawResponseFromGoogleApis = await geocode({
  apiKey: 'YOUR-GOOGLE-API-KEY-HERE',
  address: 'Place de la République, Paris, France',
  language: 'fr',
  filters: {
    bounds: {
      northeast: { lat: 48.8689734302915, lng: 2.3657448 },
      southwest: { lat: 48.8662754697085, lng: 2.3622065 },
    },
    componentRestrictions: { locality: 'Paris', country: 'FR' },
  },
})
// {
//   "results": [
//     {
//       "address_components": [
//         {
//           "long_name": "Place de la République",
//           "short_name": "Place de la République",
//           "types": ["route"]
//         },
//         {
//           "long_name": "Paris",
//           "short_name": "Paris",
//           "types": ["locality", "political"]
//         },
//         {
//           "long_name": "Département de Paris",
//           "short_name": "Département de Paris",
//           "types": ["administrative_area_level_2", "political"]
//         },
//         {
//           "long_name": "Île-de-France",
//           "short_name": "IDF",
//           "types": ["administrative_area_level_1", "political"]
//         },
//         {
//           "long_name": "France",
//           "short_name": "FR",
//           "types": ["country", "political"]
//         }
//       ],
//       "formatted_address": "Place de la République, Paris, France",
//       "geometry": {
//         "bounds": { "northeast": { "lat": 48.8687564, "lng": 2.3657448 }, "southwest": { "lat": 48.8664925, "lng": 2.3622065 } },
//         "location": { "lat": 48.8673936, "lng": 2.3634144 },
//         "location_type": "GEOMETRIC_CENTER",
//         "viewport": { "northeast": { "lat": 48.8689734302915, "lng": 2.3657448 }, "southwest": { "lat": 48.8662754697085, "lng": 2.3622065 } }
//       },
//       "place_id": "ChIJVVCk6Qhu5kcRAWZzEPRM3Kg",
//       "types": ["route"]
//     }
//   ],
//   "status": "OK",
//   "query": "Place de la République, Paris, France"
// }

const geocodeJSONFormatedResults = parse(rawResponseFromGoogleApis)
// {
//   "geocoding": {
//     "version": "0.1.0",
//     "licence": "https://cloud.google.com/maps-platform/terms/#3.-license.",
//     "attribution": "Powered by Google",
//     "query": "Place de la République, Paris, France"
//   },
//   "type": "FeatureCollection",
//   "features": [
//     {
//       "type": "Feature",
//       "bbox": [2.3622065, 48.8662754697085, 2.3657448, 48.8689734302915],
//       "properties": {
//         "geocoding": {
//           "accuracy": 100,
//           "type": "street",
//           "label": "Place de la République, Paris, France",
//           "geohash": "u09wjb0cp",
//           "street": "Place de la République",
//           "city": "Paris",
//           "county": "Département de Paris",
//           "state": "Île-de-France",
//           "country": "France"
//         }
//       },
//       "geometry": {
//         "type": "Point",
//         "coordinates": [2.3634144, 48.8673936]
//       }
//     }
//   ]
// }

FAQs

Last updated on 26 Oct 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc