X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fview%2Fkml.cgi;h=7eaaa2a911c3573d14eafb05ad9539a64ae43cbb;hp=47435c74a49a609a7496ff34b8736d18ce7f4112;hb=01b97fadef6e2beb3b4bdbfd3674c8eb31794e98;hpb=4f80f0d3db9bf0af3570c26ac3ae9da34a18f832 diff --git a/httemplate/view/kml.cgi b/httemplate/view/kml.cgi index 47435c74a..7eaaa2a91 100644 --- a/httemplate/view/kml.cgi +++ b/httemplate/view/kml.cgi @@ -1,13 +1,11 @@ <% $kml->archive %>\ <%init> -my ($latitude, $longitude, $name) = @_; -#would be nice to pass in customer or prospect name too... - 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]/_/g; #perhaps too restrictive +http_header('Content-Disposition' => "filename=$name.kmz" );