Quote:
Quote:
If you're generating the placemarks dynamically, you could send a content-type header (using the above types) and then stream the KML to them directly...
What kind of server are you on? If you're on Apache and your host has allowed per-directory (.htaccess) configuration, then you may be able to set your own mime types.
Jason
<?php
header("Content-type: application/vnd.google-earth.kml+xml");
(...)
?>

