都道府県を取得したいだけなので、マップは使わない。
上記をインストールして、コードはこれ。
<script>
created() {
if (navigator.geolocation){
navigator.geolocation.getCurrentPosition((position) => {
Vue.$geocoder.setDefaultMode('lat-lng');
var latLngObj = {
lat: position.coords.latitude,
lng: position.coords.longitude
};
let res = Vue.$geocoder.send(latLngObj, response => {
let d = response.results.splice(-2,1);
this.pref = d[0]['address_components'][0]['long_name'];//愛知県
});
});
} else {
//alert('非対応ブラウザ');
}
},
</script>