vue2-location-picker

1.2.0 • Public • Published

vue2-location-picker

NPM

npm npm npm npm

Location Picker component for Vue.js 2

Works with Vue 2.*

Install & basic usage

$ npm install vue2-location-picker --save

Import Vue2LocationPicker (Recommended)

  <script src="https://maps.googleapis.com/maps/api/js?key=API_KEY&libraries=places" async="" defer=""></script> 
import * as LocationPicker from 'vue2-location-picker'
Vue.use(LocationPicker, {
    installComponents: false, // If true, create it globally
})
<template>
    <location-picker
      v-model="location"
      :options="options">
    </location-picker>
</template>
 
 
<script>
import {LocationPicker} from 'vue2-location-picker' // if installComponents is false
 
export default {
 name: 'App',
 components: {LocationPicker}, // if installComponents is false
 data: function() {
  return {
    location: {
      lat: 41.0082376,
      lng: 28.97835889999999
    },
    options: { // is not required
      map: {/** other map options **/},
      marker: { /** marker options **/ },
      autocomplete: { /** autocomplete options **/ }
    },
  }
 }
}
</script>

License

vue2-location-picker is open-sourced software licensed under the MIT license

Package Sidebar

Install

npm i vue2-location-picker

Weekly Downloads

27

Version

1.2.0

License

MIT

Unpacked Size

9.74 kB

Total Files

5

Last publish

Collaborators

  • buraktekin