Open GoogleCodeExporter opened 9 years ago
The solution I used to get around this was to create a temp StringWriter to
marsh the kml to and then send it to my real printWrtier
///////////////BEFORE///////////////////////////
kml.marshal(out);
///////////////NOW///////////////////////////
StringWriter sw = new StringWriter();
kml.marshal(sw);
out.print(sw.toString().replaceAll("<heading>0.0</heading>",""));
Original comment by Grene...@gmail.com
on 1 Jul 2011 at 1:08
This doesn't work when you want to marshal as KMZ! Does anyone have a better
solution?
Original comment by danny.j.cohn@gmail.com
on 1 Aug 2011 at 9:49
Original issue reported on code.google.com by
Grene...@gmail.com
on 30 Jun 2011 at 9:25