I am inserting google maps into my page. I used the code straight from this post: HERE With changes to the coordinates and zoom. But on my page the increase/decrease slider is not showing up like in the screenshot example given from the original posting.
<script type="text/javascript">
var locations = [
['Lil Builders', 40.845816, -73.168143, 1],
];
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 14,
center: new google.maps.LatLng(40.845816, -73.168143),
mapTypeId: google.maps.MapTypeId.ROADMAP
});
var infowindow = new google.maps.InfoWindow();
var marker, i;
for (i = 0; i < locations.length; i++) {
marker = new google.maps.Marker({
position: new google.maps.LatLng(locations[i][2], locations[i][3]),
map: map
});
google.maps.event.addListener(marker, 'click', (function(marker, i) {
return function() {
infowindow.setContent(locations[i][0]);
infowindow.open(map, marker);
}
})(marker, i));
}
screen shot from what I am seeing is here
my page live is HERE
Any ideas as to why? Thanks!!