var latitude = "43.111043"; var longitude = "-77.548722"; var site_title = "Palazzo Jewelers"; var address = "2851 Monroe Ave
Rochester, NY 14618"; var address_url = "2851+Monroe+Ave%2C+Rochester%2C+NY+14618"; var map; function initialize() {// Create an array of styles. $('.map_canvas').each(function() { var styles = [ { stylers: [ { "saturation": -65 }, { "hue": "#00b2ff" } ] } ]; // Create a new StyledMapType object, passing it the array of styles, // as well as the name to be displayed on the map type control. var styledMap = new google.maps.StyledMapType(styles, {name: "Styled Map"}); var latlng = new google.maps.LatLng(latitude, longitude); // Create a map object, and include the MapTypeId to add // to the map type control. var mapOptions = { zoom: 15, center: latlng, mapTypeControlOptions: { mapTypeIds: [google.maps.MapTypeId.ROADMAP, 'map_style'] } }; var map = new google.maps.Map(this, mapOptions); //Associate the styled map with the MapTypeId and set it to display. map.mapTypes.set('map_style', styledMap); map.setMapTypeId('map_style'); var marker = new google.maps.Marker({ position: latlng, map: map, title: site_title, icon: '/modules/contact/images/marker.png' }); var directionsURL = 'https://maps.google.com?daddr='+address_url; var contentString = ''+site_title+'
'+address+'
Get Directions'; var infowindow = new google.maps.InfoWindow({ content: contentString }); google.maps.event.addListener(marker, 'click', function() { infowindow.open(map, marker); }); }); } google.maps.event.addDomListener(window, 'load', initialize);