Package gov.nasa.worldwindx.examples.kml
Class ExportKML
- java.lang.Object
-
- gov.nasa.worldwindx.examples.kml.ExportKML
-
public class ExportKML extends java.lang.ObjectShows how to generate KML from WorldWind elements. This example creates several objects, and writes their KML representation to stdout.
-
-
Field Summary
Fields Modifier and Type Field Description protected static ShapeAttributeshighlightShapeAttributesprotected static ShapeAttributesnormalShapeAttributes
-
Constructor Summary
Constructors Constructor Description ExportKML()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidmain(java.lang.String[] args)Generate sample PointPlacemarks, Paths, and Polygons, and write the KML representation to stdout.protected static PathmakePath()protected static PointPlacemarkmakePointPlacemark()protected static PolygonmakePolygon()protected static SurfaceQuadmakeSurfaceQuad()
-
-
-
Field Detail
-
normalShapeAttributes
protected static ShapeAttributes normalShapeAttributes
-
highlightShapeAttributes
protected static ShapeAttributes highlightShapeAttributes
-
-
Method Detail
-
makePointPlacemark
protected static PointPlacemark makePointPlacemark()
-
makePath
protected static Path makePath()
-
makePolygon
protected static Polygon makePolygon()
-
makeSurfaceQuad
protected static SurfaceQuad makeSurfaceQuad()
-
main
public static void main(java.lang.String[] args)
Generate sample PointPlacemarks, Paths, and Polygons, and write the KML representation to stdout.- Parameters:
args- Not used.
-
-