Peace be upon you all
I have a simple question. I want to embed a Google map in my website in which it only shows USA map without allowing users to zoom out from USA map to somewhere else. Most importantly i want it to show only names of states with default view and display only corresponding names of cities by zooming when clicking on particular state not anything else.
So is there a way to do that or i have to look for some other services?? Any idea, suggestion or help will be appreciated.
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script>
function initialize() {
var myLatlng = new google.maps.LatLng(39.574912, -102.344687);
var mapOptions = {
zoom: 4,
maxZoom: 7,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
<div id="map-canvas"></div>