A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developers.arcgis.com/qt/cpp/sample-code/feature-layer-rendering-mode-map/ below:

Feature layer rendering mode (map) | ArcGIS Maps SDK for Qt

View on GitHub Sample viewer app

Render features statically or dynamically by setting the feature layer rendering mode.

Use case

In dynamic rendering mode, features and graphics are stored on the GPU. As a result, dynamic rendering mode is good for moving objects and for maintaining graphical fidelity during extent changes, since individual graphic changes can be efficiently applied directly to the GPU state. This gives the map or scene a seamless look and feel when interacting with it. The number of features and graphics has a direct impact on GPU resources, so large numbers of features or graphics can affect the responsiveness of maps or scenes to user interaction. Ultimately, the number and complexity of features and graphics that can be rendered in dynamic rendering mode is dependent on the power and memory of the device's GPU.

In static rendering mode, features and graphics are rendered only when needed (for example, after an extent change) and offloads a significant portion of the graphical processing onto the CPU. As a result, less work is required by the GPU to draw the graphics, and the GPU can spend its resources on keeping the UI interactive. Use this mode for stationary graphics, complex geometries, and very large numbers of features or graphics. The number of features and graphics has little impact on frame render time, meaning it scales well, and pushes a constant GPU payload. However, rendering updates is CPU and system memory intensive, which can have an impact on device battery life.

How to use the sample

Click 'Start Animation' to begin the same zoom animation on both static and dynamically maps.

How it works
  1. Create a Map and call loadSettings() and then setPreferred[Point/Polyline/Polygon]FeatureRenderingMode(...).
  2. The RenderingMode can be set to STATIC, DYNAMIC or AUTOMATIC.
  3. When left to automatic rendering, points are drawn dynamically and polylines and polygons statically.
Relevant API

dynamic, feature layer, features, rendering, static

Sample Code

FeatureLayerRenderingModeMap.cpp FeatureLayerRenderingModeMap.cpp FeatureLayerRenderingModeMap.h FeatureLayerRenderingModeMap.qml

Use dark colors for code blocks Copy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
// [WriteFile Name=FeatureLayerRenderingModeMap, Category=Layers]
// [Legal]
// Copyright 2017 Esri.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// [Legal]

#ifdef PCH_BUILD
#include "pch.hpp"
#endif // PCH_BUILD

// sample headers
#include "FeatureLayerRenderingModeMap.h"

// ArcGIS Maps SDK headers
#include "FeatureLayer.h"
#include "LayerListModel.h"
#include "LoadSettings.h"
#include "Map.h"
#include "MapQuickView.h"
#include "MapTypes.h"
#include "Point.h"
#include "ServiceFeatureTable.h"
#include "SpatialReference.h"

// Qt headers
#include <QFuture>
#include <QString>
#include <QStringList>
#include <QTimer>

using namespace Esri::ArcGISRuntime;

FeatureLayerRenderingModeMap::FeatureLayerRenderingModeMap(QQuickItem* parent /* = nullptr */):
  QQuickItem(parent)
{
}

void FeatureLayerRenderingModeMap::init()
{
  // Register classes for QML
  qmlRegisterType<MapQuickView>("Esri.Samples", 1, 0, "MapView");
  qmlRegisterType<FeatureLayerRenderingModeMap>("Esri.Samples", 1, 0, "FeatureLayerRenderingModeMapSample");
}

void FeatureLayerRenderingModeMap::componentComplete()
{
  QQuickItem::componentComplete();

  // Create a map for static rendering
  m_topMapView = findChild<MapQuickView*>("topMapView");
  Map* topMap = new Map(this);
  topMap->loadSettings()->setPreferredPointFeatureRenderingMode(FeatureRenderingMode::Static);
  topMap->loadSettings()->setPreferredPolygonFeatureRenderingMode(FeatureRenderingMode::Static);
  topMap->loadSettings()->setPreferredPolylineFeatureRenderingMode(FeatureRenderingMode::Static);
  addFeatureLayers(topMap);
  m_topMapView->setMap(topMap);

  // Create a map for dynamic rendering
  m_bottomMapView = findChild<MapQuickView*>("bottomMapView");
  Map* bottomMap = new Map(this);
  bottomMap->loadSettings()->setPreferredPointFeatureRenderingMode(FeatureRenderingMode::Dynamic);
  bottomMap->loadSettings()->setPreferredPolygonFeatureRenderingMode(FeatureRenderingMode::Dynamic);
  bottomMap->loadSettings()->setPreferredPolylineFeatureRenderingMode(FeatureRenderingMode::Dynamic);
  addFeatureLayers(bottomMap);
  m_bottomMapView->setMap(bottomMap);

  // Create Zoom Out Camera Viewpoint
  const Point centerPt(-118.37, 34.46, SpatialReference::wgs84());
  const double outScale = 650000;
  const double outRotation = 0;
  m_zoomOutViewpoint = Viewpoint(centerPt, outScale, outRotation);

  // Create Zoom In Camera Viewpoint
  const double inScale = 50000;
  const double inRotation = 90;
  m_zoomInViewpoint = Viewpoint(centerPt, inScale, inRotation);

  // Set initial viewpoint
  m_topMapView->setViewpointAndWait(m_zoomOutViewpoint);
  m_bottomMapView->setViewpointAndWait(m_zoomOutViewpoint);

  // Create Timer
  m_timer = new QTimer(this);
  m_timer->setInterval(7000);
  connect(m_timer, &QTimer::timeout, this, &FeatureLayerRenderingModeMap::animate);
}

void FeatureLayerRenderingModeMap::addFeatureLayers(Map* map)
{
  const QStringList layerIds = {"0", "8", "9"};
  for (const QString& layerId : layerIds)
  {
    QString featureServiceUrl = QString("%1/%2").arg(m_featureServiceUrl, layerId);
    ServiceFeatureTable* featureTable = new ServiceFeatureTable(featureServiceUrl, this);
    FeatureLayer* featureLayer = new FeatureLayer(featureTable, this);
    map->operationalLayers()->append(featureLayer);
  }
}

// update the Camera when the timer triggers
void FeatureLayerRenderingModeMap::animate()
{
  Viewpoint viewpoint;
  if (m_isZoomedOut)
    viewpoint = Viewpoint(m_zoomInViewpoint);
  else
    viewpoint = Viewpoint(m_zoomOutViewpoint);

  m_bottomMapView->setViewpointAsync(viewpoint, 5.0f);
  m_topMapView->setViewpointAsync(viewpoint, 5.0f);
  m_isZoomedOut = !m_isZoomedOut;
}

void FeatureLayerRenderingModeMap::startAnimation()
{
  if (!m_timer)
    return;

  animate();
  m_timer->start(7000);
}

void FeatureLayerRenderingModeMap::stopAnimation()
{
  if (!m_timer)
    return;

  m_timer->stop();
}

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4