﻿var directionDisplay;var directionsService=new google.maps.DirectionsService();var map;function initialize(){directionsDisplay=new google.maps.DirectionsRenderer();var b=new google.maps.LatLng(-33.432731,-70.659964);var a={zoom:7,mapTypeId:google.maps.MapTypeId.ROADMAP,center:b};map=new google.maps.Map(document.getElementById("map_canvas"),a);directionsDisplay.setMap(map)}function calcRoute(){var g=document.getElementById("end").value;var b=new Array();b=g.split("&");var f=document.getElementById("city").value;var h=document.getElementById("start").value;var a=b[0];h=h+", "+f+", Chile";var e="<img src='imagenes/MarkerReference.png'><h1>"+b[1]+"</h1><p>"+b[2]+"</p><p>Estas en el punto “A” y debes ir al punto “B”</p>";$("#busca-l").width("650px");$("#info-panel").html(e);$("#info-panel").show("slow");centerPopup();$("#placeholder").remove();var c={origin:h,destination:a,travelMode:google.maps.DirectionsTravelMode.DRIVING};directionsService.route(c,function(i,d){if(d==google.maps.DirectionsStatus.OK){directionsDisplay.setDirections(i)}})}var popupStatus=0;function loadPopup(){if(popupStatus==0){$("#pop-prel").css({opacity:"0.7"});$("#pop-prel").fadeIn("slow");$("#busca-l").fadeIn("slow");popupStatus=1;initialize()}}function disablePopup(){if(popupStatus==1){$("#pop-prel").fadeOut("slow");$("#busca-l").fadeOut("slow");popupStatus=0}}function centerPopup(){var a=document.documentElement.clientWidth;var d=document.documentElement.clientHeight;var c=$("#busca-l").height();var b=$("#busca-l").width();$("#busca-l").css({position:"absolute",top:d/2-c/2,left:a/2-b/2});$("#pop-prel").css({height:d})}$(document).ready(function(){$("#blauncher").click(function(){centerPopup();loadPopup()});$("#close-btn").click(function(){disablePopup()});$("#pop-prel").click(function(){disablePopup()});$(document).keypress(function(a){if(a.keyCode==27&&popupStatus==1){disablePopup()}})});
