|
POST
|
Runtime doesn't have any built in ways to convert data from one format to shapefile. For the time being, the format we support for creating ad hoc on the fly is FeatureCollection. Also, with Update 6, we will support creating KML documents on the fly. One workflow could be to create a script tool that takes in a feature collection and converts it to a shapefile. This could be run as a separate server side process on a regular schedule, or could be a GP Service if you wanted to call from the app itself.
... View more
08-06-2019
02:12 PM
|
1
|
0
|
1276
|
|
POST
|
To build against different versions of the SDK, simply include the PRI that you want to build against in your project's .pro file. For example For 100.4, add the following to your .pro: include(/InstallDir/ArcGIS_SDKs/Qt100.4/sdk/ideintegration/arcgis_runtime_qml_cpp.pri) For 100.5, add the following to your .pro include(/InstallDir/ArcGIS_SDKs/Qt100.5/sdk/ideintegration/arcgis_runtime_qml_cpp.pri) For convenience, we have everything setup in our DSA app and our app templates so that all you need to do is change the version variable, and it'll update the include path automatically. For example, once we release 100.6, you can update the Vehicle version of DSA by changing this variable, running qmake, and rebuilding - https://github.com/Esri/dynamic-situational-awareness-qt/blob/master/Vehicle/Vehicle.pro#L23
... View more
08-06-2019
10:26 AM
|
1
|
0
|
992
|
|
POST
|
Unfortunately, it looks like there are 2 bugs in the software: - web tiled layer doesn't respect no data tile behavior in 2d but serviceimagetiledlayer does - all tiled layers don't respect no data tile behavior in 3D Until we fix it in the API, I don't think there would be any workaround other than to try and avoid the frequency of missing data tiles.
... View more
08-01-2019
10:23 AM
|
0
|
0
|
396
|
|
POST
|
To run that sample, you'll need to scroll down to the bottom of the QML code an uncomment the AuthenticationView. It is a little confusing, but we need to do this because these samples are pulled into the sample viewer, which also has an AuthenticationView declared. Having multiple instances of it would result in lots of sign in prompts when an authentication challenge came through, so we chose to comment it out in the code. Hopefully that'll make it work for you. If you still have issues or you have suggestions on a better way to do this, please let us know. Thanks!
... View more
07-31-2019
01:21 PM
|
1
|
1
|
1053
|
|
POST
|
Looks like the tiles show up, but the no data behavior property isn't respected in 3D - only 2D.
... View more
07-30-2019
07:52 AM
|
0
|
2
|
2878
|
|
POST
|
Hi Jorge- It seems like the no data behavior is not working on WebTiledLayer. This seems like a bug. As a workaround, could you try implementing a custom basemap with ServiceImageTiledLayer instead? It is more code but very customizable and works as you describe your requirements: // add a mapView component
MapView {
anchors.fill: parent
// set focus to enable keyboard navigation
focus: true
// add a map to the mapview
Map {
Basemap {
id: basemapOSM
ServiceImageTiledLayer {
noDataTileBehavior: Enums.NoDataTileBehaviorBlank
fullExtent: Envelope {
spatialReference: SpatialReference { wkid: 3857 }
xMin: -20037508.342789244
xMax: 20037285.703807656
yMin: -20037471.205137063
yMax: 20037471.205137063
}
tileInfo: declaredTileInfo
// use callback function to request tiles
tileUrlCallback: function(level, row, col) {
var requestUrl = "/Users/luca6804/Downloads/topofire/topofire/" + level +"/" + col + "/" + row + ".jpg";
return requestUrl;
}
}
}
}
}
TileInfo {
id: declaredTileInfo
dpi: 96
format: Enums.TileImageFormatPNG
origin: Point {
spatialReference: SpatialReference { wkid: 3857 }
x: -20037508.342789244
y: 20037508.368847027
}
spatialReference: SpatialReference { wkid: 3857 }
tileHeight: 256
tileWidth: 256
LevelOfDetail {
level: 0
scale: 591657527.591555
resolution: 56543.03392800014
}
LevelOfDetail {
level: 1
scale: 295828763.795777
resolution: 78271.51696399994
}
LevelOfDetail {
level: 2
scale: 147914381.897889
resolution: 39135.75848200009
}
LevelOfDetail {
level: 3
scale: 73957190.948944
resolution: 19567.87924099992
}
LevelOfDetail {
level: 4
scale: 36978595.474472
resolution: 9783.93962049996
}
LevelOfDetail {
level: 5
scale: 18489297.737236
resolution: 4891.96981024998
}
LevelOfDetail {
level: 6
scale: 9244648.868618
resolution: 2445.98490512499
}
LevelOfDetail {
level: 7
scale: 4622324.434309
resolution: 1222.992452562495
}
LevelOfDetail {
level: 8
scale: 2311162.217155
resolution: 611.4962262813797
}
LevelOfDetail {
level: 9
scale: 1155581.108577
resolution: 305.74811314055756
}
LevelOfDetail {
level: 10
scale: 577790.554289
resolution: 152.87405657041106
}
LevelOfDetail {
level: 11
scale: 288895.277144
resolution: 76.43702828507324
}
LevelOfDetail {
level: 12
scale: 144447.638572
resolution: 38.21851414253662
}
LevelOfDetail {
level: 13
scale: 72223.819286
resolution: 19.10925707126831
}
LevelOfDetail {
level: 14
scale: 36111.909643
resolution: 9.554628535634155
}
LevelOfDetail {
level: 15
scale: 18055.954822
resolution: 4.77731426794937
}
LevelOfDetail {
level: 16
scale: 9027.977411
resolution: 2.388657133974685
}
LevelOfDetail {
level: 17
scale: 4513.988705
resolution: 1.1943285668550503
}
LevelOfDetail {
level: 18
scale: 2256.994353
resolution: 0.5971642835598172
}
LevelOfDetail {
level: 19
scale: 1128.497175
resolution: 0.2985821417799086
}
}
... View more
07-29-2019
07:46 AM
|
1
|
4
|
2878
|
|
POST
|
Hi Selim- We have support for 3D buildings through something called a scene layer. Scene layers can contain 3D objects with textures applied or they can be point cloud or integrated mesh lidar data, which can contain photo-realistic coloring. The general workflow is to design your 3D data in ArcGIS Pro or City Engine, then share as scene layer packages and consume in Runtime. Here is an example - https://github.com/Esri/arcgis-runtime-samples-qt/tree/master/ArcGISRuntimeSDKQt_CppSamples/Scenes/DisplaySceneLayer
... View more
07-26-2019
06:53 AM
|
1
|
1
|
1367
|
|
POST
|
Hi Armando, We currently only test and support the 16.04 and 18.04 LTS versions of Ubuntu - https://developers.arcgis.com/qt/latest/qml/guide/arcgis-runtime-sdk-for-qt-system-requirements.htm Anything on Ubuntu 19.04 is untested and the behavior is unknown
... View more
07-25-2019
11:31 AM
|
0
|
0
|
1464
|
|
POST
|
The Runtime API doesn't have any utilities to read images like this. Adding AppStudio for ArcGIS to see if they have any suggestions.
... View more
07-25-2019
10:57 AM
|
1
|
0
|
2286
|
|
POST
|
Read only, meaning the Query endpoint is not enabled, correct? If correct, then I can't think of a good way to do this in the Runtime API, because you'd typically do this through a ServiceFeatureTable object. However, in order to populate the feature table with features, it will need to be able to call query on the service. Outside of the Runtime API, you could make a request like you mentioned. ex: http://sampleserver6.arcgisonline.com/arcgis/rest/services/Wildfire/FeatureServer/0/3088311/addAttachment With AppStudio you could use the NetworkRequest type perhaps - https://doc.arcgis.com/en/appstudio/api/reference/framework/qml-arcgis-appframework-networkrequest/
... View more
07-24-2019
11:16 AM
|
0
|
1
|
2315
|
|
POST
|
Jeremy Roberts Eric Bader this should be resolved through this patch - https://community.esri.com/community/developers/native-app-developers/blog/2019/07/24/announcing-the-arcgis-desktop-engine-server-microsoft-r-windows-r-june-2019-security-update-compatibility-patch
... View more
07-24-2019
07:41 AM
|
0
|
0
|
4010
|
|
POST
|
I recommend you take a look at our sample code for modifying feature attachments - https://github.com/Esri/arcgis-runtime-samples-qt/blob/master/ArcGISRuntimeSDKQt_QMLSamples/EditData/EditFeatureAttachments/EditFeatureAttachments.qml
... View more
07-24-2019
07:37 AM
|
0
|
3
|
2315
|
|
POST
|
for local URLs you can use the `file:///` prefix instead of `http://` To update the name, modify the custom image tiled layer URL in the setTileRequest function
... View more
07-24-2019
07:36 AM
|
0
|
1
|
3179
|
|
POST
|
can you please share your code and a screenshot of what it looks like?
... View more
07-24-2019
07:34 AM
|
0
|
2
|
3622
|
| 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 |
a month ago
|