|
POST
|
Try the following: - Create a UserCredentials object with the username/password - ArcGIS Runtime SDK for Qt QML API: UserCredentials Class Reference - Assign this object to your Layer's credential property - ArcGIS Runtime SDK for Qt QML API: Layer Class Reference
... View more
05-03-2016
09:20 AM
|
0
|
1
|
961
|
|
POST
|
We have released a patch for ArcGIS Runtime SDK for Qt 10.2.6. Details here - ArcGIS Runtime SDK 10.2.6 for Qt Patch is available, improves stability and security | ArcGIS Blog.
... View more
05-02-2016
01:49 PM
|
0
|
0
|
3235
|
|
POST
|
The 2 SDKs should be able to be installed on the same machine without any issues. This error indicates that ArcGIS Runtime SDK for Qt was previously installed (current or older) but probably did not get uninstalled properly for whatever reason. Have you ever had our Qt SDK (of any version) on this machine before? To troubleshoot, try the following: - Check if the following file exists, and if so, remove it - ~/Library/Application Support/Esri/com.esri.ArcGISRuntimeSDKQt.properties.<version> - There’s an XML file called “.com.zerog.registry.xml” at ~/Library/Preferences directory. If that file contains only information about RuntimeSDK Qt only, then you can safely remove it. Otherwise, perhaps you can send a copy to us for us to take a look? Thanks, Luke
... View more
04-26-2016
11:14 AM
|
0
|
1
|
1097
|
|
POST
|
Can you try setting your where clause to "1=1" to see if you can get anything/everything back?
... View more
04-25-2016
09:22 AM
|
0
|
2
|
1976
|
|
POST
|
One possible other workaround you could use would be to use precompiled headers, and to include ResolutionList.h in pch.h, then include pch.h in all cpp files.
... View more
04-22-2016
10:27 AM
|
0
|
0
|
1060
|
|
POST
|
One more thing to try. In your Query object (that you will pass into the Query Task), can you try calling setDynamicLayerInfo (ArcGIS Runtime SDK for Qt C++ API: EsriRuntimeQt::Query Class Reference)). Then, pass in a DynamicLayerInfo created from your LayerSource.
... View more
04-22-2016
09:49 AM
|
0
|
4
|
1976
|
|
POST
|
And the TPK is copied onto the device into that specified location? If not, please use iTunes to transfer the TPK from your desktop onto your device. If you have already done this, then it may be worth posting your question in the AppStudio space. Someone using AppStudio may be able to give you pointers on using the Player app with local offline data.
... View more
04-20-2016
08:43 AM
|
0
|
0
|
1959
|
|
POST
|
The geodatabases from create runtime content GP tool are read only.
... View more
04-20-2016
08:41 AM
|
1
|
0
|
1004
|
|
POST
|
Yes, this is a bug in 10.2.6 release. FeatureLayer and ArcGISFeatureLayer legends do not work. This issue is fixed with our Quartz release, which will have a beta coming out in the next few months.
... View more
04-20-2016
08:18 AM
|
1
|
0
|
1155
|
|
POST
|
Interesting. Our dll does export the symbols for QList<double> but it's only a problem if the compiler doesn't know about it ahead of time. Since testobject.o, where the QList<double> member resides, has no idea about our ResolutionList.h the compiler is generating all the template functions for a QList of doubles. Then at link time there are duplicates in our dll and testobject.o. By including our ResolutionList.h, it tells the compiler that these definitions already exist so it doesn't need to generate them again. So with that said, can you please try working around the issue by including ResolutionList.h in the class that uses QList<double>?
... View more
04-19-2016
01:20 PM
|
0
|
2
|
1060
|
|
POST
|
You will need to specify the path to these TPKs. In the case of AppStudio, a good cross platform method is to use is the AppFramework.userHomePath property. This will return to you the "user home" location on each device. In the case of iOS, that would be <application_bundle>/Documents. So, in your code, you could say "path: AppFramework.userHomePath + "/WairarapaImagery.tpk", and then make sure to transfer your TPK to that location on your device (usually via iTunes).
... View more
04-19-2016
09:33 AM
|
1
|
2
|
1959
|
|
POST
|
What does your path look like for referencing the local tiled layer?
... View more
04-18-2016
03:00 PM
|
0
|
4
|
1959
|
|
POST
|
A QueryTask should work just fine. If you print out the URL to your local service once it starts, you should be able to see it in the browser, and execute a query from there as well. Are you making sure to point the url to the individual layer, and not the root of the service?
... View more
04-18-2016
01:42 PM
|
0
|
1
|
1976
|
|
POST
|
Fred, Thanks for your investigation. Can you please file a support request so that they can continue troubleshooting and log a bug? Thanks, Luke
... View more
04-18-2016
01:39 PM
|
0
|
0
|
2316
|
|
POST
|
Hmm, it seems like it is having issues assigning it declaratively. Try setting it in JavaScript, and see if it works. I believe I have it working with the following code: import QtQuick 2.3
import QtQuick.Controls 1.2
import ArcGIS.Runtime 10.26
ApplicationWindow {
id: appWindow
width: 800
height: 600
title: "Time Interval"
Map {
id: mainMap
anchors.fill: parent
wrapAroundEnabled: true
ArcGISTiledMapServiceLayer {
url: "http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"
}
ArcGISDynamicMapServiceLayer {
id: timeAwareDynamicLayer
url: "http://tmservices1.esri.com/arcgis/rest/services/LiveFeeds/Earthquakes/MapServer"
onTimeIntervalChanged: {
console.log("time interval changed")
}
onStatusChanged: {
if (status === Enums.LayerStatusInitialized) {
// assign a new timeInterval
timeAwareDynamicLayer.timeInterval = myTimeExtent;
}
}
}
}
TimeExtent {
id: myTimeExtent
startDate: new Date(2016, 2, 27)
endDate: new Date(2016, 2, 28)
}
}
As a side note, I recommend using the layer status (statusChanged signal) instead of Component.onCompleted for something like this. With checking layer status, you can make sure it is initialized, whereas Component.onCompleted is built into all QML types, and will just tell you if it is default constructed basically. In this case, we want to wait until we actually know it is initialized, meaning it has gone out to the service, obtained all of the layer info, been added to the map, etc. Component.onCompleted would likely fire before all of that stuff has happened. -Luke
... View more
04-15-2016
11:12 AM
|
0
|
1
|
1305
|
| 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
|