Marble

KmlTagWriter.cpp
1// SPDX-License-Identifier: LGPL-2.1-or-later
2//
3// SPDX-FileCopyrightText: 2009 Andrew Manson <g.real.ate@gmail.com>
4//
5
6#include "KmlTagWriter.h"
7
8#include "GeoWriter.h"
9#include "KmlElementDictionary.h"
10
11namespace Marble
12{
13
14static GeoTagWriterRegistrar s_writerKml(GeoTagWriter::QualifiedName({}, QString::fromLatin1(kml::kmlTag_nameSpaceOgc22)), new KmlTagWriter());
15
16bool KmlTagWriter::write(const GeoNode *node, GeoWriter &writer) const
17{
18 Q_UNUSED(node);
19
20 writer.writeDefaultNamespace(QString::fromUtf8(kml::kmlTag_nameSpaceOgc22));
21 writer.writeNamespace(QString::fromUtf8(kml::kmlTag_nameSpaceGx22), "gx");
22 writer.writeStartElement("kml");
23
24 // Do not write an end element for document handlers
25 return true;
26}
27
28}
QPair< QString, QString > QualifiedName
Object Name and Namespace Pair This type is intended to be used in a similar way to.
Binds a QML item to a specific geodetic location in screen coordinates.
QString fromLatin1(QByteArrayView str)
QString fromUtf8(QByteArrayView str)
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.