var map;var infoWindows=new Array();var directionsDisplay;var ipInfoDbApiKey="240b06051d52325810f9f5039b8a18d3bac7986935d83d3d2b3efbd28a165111";$(function(){$(window).load(function(){var a=document.createElement("script");a.type="text/javascript";a.src="http://maps.google.com/maps/api/js?sensor=true&callback="+callback;$("head").append(a)})});function init(){$.post("ws/proxy.ashx",{url:"http://api.ipinfodb.com/v2/ip_query.php?key="+ipInfoDbApiKey+"&ip="+ip+"&timezone=false"},function(c){var d=$("Latitude",c).text();var b=$("Longitude",c).text();var a=new google.maps.LatLng(d,b);map=new google.maps.Map(document.getElementById("map"),{zoom:8,center:a,mapTypeId:google.maps.MapTypeId.HYBRID});$.post("ws/latlng.ashx",{region:$("RegionName",c).text()},function(e){$.each($("marker",e),function(){var f=new google.maps.LatLng($(this).attr("lat"),$(this).attr("lng"));var h=new google.maps.InfoWindow({content:$(this).text()});infoWindows[infoWindows.length]=h;var g=new google.maps.Marker({position:f,map:map,title:$(this).attr("title"),icon:"images/green-dot.png"});google.maps.event.addListener(g,"click",function(){closeInfoWindows();h.open(map,g)})})})})}function initById(){map=new google.maps.Map(document.getElementById("map"),{zoom:16,mapTypeId:google.maps.MapTypeId.HYBRID});var a;$.post("ws/latlng.ashx",{id:id},function(b){$.each($("marker",b),function(){a=new google.maps.LatLng($(this).attr("lat"),$(this).attr("lng"));map.setCenter(a);var d=new google.maps.InfoWindow({content:$(this).text()});infoWindows[infoWindows.length]=d;var c=new google.maps.Marker({position:a,map:map,title:$(this).attr("title"),icon:"images/green-dot.png"});google.maps.event.addListener(c,"click",function(){d.open(map,c)});d.open(map,c)})});$.post("ws/proxy.ashx",{url:"http://api.ipinfodb.com/v2/ip_query.php?key="+ipInfoDbApiKey+"&ip="+ip+"&timezone=false"},function(b){$("#ctl00_ContentPlaceHolder_FromTextBox").val($("City",b).text())});directionsDisplay=new google.maps.DirectionsRenderer();directionsDisplay.setPanel(document.getElementById("directions-response"));directionsDisplay.setMap(map);$("#ctl00_ContentPlaceHolder_SendButton").click(function(){var b={origin:$("#ctl00_ContentPlaceHolder_FromTextBox").val(),destination:a,travelMode:google.maps.DirectionsTravelMode.DRIVING};var c=new google.maps.DirectionsService();c.route(b,function(e,d){if(d==google.maps.DirectionsStatus.OK){$("#distance").text(e.routes[0].legs[0].distance.text);$("#duration").text(e.routes[0].legs[0].duration.text);directionsDisplay.setDirections(e);$("#directions-summary-container").show();closeInfoWindows()}});return false});$("#show-directions-response").click(function(){if($(this).text()=="Visualizza dettaglio"){$("#directions-response").show();$(this).text("Nascondi dettaglio")}else{$("#directions-response").hide();$(this).text("Visualizza dettaglio")}return false})}function initAll(){var a=new google.maps.LatLng(41.9,12.4166667);map=new google.maps.Map(document.getElementById("map"),{zoom:6,center:a,mapTypeId:google.maps.MapTypeId.HYBRID});$.post("ws/latlng.ashx",function(b){$.each($("marker",b),function(){var c=new google.maps.LatLng($(this).attr("lat"),$(this).attr("lng"));var e=new google.maps.InfoWindow({content:$(this).text()});infoWindows[infoWindows.length]=e;var d=new google.maps.Marker({position:c,map:map,title:$(this).attr("title"),icon:"images/green-dot.png"});google.maps.event.addListener(d,"click",function(){closeInfoWindows();e.open(map,d)})});$("#selector").slideDown()})}function closeInfoWindows(){for(var a=0;a<infoWindows.length;a++){infoWindows[a].close()}};
