xkjyeah / vue-google-maps

Google maps component for vue with 2-way data binding
https://xkjyeah.github.io/vue-google-maps/
1.88k stars 474 forks source link

How i can restict my Map TO USA only -strictBounds true #673

Open pakcybershagufta opened 4 years ago

pakcybershagufta commented 4 years ago

Donot allow user to move map outside of usa

we dont this is custom js like below

var map; function initMap() { map = new google.maps.Map(document.getElementById('map'), { center: {lat: 46.818188, lng: 8.227512}, minZoom: 7, maxZoom: 14, zoom: 7, restriction: { latLngBounds: { east: 10.49234, north: 47.808455, south: 45.81792, west: 5.95608 }, strictBounds: true }, }); }

joe94113 commented 2 years ago

Excuse me, did you find the answer?