using python i am generating a KML file from a csv file containing lat/long values. i am using this example:
http://l0u15.wordpress.com/2008/09/30/convert-csv-to-kml-for-google-maps/
when i map this:
<Placemark>
<name>Disney's Hollywood Studios</name>
<description>Disney's Hollywood Studios is a theme park at the Walt Disney World Resort. Spanning 135 acres in size, its theme is show business, drawing inspiration from the heyday of Hollywood in the 1930s and 1940s. The third park built at the resort, it opened on May 1, 1989 as Disney-MGM Studios. In 2007, the park hosted approximately 9.51 million guests.</description>
<Point>
<coordinates>-81.561995,28.357403</coordinates>
</Point>
</Placemark>
it works without a problem! however this:
<Placemark>
<name>Beyond Basics Medical Practice</name>
<description>213031 321 Middlefield Rd Ste 275 Menlo Park CA 94025 (650) 815-9577 1/4/2012 San Francisco Unknown</description>
<Point>
<coordinates>-122.168048,37.456523</coordinates>
</Point>
</Placemark>
does not show up at all!
is there some kind of indentation requirement for KML?
It works fine for me. Here it is in Google Maps – both points
and here in the Google Maps API v3 – both points