JSPM

extract-country-state-city-from-zip1

1.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q25283F
  • License ISC

This package extracts country, state and city from any zip code, user need to provide zip code and google api access key

Package Exports

  • extract-country-state-city-from-zip1

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (extract-country-state-city-from-zip1) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Need to get country, state , city and area on entering pincode value in js

How to use

npm i extract-country-state-city-from-zip

var getAdderss = require('extract-country-state-city-from-zip');

getAdderss(248001, 'AIzaSyDqZ5w4dZlSKCEnARbMsSQH353P8KAHi54',
(err, res) => console.log(err, res))

Result

{
  results: [
    {
      address_components: [Array],
      formatted_address: 'Uttarakhand 248001, India',
      geometry: [Object],
      place_id: 'ChIJAVAhzUYoCTkRmAQ1wWM_p1o',
      types: [Array]
    }
  ],
  status: 'OK'
}
null {
  city: { long: 'Dehradun', short: 'Dehradun' },
  state: { long: 'Uttarakhand', short: 'UK' },
  country: { long: 'India', short: 'IN' },
  formatted_address: 'Uttarakhand 248001, India',
  location: { lat: 30.3345816, lng: 78.0537813 }
}