|
POST
|
Thanks for letting us know. I'll log a bug for us to look into this. I found that resizing the window "fixes" it. Maybe a temporary workaround to make it pop back into place would be to resize the window programatically after the resize and viewpoint animation is done.
... View more
03-20-2019
11:19 AM
|
0
|
2
|
1492
|
|
POST
|
There isn't a great way to serialize this information. If you want to serialize the data, you should be using Features, not Graphics. Graphics are designed for temporary display. This help doc explains this in detail - Features and graphics—ArcGIS Runtime SDK for Qt | ArcGIS for Developers Instead of Graphics, I'd suggest you use FeatureCollectionLayer. FeatureCollectionLayer is the view and the data comes from a FeatureCollection. The nice thing about this class is that it implements JsonSerializable, so once you create a FeatureCollection, you can call toJson, and send the JSON to someone else, then call fromJson and create a new FeatureCollection and give it to a FeatureCollectionLayer - FeatureCollection Class | ArcGIS for Developers
... View more
03-20-2019
10:41 AM
|
0
|
2
|
1484
|
|
POST
|
Hi, I think it might be good to check with AppStudio team since you are using the AppFramework Networking module. AppStudio for ArcGIS any ideas? Stating the platforms you are seeing this on would be helpful I'm sure.
... View more
03-20-2019
09:23 AM
|
0
|
0
|
3055
|
|
POST
|
If you are using C++, the best way to do it would probably be to create a QSortFilterProxyModel. Since you are using QML, I'd suggest 2 different approaches: 1. In your delegate, set the visibility of the delegate based on some condition. Like if you don't want your "Trees" layer to show in the legend, then set the following in your delegate visible: layerName !== "Trees" 2. Create a new ListModel object, then, loop through the original list model and only add the ones you want to the new ListModel. Something along these lines should work, but it seems less ideal because you have to maintain 2 versions of the list model.
... View more
03-20-2019
09:17 AM
|
0
|
0
|
880
|
|
POST
|
Just to be clear, the GPS receiver should not require the internet to function. Many of our Esri apps work completely offline and use LocationDisplay. With that said, QGeoPositionInfoSource has a subclass that takes in a NMEA source, which could be set to a file - QNmeaPositionInfoSource Class | Qt Positioning 5.12.2 c++ - Parsing *.nmea file with QNmeaPositionInfoSource class returns timeout. - Stack Overflow Also, you can subclass QGeoPositionInfoSource to take in any type of file. For example, we did this with GPX files for an example app - dynamic-situational-awareness-qt/GPXLocationSimulator.h at master · Esri/dynamic-situational-awareness-qt · GitHub
... View more
03-20-2019
09:13 AM
|
0
|
0
|
1598
|
|
POST
|
Greetings, Norbert! Looks like it is a doc bug - we fixed it for our 100.5 branch but it slipped into the 100.4 release notes. I apologize for the confusion. 100.5 should be out in a few weeks and should contain the fix.
... View more
03-20-2019
08:24 AM
|
0
|
0
|
3210
|
|
POST
|
This should work. I modified a BuildLegend sample that uses multiple widgets to display the ENC Layer in one of them, and it works there. As for the Visual Studio vs Qt Creator concern, we design our samples to use qmake and Qt Creator. However, we have customers using our API with cmake and Visual Studio as well. It's just that we set things up out of the box to work with qmake and Qt Creator - if you wish to use another workflow, you have that option and everything should work.
... View more
03-14-2019
01:31 PM
|
0
|
2
|
2889
|
|
POST
|
You can find the source for the sample here - arcgis-runtime-samples-qt/ArcGISRuntimeSDKQt_QMLSamples/Maps/GenerateOfflineMap at master · Esri/arcgis-runtime-samples-… Try copying the GenerateWindow and DownloadButton into your project
... View more
03-14-2019
12:16 PM
|
0
|
2
|
1393
|
|
POST
|
If you don't have Extras, you can comment out that import. You'll need to fix up 2 more lines - change the `property real scaleFactor` to be equal to 1, and for `property url outputMapPackage`, hardcode a path or use another module to set a local file URL such as - "file:///Users/username/data.mmpk"
... View more
03-14-2019
10:21 AM
|
0
|
4
|
1393
|
|
POST
|
Here's a simple widgets example (attached). What you describe should work. Maybe the example can help you identify differences in the code/project?
... View more
03-14-2019
09:37 AM
|
0
|
4
|
2889
|
|
POST
|
Hard to say what the issue is. My best guess would be the spatial references mismatch and the TPK cannot project on-the-fly.
... View more
03-14-2019
07:53 AM
|
1
|
0
|
2578
|
|
POST
|
LocationDisplay works offline. Here is an example - arcgis-runtime-samples-qt/ArcGISRuntimeSDKQt_CppSamples/Maps/DisplayDeviceLocation at master · Esri/arcgis-runtime-sampl…
... View more
03-14-2019
07:53 AM
|
0
|
2
|
1598
|
|
POST
|
Buffer the input geometry by 50 km using the GeometryEngine::buffer - https://developers.arcgis.com/qt/latest/cpp/api-reference/esri-arcgisruntime-geometryengine.html#buffer Then call setViewpoint with the returned Geometry
... View more
03-14-2019
07:49 AM
|
0
|
1
|
932
|
|
POST
|
Create a Graphic and use a TextSymbol as the symbol type for the Graphic. This is demonstrated here - arcgis-runtime-samples-qt/ArcGISRuntimeSDKQt_CppSamples/DisplayInformation/GOSymbols at master · Esri/arcgis-runtime-sam…
... View more
03-14-2019
07:48 AM
|
1
|
0
|
811
|
|
POST
|
Troy- Just to clarify, am I correct that this is a workaround for the issue you are hitting with the symbols coming out of DictionaryRenderer being either too big or too small? If so, the ideal fix is that we can get you a way to modify symbol size in the DictionaryRenderer directly so you can get rid of the workaround. - Lucas
... View more
03-13-2019
02:57 PM
|
0
|
0
|
2068
|
| Title | Kudos | Posted |
|---|---|---|
| 3 | 05-27-2026 09:52 AM | |
| 1 | 11-24-2025 10:45 AM | |
| 1 | 07-30-2025 08:26 AM | |
| 1 | 05-15-2025 07:35 AM | |
| 2 | 11-26-2024 01:27 PM |
| Online Status |
Offline
|
| Date Last Visited |
06-17-2026
07:54 AM
|