Marble::KmlOsmPlacemarkDataTagWriter
Marble::KmlOsmPlacemarkDataTagWriter Class Reference
#include <KmlOsmPlacemarkDataTagWriter.h>
Static Public Member Functions | |
static bool | write (const GeoDataFeature *feature, GeoWriter &writer) |
static bool | writeOsmData (const GeoDataGeometry *geometry, const OsmPlacemarkData &osmData, GeoWriter &writer) |
Detailed Description
The KmlOsmPlacemarkDataTagWriter class is not a standard GeoTagWriter extension because the osm data fields have to be written in relation to the placemark's geometry.
Definition at line 22 of file KmlOsmPlacemarkDataTagWriter.h.
Member Function Documentation
◆ write()
|
static |
write function writes a custom XML schema made to store OsmPlacemarkData in a valid KML context
The custom schema has the following structure ( most complex one, for polygons ):
<Placemark>
...
<ExtendedData xmlns:mx="http://marble.kde.org">
<mx:OsmPlacemarkData id=...>
<mx:tag k="key" v="value"/>
.. more tags
<mx:member index="-1"> //outer boundary
<mx:OsmPlacemarkData id=...>
<mx:nd index="0">
<mx:OsmPlacemarkData id= .../> //nd #0
</nd>
<mx:nd index="1">
<mx:OsmPlacemarkData id= .../> //nd #1
</nd>
... more nds
</member>
<mx:member index="0"> //first inner boundary
...
</member>
... more inner boundaries
</mx:OsmPlacemarkData>
</ExtendedData>
</Placemark>
Definition at line 22 of file KmlOsmPlacemarkDataTagWriter.cpp.
The documentation for this class was generated from the following files:
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Wed Dec 6 2023 04:11:30 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2023 The KDE developers.
Generated on Wed Dec 6 2023 04:11:30 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.