Marble

KmlStyleMapTagWriter.cpp
1// SPDX-License-Identifier: LGPL-2.1-or-later
2//
3// SPDX-FileCopyrightText: 2010 Dennis Nienhüser <nienhueser@kde.org>
4//
5
6#include "KmlStyleMapTagWriter.h"
7
8#include "GeoDataStyleMap.h"
9#include "GeoDataTypes.h"
10#include "GeoWriter.h"
11#include "KmlElementDictionary.h"
12#include "KmlObjectTagWriter.h"
13
14namespace Marble
15{
16
17static GeoTagWriterRegistrar s_writerStyleMap(GeoTagWriter::QualifiedName(QString::fromLatin1(GeoDataTypes::GeoDataStyleMapType),
18 QString::fromLatin1(kml::kmlTag_nameSpaceOgc22)),
19 new KmlStyleMapTagWriter);
20
21bool KmlStyleMapTagWriter::write(const GeoNode *node, GeoWriter &writer) const
22{
23 const auto map = static_cast<const GeoDataStyleMap *>(node);
24
25 writer.writeStartElement(QString::fromUtf8(kml::kmlTag_StyleMap));
26 KmlObjectTagWriter::writeIdentifiers(writer, map);
27
29 while (iter.hasNext()) {
30 iter.next();
31 writer.writeStartElement(QString::fromUtf8(kml::kmlTag_Pair));
32 writer.writeElement(QString::fromLatin1(kml::kmlTag_key), iter.key());
33 writer.writeElement(QString::fromLatin1(kml::kmlTag_styleUrl), iter.value());
34 writer.writeEndElement();
35 }
36
37 writer.writeEndElement();
38
39 return true;
40}
41
42}
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)
QFuture< void > map(Iterator begin, Iterator end, MapFunctor &&function)
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.