function showPoint(n,t){var i=new google.maps.LatLng(n,t),r;map.setCenter(i),map.setZoom(13),r=new google.maps.Marker({position:i,map:map})}function showPointWithMap(n,t,i){var r=new google.maps.LatLng(t,i),u;n.setCenter(r),n.setZoom(13),u=new google.maps.Marker({position:r,map:n})}function showPointWithLink(n,t,i,r){var f=new google.maps.LatLng(n,t),e,u;map.setCenter(f),map.setZoom(13),e=new google.maps.InfoWindow({content:"<a href='"+r+"'>"+i+"</a>"}),u=new google.maps.Marker({position:f,map:map,title:i}),google.maps.event.addListener(u,"click",function(){e.open(map,u)})}function showAddress(n){geocoder&&geocoder.geocode({address:n},function(n,t){if(t==google.maps.GeocoderStatus.OK){map.setCenter(n[0].geometry.location),map.setZoom(13);var i=new google.maps.Marker({map:map,position:n[0].geometry.location})}})}function showAddressWithLink(n,t,i){geocoder&&geocoder.geocode({address:n},function(n,r){if(r==google.maps.GeocoderStatus.OK){map.setCenter(n[0].geometry.location),map.setZoom(13);var f=new google.maps.InfoWindow({content:"<a href='"+i+"'>"+t+"</a>"}),u=new google.maps.Marker({map:map,position:n[0].geometry.location,title:t});google.maps.event.addListener(u,"click",function(){f.open(map,u)})}})}google.maps.Polygon.prototype.getBounds=function(){for(var r=new google.maps.LatLngBounds,u=this.getPaths(),i,n,t=0;t<u.getLength();t++)for(i=u.getAt(p),n=0;n<i.getLength();n++)r.extend(i.getAt(n));return r}
