$(document).ready(function() { google.maps.event.addDomListener(window, 'load', initialize); }); var styles = [{ "featureType": "administrative", "stylers": [{ "visibility": "off" }] }, { "featureType": "poi", "stylers": [{ "visibility": "simplified" }] }, { "featureType": "road", "elementType": "labels", "stylers": [{ "visibility": "simplified" }] }, { "featureType": "water", "stylers": [{ "visibility": "simplified" }] }, { "featureType": "transit", "stylers": [{ "visibility": "simplified" }] }, { "featureType": "landscape", "stylers": [{ "visibility": "simplified" }] }, { "featureType": "road.highway", "stylers": [{ "visibility": "off" }] }, { "featureType": "road.local", "stylers": [{ "visibility": "on" }] }, { "featureType": "road.highway", "elementType": "geometry", "stylers": [{ "visibility": "on" }] },/* { "featureType": "water", "elementType": "geometry", "stylers": [{ "color": "#84afa3" }, { "lightness": "52" }] },/* { "featureType": "water", "elementType": "labels.text.fill", "stylers": [{ "visibility": "on" }, { "color": "#86863d" }] }, { "stylers": [{ "saturation": -25 }, { "gamma": 0.36 }] },*/ { "featureType": "transit.line", "elementType": "geometry", "stylers": [{ "color": "#3f518c" }] }] function initialize() { var loc = [45.4373507 ,12.3473513] ; var mapOptions = { center: { lat: loc[0], lng: loc[1] }, zoom: 16, styles: styles , scrollwheel: false, disableDefaultUI:false }; var map = new google.maps.Map(document.getElementById("gmap"),mapOptions); var contentString = "Ca' del Cinema"; var infowindow = new google.maps.InfoWindow({ content: contentString }); var marker = new google.maps.Marker({ position: new google.maps.LatLng(loc[0], loc[1]), map: map, title: "Ca' del Cinema" }); google.maps.event.addListener(marker, "click", function() { infowindow.open(map,marker); }); /*google.maps.event.addListener(map, "click", function() { var iOS = ( navigator.userAgent.match(/(iPad|iPhone|iPod)/g) ? true : false ); var ua = navigator.userAgent.toLowerCase(); var isAndroid = ua.indexOf("android") > -1; //geo:latitude,longitude if(iOS){ window.location.href = "http://maps.apple.com/?q=45.436071,12.346017&z=19"; } else{ if(isAndroid){ window.location.href = "geo:45.436071,12.346017?z=19"; } else{ window.location.href = "bigmap.html"; } } });*/ }