$(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 mapOptions = { center: { lat: 45.440173, lng: 12.327962 }, zoom: 16, streetViewControl: false, scrollwheel: false, zoom: 16, zoomControl: true, zoomControlOptions: { style: google.maps.ZoomControlStyle.SMALL, position: google.maps.ControlPosition.RIGHT_CENTER }, //styles: styles , disableDefaultUI:true }; var map = new google.maps.Map(document.getElementById("slidersize"),mapOptions); var contentString = "PATATINA b&b Venezia"; var infowindow = new google.maps.InfoWindow({ content: contentString }); var marker = new google.maps.Marker({ position: new google.maps.LatLng(45.440173, 12.327962), map: map, title: "DEMO SITE" }); 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"; } } }); }