You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Package kml provides convenience methods for creating and writing KML documents.
Key Features
Simple API for building arbitrarily complex KML documents.
Support for all KML elements, including Google Earth gx: extensions.
Compatibility with the standard library encoding/xml package.
Pretty (neatly indented) and compact (minimum size) output formats.
Support for shared Style and StyleMap elements.
Simple mapping between functions and KML elements.
Convenience functions for using standard KML icons.
Convenience functions for spherical geometry.
Example
funcExampleKML() {
k:=kml.KML(
kml.Placemark(
kml.Name("Simple placemark"),
kml.Description("Attached to the ground. Intelligently places itself at the height of the underlying terrain."),
kml.Point(
kml.Coordinates(kml.Coordinate{Lon: -122.0822035425683, Lat: 37.42228990140251}),
),
),
)
iferr:=k.WriteIndent(os.Stdout, "", " "); err!=nil {
log.Fatal(err)
}
}
Output:
<?xml version="1.0" encoding="UTF-8"?>
<kmlxmlns="https://www.opengis.net/kml/2.2">
<Placemark>
<name>Simple placemark</name>
<description>Attached to the ground. Intelligently places itself at the height of the underlying terrain.</description>
<Point>
<coordinates>-122.0822035425683,37.42228990140251</coordinates>
</Point>
</Placemark>
</kml>