1.2.0 • Published 6 years ago

vue2-location-picker v1.2.0

Weekly downloads
59
License
MIT
Repository
github
Last release
6 years ago

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

1.2.0

6 years ago

1.1.9

6 years ago

1.1.8

6 years ago

1.1.6

6 years ago

1.1.5

6 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.0

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago