JSPM

@pderas/vue2-geocoder

1.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 463
  • Score
    100M100P100Q103634F
  • License MIT

A vue 2 plugin to interact with google maps api

Package Exports

  • @pderas/vue2-geocoder

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 (@pderas/vue2-geocoder) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Vue Geocoder

A vue.js plugin to interact with Google Maps API.

How to initialize Vue Geocoder

A vue 2 plugin to interact with google maps api that will query the google maps API to retrieve location results.

import Geocoder from "@pderas/vue2-geocoder";

Vue.use(Geocoder, {
    defaultCountryCode: null, // e.g. 'CA'
    defaultLanguage:    null, // e.g. 'en'
    defaultMode:        'address', // or 'lat-lng'
    googleMapsApiKey:   GOOGLE_MAPS_API_KEY
});

Usage

General usage: Vue.$geocoder.[FUNCTION_NAME]

Address Example
Vue.$geocoder.setDefaultMode('address');      // this is default
var addressObj = {
    address_line_1: '1600 Amphitheatre Parkway',
    address_line_2: '',
    city:           'Mountain View',
    state:          'CA',               // province also valid
    zip_code:       '94043',            // postal_code also valid
    country:        'United States'
}
Vue.$geocoder.send(addressObj, response => { console.log(response) });

Its important to note that even if your country is set in the address object to the specified country, it is still possible to pull results from other countries. If you want to limit the results to a specific country, you must set the country code in the geocoder.

Vue.$geocoder.setDefaultCountryCode('CA');

Click here for Country Codes

Lat Lng Example
Vue.$geocoder.setDefaultMode('lat-lng');
var latLngObj = {
    lat: 37.421512,
    lng: -122.084101
}
Vue.$geocoder.send(latLngObj, response => { console.log(response) });
Language

To get result in your language you should set language code in the geocoder

Vue.$geocoder.setDefaultLanguage('en') // this is default

License

This project is covered under the MIT License. Feel free to use it wherever you like.