Marble
6 #include "KmlPhotoOverlayTagHandler.h"
8 #include "MarbleDebug.h"
10 #include "KmlElementDictionary.h"
11 #include "KmlObjectTagHandler.h"
12 #include "GeoDataPhotoOverlay.h"
13 #include "GeoDataContainer.h"
14 #include "GeoDataDocument.h"
15 #include "GeoDataParser.h"
21 KML_DEFINE_TAG_HANDLER( PhotoOverlay )
23 GeoNode* KmlPhotoOverlayTagHandler::parse( GeoParser& parser )
const
25 Q_ASSERT(parser.isStartElement() && parser.isValidElement(
QLatin1String(kmlTag_PhotoOverlay)));
27 GeoDataPhotoOverlay *overlay =
new GeoDataPhotoOverlay;
28 KmlObjectTagHandler::parseIdentifiers( parser, overlay );
30 GeoStackItem parentItem = parser.parentElement();
32 if( parentItem.represents( kmlTag_Folder ) || parentItem.represents( kmlTag_Document ) ||
33 parentItem.represents( kmlTag_Change ) || parentItem.represents( kmlTag_Create ) || parentItem.represents( kmlTag_Delete ) ) {
34 parentItem.nodeAs<GeoDataContainer>()->append( overlay );
36 }
else if ( parentItem.qualifiedName().first == kmlTag_kml ) {
37 GeoDataDocument* doc = geoDataDoc( parser );
38 doc->append( overlay );
Binds a QML item to a specific geodetic location in screen coordinates.
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Mon Oct 2 2023 03:52:08 by
doxygen 1.8.17 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.