May i inquire more knowledge on marshaling and unmarshaling of kml codes? Regarding those used in Google earth. I need to do a project on flight airlines, linking them with an arc which is a polygon to connect placemarks with placemarks. I've tried to compile sample codes of HelloKML but still unable to marshal and produce the kml codes itself. Please someone explain marshaling and unmarshaling of codes and producing of kml codes. Thanks in advance.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
KML files are just XML files using a specific set of tags and attributes. You can create KML files with an ordinary text editor such as Notepad. A simple KML file is probably a good place to start, just create a new blank text file and type in some KML (there are zillions of examples around the web). Load it into Google Earth and see if it works. If not, fix your KML. Once you know how to create valid KML files manually, creating them automatically is then a simple matter of programming. |
|||||||||
|
|
Better late than never. Use the Java API for KML or JAK available here: http://labs.micromata.de/display/jak/Home |
|||
|
|