QGIS API Documentation 3.41.0-Master (88383c3d16f)
Loading...
Searching...
No Matches
qgsmaplayerfactory.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsmaplayerfactory.cpp
3 --------------------------------------
4 Date : March 2021
5 Copyright : (C) 2021 by Nyall Dawson
6 Email : nyall dot dawson at gmail dot com
7***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
18#include "qgsmaplayerfactory.h"
19#include "qgsvectorlayer.h"
20#include "qgsrasterlayer.h"
21#include "qgsmeshlayer.h"
22#include "qgspointcloudlayer.h"
23#include "qgsvectortilelayer.h"
24#include "qgsannotationlayer.h"
25#include "qgsgrouplayer.h"
26#include "qgstiledscenelayer.h"
27
28Qgis::LayerType QgsMapLayerFactory::typeFromString( const QString &string, bool &ok )
29{
30 ok = true;
31 if ( string.compare( QLatin1String( "vector" ), Qt::CaseInsensitive ) == 0 )
33 else if ( string.compare( QLatin1String( "raster" ), Qt::CaseInsensitive ) == 0 )
35 else if ( string.compare( QLatin1String( "mesh" ), Qt::CaseInsensitive ) == 0 )
37 else if ( string.compare( QLatin1String( "vector-tile" ), Qt::CaseInsensitive ) == 0 )
39 else if ( string.compare( QLatin1String( "point-cloud" ), Qt::CaseInsensitive ) == 0 ||
40 // We accept "pointcloud" for backward compatibility with the
41 // MIME related code, which spelled it that way before 3.42.0 where
42 // we have delegated to QgsMapLayerFactory::typeToString()
43 string.compare( QLatin1String( "pointcloud" ), Qt::CaseInsensitive ) == 0 )
45 else if ( string.compare( QLatin1String( "plugin" ), Qt::CaseInsensitive ) == 0 )
47 else if ( string.compare( QLatin1String( "annotation" ), Qt::CaseInsensitive ) == 0 )
49 else if ( string.compare( QLatin1String( "group" ), Qt::CaseInsensitive ) == 0 )
51 else if ( string.compare( QLatin1String( "tiled-scene" ), Qt::CaseInsensitive ) == 0 )
53
54 ok = false;
56}
57
59{
60 switch ( type )
61 {
63 return QStringLiteral( "vector" );
65 return QStringLiteral( "raster" );
67 return QStringLiteral( "plugin" );
69 return QStringLiteral( "mesh" );
71 return QStringLiteral( "vector-tile" );
73 return QStringLiteral( "annotation" );
75 return QStringLiteral( "point-cloud" );
77 return QStringLiteral( "group" );
79 return QStringLiteral( "tiled-scene" );
80 }
81 return QString();
82}
83
84QgsMapLayer *QgsMapLayerFactory::createLayer( const QString &uri, const QString &name, Qgis::LayerType type, const LayerOptions &options, const QString &provider )
85{
86 switch ( type )
87 {
89 {
90 QgsVectorLayer::LayerOptions vectorOptions;
91 vectorOptions.transformContext = options.transformContext;
92 vectorOptions.loadDefaultStyle = options.loadDefaultStyle;
93 vectorOptions.loadAllStoredStyles = options.loadAllStoredStyles;
94 return new QgsVectorLayer( uri, name, provider, vectorOptions );
95 }
96
98 {
99 QgsRasterLayer::LayerOptions rasterOptions;
100 rasterOptions.transformContext = options.transformContext;
101 rasterOptions.loadDefaultStyle = options.loadDefaultStyle;
102 return new QgsRasterLayer( uri, name, provider, rasterOptions );
103 }
104
106 {
107 QgsMeshLayer::LayerOptions meshOptions;
108 meshOptions.transformContext = options.transformContext;
109 meshOptions.loadDefaultStyle = options.loadDefaultStyle;
110 return new QgsMeshLayer( uri, name, provider, meshOptions );
111 }
112
114 {
115 const QgsVectorTileLayer::LayerOptions vectorTileOptions( options.transformContext );
116 return new QgsVectorTileLayer( uri, name, vectorTileOptions );
117 }
118
120 {
121 const QgsAnnotationLayer::LayerOptions annotationOptions( options.transformContext );
122 return new QgsAnnotationLayer( name, annotationOptions );
123 }
124
126 {
127 const QgsGroupLayer::LayerOptions groupOptions( options.transformContext );
128 return new QgsGroupLayer( name, groupOptions );
129 }
130
132 {
133 QgsPointCloudLayer::LayerOptions pointCloudOptions;
134 pointCloudOptions.loadDefaultStyle = options.loadDefaultStyle;
135 pointCloudOptions.transformContext = options.transformContext;
136 return new QgsPointCloudLayer( uri, name, provider, pointCloudOptions );
137 }
138
140 {
141 QgsTiledSceneLayer::LayerOptions tiledSceneOptions;
142 tiledSceneOptions.loadDefaultStyle = options.loadDefaultStyle;
143 tiledSceneOptions.transformContext = options.transformContext;
144 return new QgsTiledSceneLayer( uri, name, provider, tiledSceneOptions );
145 }
146
148 break;
149 }
150 return nullptr;
151}
LayerType
Types of layers that can be added to a map.
Definition qgis.h:169
@ Group
Composite group layer. Added in QGIS 3.24.
@ Plugin
Plugin based layer.
@ TiledScene
Tiled scene layer. Added in QGIS 3.34.
@ Annotation
Contains freeform, georeferenced annotations. Added in QGIS 3.16.
@ Vector
Vector layer.
@ VectorTile
Vector tile layer. Added in QGIS 3.14.
@ Mesh
Mesh layer. Added in QGIS 3.2.
@ Raster
Raster layer.
@ PointCloud
Point cloud layer. Added in QGIS 3.18.
Represents a map layer containing a set of georeferenced annotations, e.g.
A map layer which consists of a set of child layers, where all component layers are rendered as a sin...
static QString typeToString(Qgis::LayerType type)
Converts a map layer type to a string value.
static Qgis::LayerType typeFromString(const QString &string, bool &ok)
Returns the map layer type corresponding a string value.
static QgsMapLayer * createLayer(const QString &uri, const QString &name, Qgis::LayerType type, const LayerOptions &options, const QString &provider=QString())
Creates a map layer, given a uri, name, layer type and provider name.
Base class for all map layer types.
Definition qgsmaplayer.h:76
Represents a mesh layer supporting display of data on structured or unstructured meshes.
Represents a map layer supporting display of point clouds.
Represents a raster layer.
Represents a map layer supporting display of tiled scene objects.
Represents a vector layer which manages a vector based data sets.
Implements a map layer that is dedicated to rendering of vector tiles.
Setting options for loading annotation layers.
Setting options for loading group layers.
Setting options for loading layers.
QgsCoordinateTransformContext transformContext
Transform context.
bool loadAllStoredStyles
Controls whether the stored styles will be all loaded.
bool loadDefaultStyle
Set to true if the default layer style should be loaded.
Setting options for loading mesh layers.
QgsCoordinateTransformContext transformContext
Coordinate transform context.
bool loadDefaultStyle
Set to true if the default layer style should be loaded.
Setting options for loading point cloud layers.
bool loadDefaultStyle
Set to true if the default layer style should be loaded.
QgsCoordinateTransformContext transformContext
Coordinate transform context.
Setting options for loading raster layers.
bool loadDefaultStyle
Sets to true if the default layer style should be loaded.
QgsCoordinateTransformContext transformContext
Coordinate transform context.
Setting options for loading tiled scene layers.
bool loadDefaultStyle
Set to true if the default layer style should be loaded.
QgsCoordinateTransformContext transformContext
Coordinate transform context.
Setting options for loading vector layers.
bool loadDefaultStyle
Set to true if the default layer style should be loaded.
QgsCoordinateTransformContext transformContext
Coordinate transform context.
bool loadAllStoredStyles
Controls whether the stored styles will be all loaded.
Setting options for loading vector tile layers.