i am having a kml file that defines a location that i need to see in the cesium
globe. it works fine in google earth. but for cesium i need file in the format of czml. So need to convert my kml file to czml format. so i tried with the czml map-writter.I tried to convert as per the instructions given here https://github.com/AnalyticalGraphicsInc/czml-writer/wiki/Quick-Start but the CesiumLanguageConverter.exe is not found inside the bin directory.
However there is a file named CesiumLanguageWritter and I also tried with it .
Am i doing something wrong?? Thank you in advance.
Regards
Datta
datta
--
You received this message because you are subscribed to the Google Groups "cesium-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cesium-dev+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
hello chris..
in the java way i am trying to convert.but the problem is there are a lot of classes. i can not understand which one to call for converting kml to czml. can you please help me regarding this?
regards
datta
CesiumOutputStream cos = new CesiumOutputStream(writer);
//the input string is the property name
BillboardCesiumWriter bcw = new BillboardCesiumWriter("");
bcw.open(cos);
bcw.write..... //use the methods in each class to write the properties you want here
String czml = cos.returnWriter().toString();