This sample demonstrates applying a dictionary renderer to a graphics overlay in a 3D scene to display military symbology.
Use case
Use a dictionary renderer on a graphics overlay to display more transient data, such as military messages coming through a local tactical network.
How to use the sample
Pan and zoom to explore military symbols on the map.
How it works
The sample loads a number of point military elements from an XML file and adds them as graphics to a GraphicsOverlay
. A DictionaryRenderer
is applied to the GraphicsOverlay
in order to display the graphics with MIL-STD-2525D military symbology. The GraphicsOverlay
's renderingMode
parameter is set to GraphicsRenderingModeDynamic
, so that point features are displayed with billboarded symbols facing the user (a developer can set renderingMode
to GraphicsRenderingModeStatic
if desired to instead drape the symbols on the surface). When all graphics are created, the 3D scene's viewpoint is set to zoom to the full extent of all graphics.
Relevant API
- DictionaryRenderer
- DictionarySymbolStyle
- GraphicsOverlay
Offline Data
To set up the sample's offline data, see the Use offline data in the samples section of the Qt Samples repository overview.
Link | Local Location |
---|---|
Mil2525d Stylx File | <userhome> /ArcGIS/Runtime/Data/styles/arcade_style/mil2525d.stylx |
MIL-STD-2525D XML Message File | <userhome> /ArcGIS/Runtime/Data/xml/arcade_style/Mil2525DMessages.xml |
About the data
The sample opens to a view of the county Wiltshire, United Kingdom. It displays military symbols illustrating a simulated combat situation in the area.
Tags
defense, military, situational awareness, tactical, visualization
Sample Code
// [WriteFile Name=GODictionaryRenderer_3D, Category=DisplayInformation]
// [Legal]
// Copyright 2016 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]
import QtQuick 2.6
import QtQuick.Controls 2.2
import QtQuick.XmlListModel 2.0
import Esri.ArcGISRuntime 100.15
import Esri.ArcGISExtras 1.1
Rectangle {
width: 800
height: 600
readonly property url dataPath: System.userHomePath + "/ArcGIS/Runtime/Data"
/**
* Create SceneView that contains a Scene with the Imagery Basemap, as well as a GraphicsOverlay
* for the military symbols.
*/
SceneView {
id: sceneView
anchors.fill: parent
Component.onCompleted: {
// Set the focus on SceneView to initially enable keyboard navigation
forceActiveFocus();
}
Scene {
id: scene
Basemap {
initStyle: Enums.BasemapStyleArcGISImageryStandard
}
Surface {
ArcGISTiledElevationSource {
url: "https://elevation3d.arcgis.com/arcgis/rest/services/WorldElevation3D/Terrain3D/ImageServer"
}
}
}
GraphicsOverlay {
id: graphicsOverlay
renderingMode: Enums.GraphicsRenderingModeDynamic
DictionaryRenderer {
dictionarySymbolStyle: Factory.DictionarySymbolStyle.createFromFile(dataPath + "/styles/arcade_style/mil2525d.stylx")
}
}
}
ProgressBar {
id: progressBar_loading
anchors {
horizontalCenter: parent.horizontalCenter
bottom: parent.bottom
margins: 5
}
indeterminate: true
}
// Use XmlListModel to parse the XML messages file.
XmlListModel {
id: xmlParser
source: dataPath + "/xml/arcade_style/Mil2525DMessages.xml"
query: "/messages/message"
// These are the fields we need for MIL-STD-2525D symbology.
XmlRole { name: "_control_points"; query: "_control_points/string()" }
XmlRole { name: "_wkid"; query: "_wkid/number()" }
XmlRole { name: "identity"; query: "identity/number()" }
XmlRole { name: "symbolset"; query: "symbolset/number()" }
XmlRole { name: "symbolentity"; query: "symbolentity/number()" }
XmlRole { name: "echelon"; query: "echelon/number()" }
XmlRole { name: "specialentitysubtype"; query: "specialentitysubtype/number()" }
XmlRole { name: "indicator"; query: "indicator/number()" }
XmlRole { name: "modifier2"; query: "modifier2/number()" }
XmlRole { name: "uniquedesignation"; query: "uniquedesignation/string()" }
XmlRole { name: "additionalinformation"; query: "additionalinformation/string()" }
onStatusChanged: {
if (status === XmlListModel.Ready) {
let bbox = null;
for (let i = 0; i < count; i++) {
const element = get(i);
let wkid = element._wkid;
if (!wkid) {
// If _wkid was absent, use WGS 1984 (4326) by default.
wkid = 4326;
}
const pointStrings = element._control_points.split(";");
const sr = ArcGISRuntimeEnvironment.createObject("SpatialReference", { wkid: wkid });
let geom = null;
if (pointStrings.length === 1) {
// It's a point
const pointBuilder = ArcGISRuntimeEnvironment.createObject("PointBuilder", {
spatialReference: sr
});
const coords = pointStrings[0].split(",");
pointBuilder.setXY(coords[0], coords[1]);
geom = pointBuilder.geometry;
}
if (geom) {
/**
* Get rid of _control_points and _wkid. They are not needed in the graphic's
* attributes.
*/
element._control_points = undefined;
element._wkid = undefined;
const graphic = ArcGISRuntimeEnvironment.createObject("Graphic", {
geometry: geom
});
graphic.attributes.attributesJson = element;
graphicsOverlay.graphics.append(graphic);
if (bbox) {
bbox = GeometryEngine.unionOf(bbox, geom);
} else {
bbox = geom;
}
}
}
// Zoom to graphics
if (bbox) {
bbox = GeometryEngine.project(bbox.extent, scene.spatialReference);
/**
* Create a camera directly above the center of the features, and then rotate that
* camera around the center to tip it.
*/
let camera = ArcGISRuntimeEnvironment.createObject("Camera", {
location: bbox.extent.center,
heading: 0,
pitch: 0,
roll: 0,
distance: 15000
});
camera = camera.rotateAround(bbox.extent.center, 0, 70, 0);
sceneView.setViewpointCameraAndWait(camera);
}
progressBar_loading.visible = false;
}
}
}
}