Marble

KmlModelTagHandler.cpp
1// SPDX-License-Identifier: LGPL-2.1-or-later
2//
3// SPDX-FileCopyrightText: 2013 Mayank Madan <maddiemadan@gmail.com>
4//
5
6#include "KmlModelTagHandler.h"
7
8#include "MarbleDebug.h"
9
10#include "GeoDataModel.h"
11#include "GeoDataMultiGeometry.h"
12#include "GeoDataParser.h"
13#include "GeoDataPlacemark.h"
14#include "KmlElementDictionary.h"
15#include "KmlObjectTagHandler.h"
16
17namespace Marble
18{
19namespace kml
20{
21KML_DEFINE_TAG_HANDLER(Model)
22
23GeoNode *KmlModelTagHandler::parse(GeoParser &parser) const
24{
25 Q_ASSERT(parser.isStartElement() && parser.isValidElement(QLatin1StringView(kmlTag_Model)));
26
27 auto model = new GeoDataModel;
28 KmlObjectTagHandler::parseIdentifiers(parser, model);
29
30 GeoStackItem parentItem = parser.parentElement();
31
32 if (parentItem.represents(kmlTag_Placemark)) {
33 parentItem.nodeAs<GeoDataPlacemark>()->setGeometry(model);
34 return model;
35
36 } else if (parentItem.represents(kmlTag_MultiGeometry)) {
37 parentItem.nodeAs<GeoDataMultiGeometry>()->append(model);
38 return model;
39
40 } else {
41 delete model;
42 return nullptr;
43 }
44}
45
46}
47}
Binds a QML item to a specific geodetic location in screen coordinates.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 4 2024 16:37:03 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.