EVOLUTION-NINJA
Edit File: mapcustom.js
$(function () { function initMap() { var location = new google.maps.LatLng(51.507351, -0.127758); var mapCanvas = document.getElementById('map'); var mapOptions = { center: location, zoom: 16, panControl: false, scrollwheel: false, mapTypeId: google.maps.MapTypeId.ROADMAP } var map = new google.maps.Map(mapCanvas, mapOptions); var markerImage = 'img/marker.png'; var marker = new google.maps.Marker({ position: location, map: map, icon: markerImage }); var contentString = '<div class="info-window">' + '<div class="info-content">' + '<p>This household has member whose profile is not public. Request access to see member’s information.</p>' + '<a href="#" class="btn replyBtn">Request Access</a>'+ '</div>' + '</div>'; var infowindow = new google.maps.InfoWindow({ content: contentString, maxWidth: 1000 }); marker.addListener('click', function () { infowindow.open(map, marker); }); // var styles = [{"featureType": "landscape", "stylers": [{"saturation": -100}, {"lightness": 65}, {"visibility": "on"}]}, {"featureType": "poi", "stylers": [{"saturation": -100}, {"lightness": 51}, {"visibility": "simplified"}]}, {"featureType": "road.highway", "stylers": [{"saturation": -100}, {"visibility": "simplified"}]}, {"featureType": "road.arterial", "stylers": [{"saturation": -100}, {"lightness": 30}, {"visibility": "on"}]}, {"featureType": "road.local", "stylers": [{"saturation": -100}, {"lightness": 40}, {"visibility": "on"}]}, {"featureType": "transit", "stylers": [{"saturation": -100}, {"visibility": "simplified"}]}, {"featureType": "administrative.province", "stylers": [{"visibility": "off"}]}, {"featureType": "water", "elementType": "labels", "stylers": [{"visibility": "on"}, {"lightness": -25}, {"saturation": -100}]}, {"featureType": "water", "elementType": "geometry", "stylers": [{"hue": "#ffff00"}, {"lightness": -25}, {"saturation": -97}]}]; //map.set('styles', styles); } google.maps.event.addDomListener(window, 'load', initMap); });