On May 19, 6:33 am, mlvfd <[email protected]> wrote:
> Also, when I use a file (shown below: test.kml) that I generated by
> copying and pasting the servlet's output, the markers of the KML layer
> show up but the layer appears to have an opaque background
>
>  <Placemark><name>H87</name>
>    <description>Hydrant</description>
>    <Point>
>      <coordinates>40.90403876613856,-74.42083561370849</coordinates>
>    </Point>
>  </Placemark>
>

KML coordinates have the x coordinate (longitude) before the y
coordinate (latitude).
So your example is somewhere near the South Pole instead of New
Jersey:

<coordinates>-74.42083561370849,40.90403876613856</coordinates>

...

-- 
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.

Reply via email to