On Jun 7, 3:08 am, Cadmy Nemro <[email protected]> wrote: > How can I send kml dynamicly? > I have a pagehttp://www.arsgraart.ru/norm.htmland this string: > *"var markersKML = new > google.maps.KmlLayer('http://eqm-test.ertelecom.ru/kml/test.kml?'+ > timestamp);" * > upload kml file > And I have an oracle web-procedure that return not kml file, but html- > page that identical to kml-file
That is not valid kml. You can't have spaces within the coordinates. This isn't valid: <coordinates>55.9376357325, 57.9958926292</coordinates> it needs to be: <coordinates>55.9376357325,57.9958926292</coordinates> also: http://www.feedvalidator.org/check.cgi?url=http%3A%2F%2Feqm-test.ertelecom.ru%2Fkml%2Ftest.kml -- Larry > How can I use this procedure to upload kml to api google maps? -- 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.
