|
POST
|
Hi Norbert- did you find the solution? If it works in the sample that you built on your system, it indicates your system should support everything you need. As for common pitfalls, I often remember to add the viewshed to the analysis overlay, but forget to add that analysis overlay to the actual scene. I also find that I sometimes need to change the heading/pitch/etc for it to display as I desire.
... View more
01-23-2018
02:27 PM
|
0
|
1
|
1270
|
|
POST
|
Hi George, is your screenshot of the existing behavior? If so, can you post a mockup of what you are wanting to happen?
... View more
01-23-2018
12:55 PM
|
0
|
0
|
964
|
|
POST
|
I spoke with the team and they have seen this in Debug on Windows only. They appear to be DirectX messages that only appear in Debug, not Release. Also, they shouldn't actually cause any issues. Can you please try in Release? Also, it would be good if you can contact Esri Support and log a bug so we can track who is being affected by the issue. Thanks!
... View more
01-08-2018
09:17 AM
|
0
|
0
|
2277
|
|
POST
|
Hi, these look like shader warnings or errors. What platform/device are you on? Do you have details about your system like GPU, Graphics Card, etc?
... View more
01-04-2018
08:09 AM
|
0
|
2
|
2277
|
|
POST
|
Hi Norbert, The Compass is located here - arcgis-runtime-toolkit-qt/Import/Esri/ArcGISRuntime/Toolkit/Controls/CppApi at master · Esri/arcgis-runtime-toolkit-qt ·… It is currently a QML control that works with our C++ API. We don't yet have an example for how to use this. - Lucas
... View more
01-04-2018
08:06 AM
|
2
|
2
|
1950
|
|
POST
|
I don't know on dates, but hopefully soon. If you can message me some details about your organization, project, etc, I can add these details into our backlog item to hopefully give it more urgency.
... View more
01-03-2018
06:59 AM
|
0
|
2
|
4497
|
|
POST
|
Hi Jeffrey, While the PopupManager fully supports editing, the PopupView that is in the toolkit currently only supports viewing the attributes at this time. If you need Popup editing now, you can consider changing the source of the toolkit control to do what you need. You can see here that the attribute value is displayed as formatted text in a QML Text element - https://github.com/Esri/arcgis-runtime-toolkit-qt/blob/master/Import/Esri/ArcGISRuntime/Toolkit/Controls/PopupViewBase.qml#L137-L142 The idea is that the PopupManager is the brains behind the PopupView, so you can use the information from the manager to update the view accordingly. A few things you will for sure need to do to get going: - change the model of the repeater in the PopupViewBase.qml from PopupManager::displayedFields to PopupManager::editableFields - use the various roles in the PopupAttributeListModel to know what to display (TextBox for string input, ComboBox for domains, Calendar for Date picker, etc) PopupAttributeListModel Class | ArcGIS for Developers
... View more
12-29-2017
11:19 AM
|
2
|
0
|
4497
|
|
POST
|
There is now an even simpler way to do this with 100.2. You can make use of the SimpleLineMarkerSymbolStyle and SimpleLineSymbolMarkerPlacement SimpleLineSymbolMarkerStyle Class | ArcGIS for Developers SimpleLineSymbolMarkerPlacement Class | ArcGIS for Developers // find QML MapView component
m_mapView = findChild<MapQuickView*>("mapView");
// Create a map using the topographic basemap
m_map = new Map(Basemap::topographic(this), this);
// Set map to map view
m_mapView->setMap(m_map);
// Create and add Graphics
m_graphicsOverlay = new GraphicsOverlay(this);
m_mapView->graphicsOverlays()->append(m_graphicsOverlay);
PolylineBuilder* builder = new PolylineBuilder(SpatialReference::wgs84(), this);
builder->addPoint(-45,-25);
builder->addPoint(45,0);
builder->addPoint(-45, 25);
m_lineSymbol = new SimpleLineSymbol(SimpleLineSymbolStyle::Solid, QColor("red"), 3.0f, this);
m_lineSymbol->setMarkerStyle(SimpleLineSymbolMarkerStyle::Arrow);
m_lineSymbol->setMarkerPlacement(SimpleLineSymbolMarkerPlacement::Begin);
Graphic* graphic = new Graphic(builder->toGeometry(), m_lineSymbol, this);
m_graphicsOverlay->graphics()->append(graphic);
... View more
12-29-2017
11:01 AM
|
0
|
0
|
2349
|
|
POST
|
The layer should update automatically as you expected that it would. Our "Update attributes (feature service)" sample demonstrates this. What are the details of the scenario you are running into? Have you made sure that your edit to the table has been successful?
... View more
12-28-2017
07:00 AM
|
0
|
1
|
1150
|
|
POST
|
Local Rasters and Shapefiles require a Standard license. Please see the table here - License your app—ArcGIS Runtime SDK for Qt | ArcGIS for Developers Lite covers data and layers "from the ArcGIS Platform", meaning feature services, web maps, mobile map packages, etc. Many other data formats that are not ArcGIS specific (like rasters and shapefile) require a higher level of licensing.
... View more
12-27-2017
07:23 AM
|
0
|
1
|
1079
|
|
POST
|
we have an example of subclassing the map view as a QGraphicsView. This differs from QGraphicsWidget, but the principle about how to extend MapView remains the same.
... View more
11-21-2017
08:30 AM
|
0
|
5
|
3077
|
|
POST
|
Did you inspect the layer errors in the result object? GenerateOfflineMapResult Class | ArcGIS for Developers One guess I have is that the necessary credentials are not getting passed through successfully and so while some things can be taken offline, the Esri Basemaps cannot. This should manifest itself in the layerErrors
... View more
11-21-2017
08:28 AM
|
0
|
1
|
1346
|
|
POST
|
Are you able to build and run a non-ArcGIS project in Qt Creator with the same kits selected? I am wondering if maybe the Microsoft Visual C++ compiler is not set up correctly, or if Qt Creator cannot find it for some reason?
... View more
11-21-2017
07:08 AM
|
0
|
0
|
1860
|
|
POST
|
I also want to add that with our next release (due out at the end of the year), we will have a way to create a line symbol with an arrow, without having to do the entire Pro SymbolStyle workflow.
... View more
11-14-2017
06:51 AM
|
0
|
0
|
1679
|
|
POST
|
It should work whether you set it on the renderer or on an individual graphic. In your code, have you made sure it isn't some timing issue? Perhaps the graphic is getting created before the symbol is fetched from the SymbolStyle? Also, have you verified that the fetchSymbolCompleted signal is firing?
... View more
11-14-2017
06:44 AM
|
0
|
1
|
1679
|
| 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
|