|
POST
|
Hi Troy Foster >Is it still going to support Qt 5.12 being backwards compatible? No, unfortunately it will not be backwards compatible with Qt 5.12 LTS series. Are you unable to use Qt distributions from qt.io? A possible alternate solution would be to build Qt 5.15 on Ubuntu 20 from sources to get around this limitation.
... View more
07-14-2020
10:05 AM
|
0
|
0
|
1112
|
|
POST
|
You are right, there is no mention of this in the system requirements for 100.8. Apologies for that. I'll coordinate with the team and see how we can inform our users about this better.
... View more
07-10-2020
01:16 PM
|
0
|
0
|
3357
|
|
POST
|
Hi Christopher Swingley, You've not done anything wrong. There is a breaking change with Qt 5.15 with how our QML singletons are registered. We've accounted for this already with our upcoming 100.9 release, but it will involve some code changes. We've already changed this code in that sample you're using in our working branch for that sample: arcgis-runtime-samples-qt/FeatureLayer_GeoPackage.qml at v.next · Esri/arcgis-runtime-samples-qt · GitHub You can't use that solution yet until 100.9 is released, but you can chance the code in the sample locally as follows: ViewpointCenter {
Point {
y: 39.7294
x: -104.8319
spatialReference: SpatialReference {
wkid: 4326
}
}
targetScale: 200000
} SpatialReference will be problematic, either the createWebMercator or createWgs84 methods. Your current options are: * Don't use Qt 5.15 now, use 5.14.x or any older version for now. * Replace the createWgs84 method call in that sample you're using with the declared spatial reference object as shown above. Your best bet for now is to use an older version of Qt if possible in the interim until 100.9 is released and we have a nice code migration option for you.
... View more
07-10-2020
11:24 AM
|
0
|
2
|
3357
|
|
POST
|
Hi john marker, thanks for the question. There are a few ways you can do this workflow. One way is with online services, or "Feature Services" as that sample demonstrates. In that workflow any features you add to the service and push up to the service will be available on the service, but you can control who has access a few different ways. One way is with Ownership Based Access Control: OwnershipBasedAccessControlInfo QML Type | ArcGIS for Developers Documentation for ArcGIS Enterprise But if you are more concerned about keeping this information private, it can be stored in a feature service that is password protected. The ServiceFeatureTable class can access secured service that require credentials. An important distinction to be aware of is that a FeatureLayer will visualize any FeatureTable data, and there are a few options. The method showcased in that sample is using a ServiceFeatureTable; an online service. A FeatureLayer can also visualize data from a Geodatabase via a GeodatabaseFeatureTable, in which case all data would be stored offline and never pushed to any online service. >So my features that I add to a map will be pushed onto the server? Say these locations are supposed to be private. What are the measures taken to on the server side, so they can't be accessed? A secured feature service would be an option, see above. >Is there a way to save the points locally? Yes, with using a GeodatabaseFeatureTable. FeatureLayer QML Type | ArcGIS for Developers GeodatabaseFeatureTable QML Type | ArcGIS for Developers Here is a sample that shows how to visualize data from an offline Geodatabase. Feature layer (geodatabase) | ArcGIS for Developers
... View more
07-09-2020
03:20 PM
|
1
|
1
|
1645
|
|
POST
|
Hi Nicholas Liccini, It's unclear that the issue you referenced with Military Tools for ArcGIS would manifest in ArcGIS Runtime. Since that tool is not specific to ArcGIS Runtime, you can probably get an answer over here to see if it is fixed. https://community.esri.com/groups/military-tools-for-arcgis I hope this helps.
... View more
05-19-2020
09:35 AM
|
0
|
0
|
1176
|
|
POST
|
Hi M Ka, What you're doing looks correct, but you will need to make sure the layer is loaded first. If you move that logic to an onLoadStatusChanged handler, can you see if that works? Connections {
target: queryLayer
onLoadStatusChanged: {
if (queryLayer.loadStatus !== Enums.LoadStatusLoaded)
return;
mapView.setViewpointGeometry(queryLayer.fullExtent)
}
} Another thing would be to check that the online layer's full extent property on the service is not the full world extent. Alternately, you could also try this: const viewpoint = ArcGISRuntimeEnvironment.createObject("ViewpointExtent", {extent: queryLayer.fullExtent});
mapView.setViewpoint(viewpoint);
... View more
05-19-2020
09:26 AM
|
0
|
0
|
832
|
|
POST
|
Hi Sukanya Gavhane, Yes, the ArcGIS Runtime SDK for Qt supports the latest version of macOS, Catalina, for both development and deployment. The latest release of the ArcGIS Runtime SDK for Qt is built on OpenGL technology and not Metal. We are aware that it is deprecated by Apple and are assessing Metal support for an upcoming release. Currently the Qt Company's SDK has no support for Metal at our minimum supported version, 5.12.6 so that is a limiting factor as well.
... View more
05-15-2020
08:36 AM
|
0
|
0
|
614
|
|
POST
|
M Ka, There is an error in our documentation for that method. Please accept my apologies for this error. I also apologize for the delay in getting back to you on this. The method you're calling has a second argument that is not documented properly. void FeatureLayer::setFeaturesVisible(list<Feature> features, bool visible) Does that work if you pass the second arg? FeatureLayer QML Type | ArcGIS for Developers We'll get this fixed up asap.
... View more
05-01-2020
04:41 PM
|
0
|
0
|
887
|
|
POST
|
Hi M Ka, Can you try using list objects in your code? This is an object searchFeatures = {} This is a list/array searchFeatures = [] Please try that and let us know if that gets it working for you.
... View more
04-23-2020
10:04 AM
|
0
|
2
|
887
|
|
POST
|
Hi Jeremy Roberts, Currently there are no plans to move to VS 2019, but that is primarily driven by the Qt Company, and not our decision. We support the commercial, pre-built Qt SDK out of the box, and the latest versions for Windows do not support VS 2019 at this time. Qt for Windows | Qt 5.14 We will reevaluate this decision when Qt makes changes to their builds to support VS 2019. -James
... View more
04-03-2020
12:29 PM
|
0
|
0
|
1002
|
|
POST
|
The 100.7 of the ArcGIS Runtime SDK for Qt is built against the commercial Qt SDK, version 5.12.6. You can use a newer version of the Qt Company's SDK, but as far as I know there are no pre-built version of the Qt Company's SDK that are built with VS 2019 at this time. Qt for Windows | Qt 5.14 Note MSVC 2017 is the latest supported, which is what we currently support.
... View more
03-23-2020
01:51 PM
|
0
|
0
|
1712
|
|
POST
|
Jeremy Roberts, Yes, WebAssembly is not supported by the ArcGIS Runtime SDK for Qt. Thank you for detailing your use case to us. It's valuable to us to know what types of workflows our users want to support so we can evaluate future enhancements.
... View more
03-18-2020
02:00 PM
|
0
|
0
|
2156
|
|
POST
|
Geet Bhatia, I apologize for the delay in response. Yes, this can be done using Qt's threading capabilities. QThread Class | Qt Core 5.14.1 QtConcurrent Namespace | Qt Concurrent 5.14.1 The easiest way may be to fire off all your processing via QtConcurrent::run which will run it in another thread. You could, for instance run all of this logic in a separate thread: arcgis-runtime-samples-qt/GetElevationAtPoint.cpp at master · Esri/arcgis-runtime-samples-qt · GitHub You could also have a dedicated QThread running that kick off and process all results in that thread. Unfortunately we do not have any samples that demonstrate how to do this type of task in a multithreaded way beyond the async method that the API provides.
... View more
03-17-2020
04:34 PM
|
0
|
0
|
1361
|
|
POST
|
Hi Jeremy Roberts, The ArcGIS Runtime SDK for Qt doesn't support the WebAssmebly target. May I ask what workflow you want to support? We'd like to better understand your workflow so we can evaluate this target for consideration into our SDK. Thanks.
... View more
03-17-2020
02:45 PM
|
0
|
2
|
2156
|
|
POST
|
Girishchandra Y unfortunately we do not currently support pbf format, so I do not think you will be able to use the mbtiles images directly without converting them somehow.
... View more
03-12-2020
01:11 PM
|
0
|
0
|
2376
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 4 weeks ago | |
| 1 | 10-22-2025 03:59 PM | |
| 1 | 06-18-2025 10:30 AM | |
| 1 | 06-18-2025 08:43 AM | |
| 1 | 05-15-2025 01:10 PM |
| Online Status |
Offline
|
| Date Last Visited |
4 weeks ago
|