|
POST
|
Sorry for the confusion. Can you post this in the .NET space? ArcGIS Runtime SDK for .NET That will notify the .NET community and they will be able to help investigate. Thanks, Luke
... View more
07-24-2015
11:18 AM
|
0
|
0
|
1580
|
|
POST
|
Andy- From reading through StackOverflow and some Apple doc, it seems you have a few options. The issue is that anything in the Documents folder will get backed up unless you explicitly tell it not to. See this stack overflow thread http://stackoverflow.com/questions/16521080/how-to-remove-automatically-data-backup-from-icloud-in-ios-app One thing you could try is on iOS, actually saving your data to the temp folder instead of documents. The Extras plugin has a function that returns the temp location - ArcGIS Runtime QML Extras: System Class Reference Otherwise, it seems you need to write some Objective C, and would need to integrate that with Qt somehow. This would be need to tell the app to back up your Documents folder, but to exclude some certain subfolders. This is explained here Technical Q&A QA1719: How do I prevent files from being backed up to iCloud and iTunes? You will need to use either the addSkipBackupAttributeToItemAtURL or addSkipBackupAttributeToItemAtPath methods. Once you add the Objective C Class, you will need to look into calling this from within Qt (ex: [SOLVED]Using objective-c class in qt c++ | Qt Forum ) Hope this helps. The temp location may be the quickest solution, but that decision is up to you. Thanks, Luke
... View more
07-24-2015
11:14 AM
|
0
|
2
|
1311
|
|
POST
|
Not currently. We will be adding support for local raster reading with the Qt SDK in an upcoming release, but this does not exist with the current 10.2.6 release.
... View more
07-23-2015
10:14 AM
|
0
|
0
|
718
|
|
POST
|
Sorry Andy, I wasn't very clear. You can edit the geodatabase coming from ArcMap if it is registered with a service. Otherwise you cannot, and there is no real reason to do so anyway, because there is no check in process through ArcMap only (your edits happening in Runtime would never be able to make it back into ArcMap).
... View more
07-23-2015
10:11 AM
|
1
|
5
|
2623
|
|
POST
|
If you are using the Developer license, then this is a different issue. The original issue in this thread was because it wasn't using Developer or Standard - it was using only a Basic license. I recommend you post in the .NET thread and someone in the .NET community will be able to better help troubleshoot.
... View more
07-23-2015
09:38 AM
|
0
|
0
|
3494
|
|
POST
|
Yes, that static method should allow you to connect to a file geodatabase. You will need to use this in conjunction with Local Server in C++. I recommend you take a look at the Local Server > Shapefile sample and base your code off that. Thanks, Luke
... View more
07-17-2015
02:45 PM
|
0
|
8
|
3036
|
|
POST
|
I guess I read over this too fast and missed the two fields part of this. You are right, you can only specify the one default symbol. Otherwise, it is up to the developer to define all of the possible different unique value combinations. -Luke
... View more
07-13-2015
02:25 PM
|
0
|
0
|
1918
|
|
POST
|
Hey Paul- Set the default label and default symbol. Everything will get labeled/symbolized like that symbol unless they match one of your class breaks or unique values, in which case they will use whatever you assigned it. Thanks, Luke
... View more
07-13-2015
08:45 AM
|
0
|
2
|
1918
|
|
POST
|
Hi Ceyhun- The C++ API is only supported on Windows and Linux as of the 10.2.6 release. Here is the C++ System Requirements that lists the versions of Windows and Linux that are supported for C++ development - System requirements—ArcGIS Runtime SDK for Qt | ArcGIS for Developers We are looking into supporting this in the future. However, at this point, Android, iOS, and Mac development must be done using our QML API. Thanks, Luke
... View more
07-13-2015
08:42 AM
|
0
|
1
|
1969
|
|
POST
|
Hi KK, We are planning on adding a cut() operation to the Geometry Engine in a future release, but don't currently have this in the API. Thanks, Luke
... View more
07-10-2015
02:19 PM
|
0
|
1
|
1515
|
|
POST
|
Kishore, You can edit a Geodatabase created through Runtime Content, the restraint is that you can't really check that data back in to ArcMap. If you need to check your edits back in, your options are to use the full sync feature service workflow, or you could generate geodatabases, and then register them with a sync enabled feature service. Are you getting an error of any sort? Make sure it is in a read/write location on your machine. The code in the "Local Geodatabase Editing" sample should work just the same on your geodatabase. Thanks, Luke
... View more
07-10-2015
09:26 AM
|
0
|
7
|
2623
|
|
POST
|
Prem- Yes, just copy the whole string into it. -Luke
... View more
07-09-2015
11:52 AM
|
0
|
2
|
2008
|
|
POST
|
Hi Prem- It looks like our doc hasn't been updated correctly. I will put in a request to get this fixed up. Since you are obtaining a license and not going through portal, you will need to do the following: - Go into the AppInfo.h and set your client id - Go into the AppInfo.h and set your license (and uncomment it) This will eventually call the following lines in the main.cpp // Initialize license
#ifdef kClientID
QCoreApplication::instance()->setProperty("ArcGIS.Runtime.clientId", kClientId);
#ifdef kLicense
QCoreApplication::instance()->setProperty("ArcGIS.Runtime.license", kLicense);
#endif
#endif
If you aren't using our template, then use the above lines and replace kClientId and kLicense with the info you have received. You actually can't set the license in QML, as this could be a potential security issue, as the QML is interpreted and not necessarily compiled. You can check if everything is set correctly in QML though, by doing something like the following: Component.onCompleted: {
if (ArcGISRuntime.license.licenseLevel === Enums.LicenseLevelBasic) {
console.log("basic");
} else if (ArcGISRuntime.license.licenseLevel === Enums.LicenseLevelStandard) {
console.log("standard");
} else if (ArcGISRuntime.license.licenseLevel === Enums.LicenseLevelDeveloper) {
console.log("developer");
}
} Thanks, Luke
... View more
07-08-2015
04:11 PM
|
1
|
4
|
2008
|
|
POST
|
The only issue that we saw with pre-release 5.5 was that there were some binary compatibility issues on Windows. We reported those and they were fixed for the final release, so you should be good to go with 10.2.6 of the SDK and 5.5 of Qt. If you find any issues, please report them. Thanks, Luke
... View more
07-07-2015
12:47 PM
|
0
|
1
|
2147
|
|
POST
|
Paul, I can tell you how to do this with the SDK, but I am not sure on the technical details with AppStudio I recommend you post this same question in the AppStudio space (or in the Beta Community forum), and someone should be able to assist you there. Thanks, Luke
... View more
07-07-2015
12:45 PM
|
1
|
1
|
1697
|
| 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 |
3 weeks ago
|