Release notes for 200.3

This page provides details about enhancements in the 200.3 release of ArcGIS Maps SDK for Qt. It also lists deprecations, resolved issues, known issues, and more.

Enhancements

Geometry editor

Enhanced feedback for vertex addition

The GeometryEditor now displays additional feedback graphics when adding vertices using the VertexTool. This is supported for input devices with a hover event (such as a mouse move without a mouse button press).

GeometryEditor enhanced feedback for adding vertices

Basemaps

New basemap styles

The following basemap styles are new with this release:

  • ArcGIS Human Geography
  • ArcGIS Human Geography (Dark)
  • Open Street Map Blueprint
  • Open Street Map Hybrid
  • Open Street Map Navigation
  • Open Street Map Navigation (Dark)

Use the corresponding BasemapStyle enum value to specify the basemap style when creating a Basemap object.

Basemap styles

Language support for basemap place labels

The new BasemapStyleParameters class supports specifying a specific language to use for place name labels displayed on the basemap, or for defining a language strategy (such as using the local place names or the application's locale).

Feature reduction

Define clustering on point feature layers

The previous release introduced support for honoring clustering on point features in dynamic rendering mode when defined in a web map. With this release, you can define a new FeatureReduction or update existing FeatureReduction properties on point feature layers rendered in dynamic mode. This release also adds support for clustering on a FeatureCollectionLayer.

Here are the key capabilities now available:

  • Define rendering for clusters
  • Define labels for clusters
  • Configure popups on clusters
  • Set a clustering radius
  • Add aggregate or summary fields
  • Define min/max sizes for cluster symbols
  • Set a scale threshold for clustering

Here are a few known issues with clustering in this release:

Utility networks

Validate utility network topology

This SDK now supports validating network topology when using a utility network from a feature service. This is accomplished using the UtilityNetwork::validateNetworkTopology(Envelope) method, which automatically updates the UtilityNetwork::dirtyAreaTable(). Like the ArcGIS Pro Validate Network Topology tool, this method cleans up dirty areas by updating the network index used by tracing to match any edited features. Check the UtilityNetworkCapabilities::isSupportsValidateNetworkTopology() property to determine if your connected utility networks support validation with this SDK.

Utility network state

This SDK now provides the ability to get the current state of the utility network by checking UtilityNetwork::stateAsync() for utility network version 4 and later. If UtilityNetworkCapabilities::isSupportsNetworkState() returns true, you can call this method to determine whether network topology is enabled or if there are any dirty areas in your network that may impact trace results. To get more information about dirty areas in your utility network, you can query the dirty area table referenced through the UtilityNetwork::dirtyAreaTable() property. This property is available after the utility network has loaded. This table may also be added as a FeatureLayer to display the dirty area features on the map. Submitting edits to a utility network feature service through calls to ServiceGeodatabase::applyEdits() will automatically update this table with any new or updated dirty area features.

Feature editing

Check the ability to apply edits using a service geodatabase

When applying edits to a feature service, it is recommended to use ServiceGeodatabase::applyEdits() to allow multiple tables to be edited in the same transaction and to allow additional edits made on the server to be reflected locally. However, some configurations of data do not support applying edits with a service geodatabase. For example, when some layers or tables in the feature service do not support global IDs.

With this release, you can check the ArcGISFeatureServiceInfo::canUseServiceGeodatabaseApplyEdits() property before calling ServiceGeodatabase::applyEdits(). If this property is false, you can fall back to using the ServiceFeatureTable::applyEdits() method on the edited tables in the ServiceGeodatabase.

Labeling

Label definition geometry strategy

With this release, a new LabelDefinition::geometryStrategy() property allows users to specify whether labeling of polygon or line features uses the original geometry (which may be off-screen) or the geometry clipped to the current viewing extent.

LabelDefinition::setPlacement() still determines where to position the label with respect to the original or clipped geometry.

Indoor positioning

Improved Bluetooth (BLE) positioning

With this release, the indoors positioning algorithm has been strengthened against noisy and crowded environments. This results in an improved blue dot experience in environments that are densely populated with people or that contain many interfering radio signals.

Arcade

Support for Arcade 1.24

This SDK now supports Arcade 1.24. Enhancements include the following:

Support for Arcade 1.25

This SDK now supports Arcade 1.25. Enhancements include the following:

  • Support for the new FilterBySubtypeCode function.

Projection engine updates

Enhancements

  • New and updated EPSG definitions for coordinate systems and transformations through release 10.093.
  • New geographic and projected coordinate systems for Algeria, Australia, Bosnia and Herzegovina, Canada, Chile, Colombia, older Danish systems, French territories, Germany, Illinois, Latvia, UK railways, and WGS 1984 BE UTM zones.
  • New vertical transformations based on geoids, quasi-geoids, or other conversion grids can transform to or between gravity-related vertical coordinate systems for Austria, Canada, Denmark, Faroe Islands, French Antilles, Germany, Greenland, Iceland, Norway, Papua New Guinea, Poland, Slovenia, South Africa, Spain, and Sweden.
  • New and updated geographic transformations for Algeria, Bosnia and Herzegovina, Canada, Colombia, Denmark, French territories, Hong Kong, Kyrgyzstan, UK railways, timed-fixed transformations between WGS 1984 realizations.

Local Server

There are no Local Server updates with this release.

Breaking API changes

  • GeodatabaseSyncTask::importDeltaAsync is now static and requires a QObject parent to be set.
  • Geodatabase::createAsync is now static and requires a QObject parent to be set.
  • ArcadeEvaluator::evaluateAsync(const QJsonObject &profileVariables, QObject *parent = nullptr) has been removed.

Behavior changes

There are no behavior changes with this release.

Deprecations

API deprecations

  • Async methods that return TaskWatcher are deprecated. Use the equivalent method with the *Async suffix that returns a QFuture instead.

OS and framework deprecations

There are no OS and framework deprecations with this release.

Issues resolved

Issues addressed in this release are listed below.

  • BUG-000156793: Potential crash when multiple attribute rules execute simultaneously.
  • BUG-000160506: Using GeometryEditor to transform a geometry that has a different spatial reference than that of the associated map view can appear to distort the geometry.
  • BUG-000161071: After implementing a rotation, application crashes intermittently when an offline map including a basemap and 10 operational feature layers with the refreshInterval property is loaded.
  • BUG-000161183: Load failure for scene layers when spatial reference from WKT is used instead of WKID.
  • BUG-000161523: "No Data" exception when opening mobile .geodatabase file after migrating data from Enterprise GDB 10.8.1 Oracle to Enterprise GDB 10.9.1 Postgres.
  • Question on Esri Community: Change Elevation Source at runtime.
  • A service fails to associate newly added features related by global ID when the supportsApplyEditsWithGlobalIds is false.
  • Features created from a FeatureSubtype cannot be added to a stand-alone mobile geodatabase.
  • Cannot delete certain features in utility network version 3 or older.
  • The FeatureSetByRelationshipName evaluation fails when features lack values for relationship key fields.

Known issues

Known issues or limitations for this release are listed below.

  • BUG-000149491: The WMTS layer does not show up in ArcGIS Field Maps (iOS/Android only)
  • BUG-000163316: Some QFuture async methods can deadlock with Qt 6.6
  • BUG-000163351: 200.3.0 incompatible with Qt 6.6.1 or later on Linux and Android

Changes in samples

Enhancements

  • Samples are updated to use QFuture async methods.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.