On Jun 4, 4:39 am, Tremblay <[email protected]> wrote:
>
> I have multiple placemark inside my kml file but only one placemark is
> shown
>

in the official doco it says "A basic <kml> element contains 0 or 1
Feature", which I think is why multiple features appear inside a
container element like <Document> or <Folder>

http://code.google.com/apis/kml/documentation/kmlreference.html#kml

your file is like
<kml>
  <Placemark>
  <Placemark>
  <Placemark>
</kml>

but instead try
<kml>
  <Document>
    <Placemark>
    <Placemark>
    <Placemark>
  </Document>
</kml>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps API" 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-api?hl=en.

Reply via email to