|
POST
|
Hmm, I am printing out the extent no problem with the Damage Inspection geodatabase that comes in the SDK sample data folder. Maybe you could try using some sample data to determine if it is an issue with the code or with the data somehow. -Luke
... View more
01-06-2016
10:53 AM
|
0
|
4
|
2244
|
|
POST
|
If you are using OAuth and you don't want to have your user sign in, it sounds like you will need to use app logins. This guide topic explains how you can do this, and how you can populate the UserCredentials object with the proper information so that it can then be passed into the task. Use OAuth 2.0 authentication—ArcGIS Runtime SDK for Qt | ArcGIS for Developers
... View more
01-05-2016
05:09 PM
|
0
|
7
|
2269
|
|
POST
|
Robert- You can use UserCredentials for this. Set the username and password on the UserCredentials, and pass that into the credentials property (or setter if using C++) of the task. This should take care of acquiring the token based on your credentials and then making the required REST requests. -Luke
... View more
01-05-2016
03:47 PM
|
0
|
9
|
2269
|
|
POST
|
Bhargav- The extent shouldn't be on the Geodatabase itself, but rather on one of it its feature tables. Maybe once you load the feature layer with one of the feature tables, instead of printing out the extent of the feature layer, you print out the extent of the feature table. Thanks, Luke
... View more
01-05-2016
08:47 AM
|
0
|
6
|
2244
|
|
POST
|
Yes, annotation layers are not supported in the runtime geodatabase, so if this is a requirement for your project, the MPK may be more appropriate.
... View more
01-05-2016
08:12 AM
|
0
|
0
|
1402
|
|
POST
|
In my opinion, if you can do what you need with a runtime geodatabase (the geodatabase you create from the Create Runtime Content tool), then you should use this. The main reason being that it is one less dependency that your application has, and will lower the size of you application quite a lot. It sounds like everything you listed should be easily attainable with the runtime geodatabase. However, if you would rather use the MPK and local server for another reason, that would be perfectly viable as well. -Luke
... View more
01-04-2016
09:15 AM
|
0
|
2
|
1402
|
|
POST
|
The composite symbol is not yet released- it is something that we are considering doing for our Quartz release, but is still in design and is not finalized at this point. Labeling graphics is also in design for Quartz right now, and is also not finalized. -Luke
... View more
12-31-2015
07:58 AM
|
0
|
0
|
1370
|
|
POST
|
Bhargav- Unfortunately, there isn't a way to create the types you mention with the API; you can just get them back from the military symbols. We are looking into some new designs for Quartz, but they will likely not make it in for final. Ultimately, a composite symbol that would allow you to take two different symbols and put them together into one symbol would be ideal. You could then define something like a marker symbol and a text symbol with an x and y offset, then put those together into one composite symbol to apply to a graphic. We are also looking to add labelling for graphics at Quartz, so you could label your graphic with whatever information you wanted. Thanks, Luke
... View more
12-30-2015
08:47 AM
|
0
|
2
|
1370
|
|
POST
|
Bhargav- There seems to be a bug in our select method, which is setting the "_action" property incorrectly. Luckily, there is a workaround. Can you try something like: Message selectMsg = MessageHelper::createSelectMessage(SymbolDictionaryType::Mil2525C, “message_id”, “position_report", true);
selectMsg.setProperty(“_action”, “select”); // set _action property to “select” or “un-select”
m_groupLayer->messageProcessor()->processMessage( selectMsg ); // process select message
... View more
12-29-2015
10:25 AM
|
0
|
1
|
1055
|
|
POST
|
Ian, Here is what I would do: 1) Run a queryFeatures against the GeodatabaseFeatureTable - ArcGIS Runtime SDK for Qt QML API: FeatureTable Class Reference 2) The queryFeatures result will return an FeatureResult, which has an iterator of features (FeatureQueryIterator - ArcGIS Runtime SDK for Qt QML API: FeatureQueryIterator Class Reference)). 3) Use a while loop to loop through the iterator while the iterator hasNext. This will give you access to the resulting feature. The feature has geometry - ArcGIS Runtime SDK for Qt QML API: Feature Class Reference 4) Once you have the geometry, you can directly call buffer() on the geometry, which will give you the output polygon geometry ArcGIS Runtime SDK for Qt QML API: Geometry Class Reference 5) Create a Graphic and add it to a GraphicsLayer. Use the buffer geometry for the graphic's geometry, and use a Renderer or a SimpleFillSymbol for the Graphics symbol. Hope this helps. Thanks, Luke
... View more
12-14-2015
07:53 AM
|
2
|
1
|
1447
|
|
POST
|
Shady- You should also be able to use 5.5.1 for iOS. Starting at 5.5, the SSL libraries that were needed were included with Qt, so we did not have to do a special build as with 5.4.1. Give it a try when you get a chance. However, you can still use the 5.4.1 kit that we provide. Thanks, Luke
... View more
12-14-2015
07:46 AM
|
1
|
0
|
1758
|
|
POST
|
Shane, If you have access to the Runtime SDK samples, you can reference the Tiled Layers > "Download tile cache online" sample. It shows how to take an online service that has the Export Tiles capability enabled, and generate a tile cache to use offline with ArcGISLocalTiledLayer. What do you mean for simulating offline mode? AppFramework should have an isOnline type of flag that will tell you if you have a network connection or not. Maybe you could turn off your WiFi to simulate going in offline mode? -Luke
... View more
12-10-2015
04:41 PM
|
0
|
0
|
1529
|
|
POST
|
Hi Maximilian, What happens if you remove "-lGL" from the LIBS? Also, what happens if you add the Qt framework's "lib" folder to LD_LIBRARY_PATH within Qt Creator? Thanks, Luke
... View more
12-10-2015
10:02 AM
|
1
|
1
|
1638
|
|
POST
|
The GeodatabaseFeatureTable contains a featureType property that will return a list of feature types. You can loop through the list and get the name of each featureType and add it to the combo box's model. Thanks, Luke
... View more
12-07-2015
09:21 AM
|
1
|
0
|
955
|
|
POST
|
Hi Kishore, There is almost certainly a way to do this with Qt itself, but we do not have any methods baked into the API for this. At Quartz, we will have a way to export images from a map view, but actually exporting to PDF won't be an option even at Quartz. I believe you will need to look into using the QPrinter class from Qt - QPrinter Class | Qt Print Support 5.5 Thanks, Luke
... View more
12-07-2015
09:15 AM
|
0
|
0
|
1295
|
| 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
|