I am using world map via Google Map API and World map is going to repeat. I want to disable the same. I am using this code
<div id="map" style="width:100%;height:700px"></div>
<script>
var lat = 0;
var lang = 0;
var centerLatLng = new google.maps.LatLng(lat, lang);
map = new google.maps.Map(document.getElementById('map'), {
mapTypeId: google.maps.MapTypeId.ROADMAP,
center: centerLatLng,
scrollwheel: false,
zoom: 3,
minZoom: 1
});
</script>