|
POST
|
Can you connect to the errorOccurred signal on the task to get the error message? Here is the REST doc - ArcGIS REST API - Services and Data Types
... View more
10-09-2017
08:09 AM
|
0
|
5
|
2306
|
|
POST
|
Fiddler - Free Web Debugging Proxy - Telerik It is a web debugging tool that helps you monitor the http traffic. There are other options as well, such as Charles.
... View more
10-02-2017
10:15 AM
|
0
|
0
|
2169
|
|
POST
|
Can you try connecting to the ExportTileCacheTask's errorOccurred signal to see if you get any more details? Also, you could try using Fiddler to monitor the http responses to see if you can get any more clues
... View more
10-02-2017
10:04 AM
|
0
|
2
|
2169
|
|
POST
|
No, not that I am aware of. This will alter the entire map view, including all layers and graphics inside of it.
... View more
10-02-2017
09:25 AM
|
1
|
0
|
5442
|
|
POST
|
I don't have any specific recommendations. ArcGIS Pro and ArcMap both contain a very rich suite of raster tools that provide lots of capabilities while still being very easy to use, so I recommend you use either of those applications.
... View more
10-02-2017
09:24 AM
|
1
|
0
|
1983
|
|
POST
|
I think you have 3 main options to manipulate the look of the layer in ArcGIS Runtime: - If the layer inherits ImageAdjustmentLayer, then use gamma, contrast, brightness. But it sounds like that is not what you need - Author your data differently. In ArcGIS Pro or ArcMap, when you are creating your data, you could change the appearance of your data here, using a method like what Dan showed above - Use shaders or play around with some other sort of client side rendering manipulation that Qt offers. For example, I have played around with the QML ShaderEffect type and our MapView, and have been able to see some cool effects applied to it - ShaderEffect QML Type | Qt Quick 5.9
... View more
10-02-2017
08:11 AM
|
0
|
2
|
5442
|
|
POST
|
There are many different ways to create raster data, depending largely on what type of data you have (points you want to interpolate into an elevation grid, imagery you have obtained from somewhere, polygons you have converted, etc). The data creation will be something you will do outside of ArcGIS Runtime, with a tool like ArcGIS Pro or ArcMap. Here are some of the most common tools - An overview of the To Raster toolset—Help | ArcGIS for Desktop
... View more
10-02-2017
08:03 AM
|
0
|
2
|
1983
|
|
POST
|
Rainer- Try connecting to the doneLoading signal for the layer and map, and printing out the spatial reference at that point. One of the biggest new paradigms in version 100 is the use of the Loadable interface, so often times you will need to wait until something is "loaded" to get access to metadata about it. Loadable pattern for asynchronous resources—ArcGIS Runtime SDK for Qt | ArcGIS for Developers For example: TileCache* tileCache = new TileCache(m_dataPath + "XXXXXXXXXX.tpk");
ArcGISTiledLayer* tiledLayer = new ArcGISTiledLayer(tileCache, this);
Basemap* basemap = new Basemap(tiledLayer, this);
m_map = new Map(basemap, this);
// connect to doneLoading signal
connect(m_map, &Map::doneLoading, this, [=](Error e)
{
if (!e.isEmpty)
{
qDebug() << "error" << e.message();
return;
}
// What is the spatial reference?
SpatialReference sr = m_map->spatialReference();
qDebug() << sr.wkid();
});
// either call m_map->load(), or set it to the MapView, which will implicitly load it
m_mapView->setMap(m_map);
... View more
10-02-2017
07:54 AM
|
1
|
0
|
1468
|
|
POST
|
All 2D marker symbols are a fixed pixel size. SimpleMarkerSymbols have a size property and PictureMarkerSymbols have a height and width. Those will show at a fixed pixel size no matter the scale you are at. The only caveat is that they are Device Independent Pixels (DIPs) as opposed to raw pixels. We do this so that things look the same on all platforms no matter the resolution of the screen.
... View more
09-27-2017
09:49 AM
|
0
|
0
|
2386
|
|
POST
|
Jonathon Grivas were you hitting a similar issue to this?
... View more
09-27-2017
09:43 AM
|
0
|
0
|
1132
|
|
POST
|
This is something that we do not yet support. We have a similar concept for 3D, but the renderer works in 3D only - http://developers.arcgis.com/qt/latest/cpp/api-reference/esri-arcgisruntime-distancecompositescenesymbol.html We are looking at ways to support this for 2D in an upcoming release. - Luke
... View more
09-27-2017
08:03 AM
|
0
|
2
|
2386
|
|
POST
|
I have couple of questions for clarification: - are you talking 2d or 3d? - when you say you want it to be a fixed size, do you mean you want it to be an exact number of pixels at all times, regardless of the zoom level? Or are you saying you want it to be a fixed size only at a given scale, so that if you zoom in beyond that scale it gets bigger, and if you zoom out, it gets smaller and eventually disappears (like a reference scale - Map reference scales—Properties of maps | ArcGIS Desktop )
... View more
09-27-2017
06:53 AM
|
0
|
4
|
2386
|
|
POST
|
Tested on the following: 1) Windows 10 64 bit Intel i7 2.7.0 GHz 16 GB RAM Qt 5.6.2 and Qt 5.9.1 OpenSSL 1.0.2 (the dlls are in our sample viewers we ship with the SDK) 2) macOS Sierra Intel i7 2.6 GHz 16 GB RAM Qt 5.9.1
... View more
09-25-2017
07:12 AM
|
0
|
0
|
2634
|
| 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
|