|
POST
|
We don't have a sample for that yet. However, you should be able to create an OfflineMapTask object from a Map and optional Credentials. Once you do that, call createDefaultGenerateOfflineMapParameters and pass in your extent OfflineMapTask Class | ArcGIS for Developers . This will create your parameters for the job. Finally, call generateOfflineMap, pass in the parameters you just created, and start the job object that is returned. OfflineMapTask Class | ArcGIS for Developers
... View more
07-24-2017
02:03 PM
|
0
|
0
|
3689
|
|
POST
|
100.1 supports heat maps if you create the map in ArcGIS Online and then open the map in Qt. It will display the heatmap just as it looks in the browser. There is no API yet to modify it programmatically on the client side. 100.2 is slated for the end of the year, but I am not certain if the client side renderer will be available or not.
... View more
07-17-2017
08:15 AM
|
0
|
2
|
2985
|
|
POST
|
Yes, that should work with the RasterElevationSource class
... View more
07-06-2017
08:22 AM
|
2
|
1
|
1201
|
|
POST
|
I would try and figure out what is triggering the keyboard to show. Otherwise it might end up in a race condition and you might get differing results. Maybe a text box or something has focus and is causing this? Might be a good question for the qt-forums - Home | Qt Forum
... View more
07-05-2017
01:13 PM
|
2
|
0
|
1015
|
|
POST
|
Basically, the issue is that most UI elements in QML are defined in raw pixels. However, due to extremely different screen resolutions from a high end Android device to a low end Windows monitor, 14 pixels will look much different. On a very high DPI device, 14 pixels would be very tiny, and on a lower DPI device, it might look how you want. So, we provided this helper that basically figures out a factor that you need to multiply the raw pixel value by so that it looks exactly the same on all devices, no matter the resolution. One of the newer features of Qt is to enable high DPI support. This is something you can try if you like. We have found that it doesn't always work well on some platforms, but in general it seems to work well. More info can be found about this on Qt's website - High DPI Displays | Qt 5.9
... View more
07-05-2017
01:12 PM
|
2
|
0
|
1079
|
|
POST
|
Runtime 100 supports reading rasters directly, but only the formats listed here - Add raster data—ArcGIS Runtime SDK for Qt | ArcGIS for Developers So in your case, this format is not supported and you would need to create the TPK like you mention. We do not yet support identifying a raster and getting the value back. I haven't tried this, but one option could be to make GeoprocessingService that uses Get Cell Value GP tool? Get Cell Value—Data Management toolbox | ArcGIS Desktop
... View more
07-05-2017
10:51 AM
|
0
|
0
|
1141
|
|
POST
|
Yea, it would be interesting to watch the traffic in Fiddler or something like that. My guess is the Server takes a bit of time to reproject all of that local raster data before it sends the images back. It is certainly not a trivial change, so a performance hit would likely be expected...
... View more
07-05-2017
10:43 AM
|
2
|
0
|
1699
|
|
POST
|
you would need to create a function that loops through the baseLayers and referenceLayers of your basemap, and set visibility of all of those baseLayers and referenceLayers to false.
... View more
07-05-2017
10:25 AM
|
2
|
1
|
1629
|
|
POST
|
A couple of things: If you go to that endpoint, you will see the following key - Single Fused Map Cache: true This is basically synonymous with a "cached tiled map service", so you should use the ArcGISTiledLayer class for this. I'm actually not really sure how it is working with the map image layer. Maybe that is the hang up? Another thought could be the 5.8 networking bug (not sure what version you are on) - https://community.esri.com/community/developers/native-app-developers/arcgis-runtime-sdk-for-qt/blog/2017/06/15/important-notice-about-qt-framework-58-and-arcgis-online-tiled-layers
... View more
07-05-2017
10:23 AM
|
2
|
2
|
1699
|
|
POST
|
A Basemap object is basically a collection of baseLayers and referenceLayers, so if you wanted to turn off the "Basemap", you would need to iterate through the collections and set the visibility to false - Basemap QML Type | ArcGIS for Developers
... View more
07-05-2017
10:11 AM
|
2
|
3
|
1629
|
|
POST
|
Yes, that should work. My best guess is the map is created in a spatial reference other than wkid 3957 spatial reference, and then you try and add that basemap, which is in 3857, and the basemap tiles cannot reproject, so it doesn't display the imagery.
... View more
07-05-2017
09:54 AM
|
0
|
0
|
1200
|
|
POST
|
Yes, this is possible. A Map in a MMPK is no different than any other map, so you can set its basemap, modify the operational layers, etc.
... View more
07-05-2017
08:17 AM
|
0
|
2
|
1200
|
|
POST
|
Are you referring to the "Developer" license level? If so, everything is enabled when it is "Developer" mode. This is discussed in our Guide: License your app—ArcGIS Runtime SDK for Qt | ArcGIS for Developers Here is an excerpt from the above link: You can download and install an ArcGIS Runtime SDK using an ArcGIS for Developer account. You then have access to all of the functionality in the API for development and testing purposes. In this mode the app will adopt the following behavior: Any map will be watermarked with the words Licensed For Developer Use Only (as pictured here). A message will be written to the console or log that states that the app is Licensed For Developer Use Only.
... View more
07-05-2017
08:15 AM
|
2
|
1
|
960
|
|
POST
|
Yes, you select features in the same way as you would in 2D, because the MapView and SceneView share the same base class - GeoView - GeoView QML Type | ArcGIS for Developers If you are trying to select graphics, use identifyGraphics() method on the mouseClicked signal to get back a list of graphics. You can then select those Graphics. If you are trying to select a feature from a layer, you would instead call identifyLayer() method.
... View more
07-04-2017
10:45 AM
|
1
|
1
|
1269
|
|
POST
|
Sorry Tobern, I completely missed this. I'll be pretty tied up the next 2 weeks with the User Conference (and prep for it). I will try and take a look after. - Luke
... View more
07-03-2017
01:32 PM
|
0
|
5
|
2786
|
| 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
|