1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- // When the window has finished loading create our google map below
- google.maps.event.addDomListener(window, 'load', init);
- function init() {
- // Basic options for a simple Google Map
- // For more options see: https://developers.google.com/maps/documentation/javascript/reference#MapOptions
- var mapElement = document.getElementById('google-map');
- var map_lat = mapElement.getAttribute('data-latitude');
- var map_lon = mapElement.getAttribute('data-longitude');
- var map_title = mapElement.getAttribute('data-map-title');
- var map_zoom = mapElement.getAttribute('data-map-zoom');
- var mapOptions = {
- // How zoomed in you want the map to start at (always required)
- zoom: parseInt(map_zoom),
- // The latitude and longitude to center the map (always required)
- center: new google.maps.LatLng(map_lat, map_lon),
- // How you would like to style the map.
- // This is where you would paste any style found on Snazzy Maps.
- styles: [{ "featureType": "water", "elementType": "geometry", "stylers": [{ "color": "#e9e9e9" }, { "lightness": 17 }] }, { "featureType": "landscape", "elementType": "geometry", "stylers": [{ "color": "#f5f5f5" }, { "lightness": 20 }] }, { "featureType": "road.highway", "elementType": "geometry.fill", "stylers": [{ "color": "#ffffff" }, { "lightness": 17 }] }, { "featureType": "road.highway", "elementType": "geometry.stroke", "stylers": [{ "color": "#ffffff" }, { "lightness": 29 }, { "weight": 0.2 }] }, { "featureType": "road.arterial", "elementType": "geometry", "stylers": [{ "color": "#ffffff" }, { "lightness": 18 }] }, { "featureType": "road.local", "elementType": "geometry", "stylers": [{ "color": "#ffffff" }, { "lightness": 16 }] }, { "featureType": "poi", "elementType": "geometry", "stylers": [{ "color": "#f5f5f5" }, { "lightness": 21 }] }, { "featureType": "poi.park", "elementType": "geometry", "stylers": [{ "color": "#dedede" }, { "lightness": 21 }] }, { "elementType": "labels.text.stroke", "stylers": [{ "visibility": "on" }, { "color": "#ffffff" }, { "lightness": 16 }] }, { "elementType": "labels.text.fill", "stylers": [{ "saturation": 36 }, { "color": "#333333" }, { "lightness": 40 }] }, { "elementType": "labels.icon", "stylers": [{ "visibility": "off" }] }, { "featureType": "transit", "elementType": "geometry", "stylers": [{ "color": "#f2f2f2" }, { "lightness": 19 }] }, { "featureType": "administrative", "elementType": "geometry.fill", "stylers": [{ "color": "#fefefe" }, { "lightness": 20 }] }, { "featureType": "administrative", "elementType": "geometry.stroke", "stylers": [{ "color": "#fefefe" }, { "lightness": 17 }, { "weight": 1.2 }] }]
- };
- // Get the HTML DOM element that will contain your map
- // We are using a div with id="map" seen below in the <body>
- var mapElement = document.getElementById('google-map');
- // Create the Google Map using our element and options defined above
- var map = new google.maps.Map(mapElement, mapOptions);
- // Let's also add a marker while we're at it
- var marker = new google.maps.Marker({
- position: new google.maps.LatLng(map_lat, map_lon),
- map: map,
- title: map_title
- });
- var map_locations = document.getElementById("map-address");
- map_locations.addEventListener("click",function(e){
- e.preventDefault()
- var newlat = e.target.getAttribute('data-latitude');
- var newlon = e.target.getAttribute('data-longitude');
- var newtitle = e.target.getAttribute('data-map-title');
- var newzoom = e.target.getAttribute('data-map-zoom');
-
- marker.setPosition( new google.maps.LatLng( newlat, newlon ) );
- marker.setTitle(newtitle);
- map.panTo( new google.maps.LatLng( newlat, newlon ) );
- map.setZoom( parseInt(newzoom) );
- },false);
- }
-
|