|
POST
|
Hey KK, The Runtime does not support these file formats. We support working with sqlite geodatabases with the .geodatabase file extension. There are 2 ways to create these. The first option is to load the data into ArcMap and use the "Create Runtime Content" GP tool. This will take your features and convert them to a runtime sqlite geodatabase. You can then edit features with this gdb. However, there is not a synchronizing tool at this point, so edits will not be able to be applied back to the file geodatabase. The most common scenario for offline editing is where a user will publish a feature service (either on server or as a hosted feature service in ArcGIS Online/Portal) and set the Sync capabilities to true. You would then create a replica from the service, which would create a .geodatabase for you from the service. Once you do your edits, you can then apply those edits to the service, and the service will pick up any changes and save them to your enterprise geodatabase. Please see the "Local geodatabase editing" sample in the QML Sample app for more details about how to do this. Thanks! Luke
... View more
03-13-2015
09:25 AM
|
1
|
3
|
1865
|
|
POST
|
Hey KK, You can read all about AppStudio for ArcGIS here - AppStudio for ArcGIS | ArcGIS Thanks, Luke
... View more
03-10-2015
10:42 AM
|
2
|
3
|
1426
|
|
POST
|
KK- Can you please upload your code? I don't know for certain, but it looks like you may be creating a ClassBreaksRenderer and the Enum for renderer type is causing some problems. Seeing your application's code should help diagnose the issue. Thanks, Luke
... View more
03-09-2015
09:25 AM
|
0
|
0
|
779
|
|
POST
|
Hey Rainer- Yes, this is normal console output when the application launches. Thank you, Luke
... View more
03-09-2015
09:22 AM
|
0
|
0
|
1283
|
|
POST
|
Hey Juan, The new build for Windows on 5.4.1 is now up and ready for download in the same place you got 5.4.0. With this, you will use Qt 5.4.1 with our SDK. Thanks! Luke
... View more
03-05-2015
09:39 AM
|
2
|
1
|
3434
|
|
POST
|
We have a navigation toolbar in the toolkit that comes with the SDK. Checkout the "Navigation toolbar" sample under the toolkit section of the sample app. You might also find the "Navigation actions" sample under the Map category useful. Keep in mind that in QML, elements are drawn in the order they are declared, so make sure to add the navigation toolbar near the end of your page, so that it draws on top of the map. Also, the navigation toolbar binds to the map, so it must be a child of the map (i.e. declared inside of the map component. Hope that helps. -Luke
... View more
03-05-2015
09:26 AM
|
1
|
0
|
1951
|
|
POST
|
Hey Rainer- You can follow the same instructions that we went through on that forum. Please keep in mind that with both the 10.3 Beta and the 10.2.5 final cut, RHEL 7 is not technically listed on the supported platforms- we only officially support 6.2-6.6. From our testing, it should mostly work just fine, with the exception of local server (with C++). The special instructions on the website for 6.x are should be taken into account for 6.x only, as there is a compatibility issue with the version of gcc on those RHEL machines. If you decide to try and run our SDK on RHEL 7, you should not use the custom build that we provide. You will need to download 5.4.0 or 5.4.1 (from the Qt Company) with the final cut of ArcGIS Runtime SDK for Qt 10.2.5. Thanks! Luke
... View more
03-04-2015
12:59 PM
|
0
|
2
|
1283
|
|
POST
|
Rainer- This is something different. The tile handler suits a few different workflows. One would be accessing tiles from non ArcGIS Services or caches. Another would be to directly pull tiles from a cache via http request, when your tiles were hosted on a web server somewhere. There are probably other use cases. However, if you created a tile package in ArcMap, you will only need the ArcGISLocalTiledLayer, and the absence of the tile handler and tile info classes will not affect you. I remember seeing some similar issues at the beta with another user's TPK. I recommend you download a copy of final release and see if the issue is fixed. Thanks! Luke
... View more
03-04-2015
09:52 AM
|
0
|
4
|
1283
|
|
POST
|
No, there is no sketching tool at this point with the QML API. I recommend you checkout some of the samples in the QML sample app. Specifically, many of the geometry samples show how to sketch points, lines, and polygons. The "Relation online" sample is a good example of this. A sketching tool in some capacity is something that we are looking at adding in an upcoming release. Thanks, Luke
... View more
03-04-2015
08:59 AM
|
2
|
2
|
1951
|
|
POST
|
Hey Juan- The issue is probably because of Qt 5.4.1. For the version that is currently available for download, you must use 5.4.0 for Windows (see system requirements here - System requirements—ArcGIS Runtime SDK for Qt | ArcGIS for Developers). This is due to a Qt Company bug, where binaries lost backwards/forward compatibility at 5.4.0. Our binaries that you downloaded were built with 5.4.0, so you will need that version. 5.4.1 was released just as we were releasing 10.2.5. We are in the process of certifying a new build off 5.4.1, and that will be available for you to use very soon. Stay tuned for more information. See the note about this and follow the blog here - ArcGIS Runtime SDK 10.2.5 for Qt is now available | ArcGIS Blog Here is the Qt Company blog that explains the break in binary compatibility - Qt 5.4.1 Released | Download Qt 5.4.0 here - Index of /archive/qt/5.4/5.4.0 Let me know if you have any questions about any of this. Thanks! Luke
... View more
03-02-2015
08:45 AM
|
0
|
2
|
3434
|
|
POST
|
Hi Miguel, The samples unfortunately weren't designed in a way that they could be fully copied out, as there are some internal classes that are used. The headers that you mention it can't find are those internal classes we use. With the samples, you will need to pull out the pieces that you like and integrate them into your app, as copying the header/source in its entirety won't work. Thank you, Luke
... View more
02-27-2015
09:28 AM
|
1
|
0
|
3453
|
|
POST
|
Hey Chuck- In your Qt Creator preferences under Android, do you have the checkbox to use Gradle instead of Ant checked? I have seen a similar error to what you were seeing when I had this checked. If this is the case, and you do want to use Gradle, then go into your template at Android/Other files/res/values/strings.xml, and remove the ministro related strings and the fatal error string. It seems that these are not necessary if you are using Gradle, but are with Ant. Your other option could be to just use Ant instead of Gradle if you have no preference. If that's not related to the issue, then just out of curiosity, could you try creating a brand new project with the template and deploying it to Android? That will help us determine if there is a change that needs to happen in the project or with Qt Creator/some prereq. Thanks, Luke
... View more
02-27-2015
09:23 AM
|
1
|
2
|
1194
|
|
POST
|
Hey Miguel, With this version on Windows, you will need Qt 5.1.1 with Microsoft VS 2012. It's always possible there is another issue, but for starters, 2012 and not 2013 is what you will need. Let me know how this goes. Also, just so you know, we will be releasing a new version of the SDK in the upcoming week or so, and this will use Qt 5.4 with Microsoft VS 2013 on Windows. You may want to watch out for this, so that you are using the most up to date version of the software. Thank you, Luke
... View more
02-20-2015
09:25 AM
|
0
|
1
|
3453
|
|
POST
|
Hi Vijdan, This header isn't available to you, and there is some code in the samples that is relating to making all of the pieces of the sample app come together. We recommend that you read through the code to determine the pieces that you need, and copy those over into a template app, as opposed to migrating the entire header and cpp file over. Thank you, Luke
... View more
02-19-2015
10:11 AM
|
0
|
1
|
803
|
| Title | Kudos | Posted |
|---|---|---|
| 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 | |
| 1 | 06-26-2015 10:19 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|