On May 15, 10:50 am, Jack Berberette <[email protected]> wrote: > This doesn't work but if change the php location from > http://www.gamecarver.com/rss2kmz.php? to > http://www.csvmap.com/rss2kmz.php? > it works fine. Am I missing a step?
Hey Jack, yes it's good to make progress and see the map with real icons! Regarding the PHP issue, first verify that PHP is running on your server by creating a tiny file called info.php with the following: <?php phpinfo(); ?> that should return the full system information for php like this: http://www.william-map.com/info.php If PHP is running ok, then the problem might be that the PHP process doesn't have permissions to write temporary files on the server. The temporary files are used to create the Zip archive for the KMZ file, and to save the downloaded icon. I found that KMZ worked better in google maps because the icon is packaged up with the KML file and therefore the google server can render the map immediately without waiting for subsequent downloads of the icons. So the next step would be to try KML output, using this version of the script: http://www.william-map.com/20100512/1/rss2kml.txt ... -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
