summaryrefslogtreecommitdiff
path: root/httemplate/view/kml.cgi
blob: a156edc1574992e71145fae651789249006747a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
<% $kml->archive %>\
<%init>

my $kml = Geo::GoogleEarth::Pluggable->new;
$kml->Point( map { $_=>scalar($cgi->param($_)) } qw( name lat lon ) );

#http_header('Content-Type' => 'application/vnd.google-earth.kml+xml' ); #kml
http_header('Content-Type' => 'application/vnd.google-earth.kmz' ); #kmz
( my $name = $cgi->param('name') ) =~ s/[^a-z0-9]/_/gi; #perhaps too restrictive
http_header('Content-Disposition' => "filename=$name.kmz" );
</%init>