|
POST
|
Is there a specific platform you are wondering about? Each platform has its own nuances.
... View more
02-22-2017
06:57 AM
|
0
|
2
|
1245
|
|
POST
|
It has not been fixed. The most recent patch still has the assignment operator.
... View more
02-17-2017
11:56 AM
|
0
|
2
|
4209
|
|
POST
|
The Esri lib is probably automatically getting added because we have are adding it via qmake in the arcgis_runtime_qml10_2_6.prf file. So even if you remove it, each time qmake runs, it gets added back due to this line getting executed - ANDROID_EXTRA_LIBS = $${SDK_INSTALL_DIR}/sdk/$${PLATFORM}/armv7/lib/libEsriRuntimeQt.so Now that I am looking at it, I wonder if this line needs to get changed to use += instead of = ANDROID_EXTRA_LIBS += $${SDK_INSTALL_DIR}/sdk/$${PLATFORM}/armv7/lib/libEsriRuntimeQt.so This could be blowing it out every time because it is using the assignment operator. I see that is something that we fixed in our new templates (v 100). Can you try going into the following file and fixing that? <qt kit location>\mkspecs\features\arcgis_runtime_qml10_2_6.qml
... View more
02-17-2017
11:37 AM
|
0
|
4
|
4209
|
|
POST
|
Just a thought, but do the paths to your ssl libs have spaces in them? Whenever I build anything Qt related for Android on a Windows host machine, I need to make sure there are no spaces, otherwise various steps of the build fail. Also, have you tried doing this to a brand new project? Would be good to validate that there is nothing being cached somewhere beyond the shadow build directory.
... View more
02-17-2017
10:42 AM
|
0
|
7
|
4209
|
|
POST
|
https://community.esri.com/thread/189779-release-date-of-update-one
... View more
02-16-2017
08:54 AM
|
1
|
0
|
2347
|
|
POST
|
Marco- I tried your code and it works for me (the order prints out descending). Then, I realized that I am testing with a local build of Update 1, and not the 100.0 final release. This is a bug with the final release of 100.0 that we have recently fixed, and that you will get with the release of Update 1. Apologies for the confusion! -Luke
... View more
02-16-2017
07:39 AM
|
2
|
2
|
2347
|
|
POST
|
This sounds similar to this thread Sample code Do you have the OpenGL requirements installed? Qt for Linux/X11 | Qt 5.8
... View more
02-16-2017
07:34 AM
|
0
|
1
|
1630
|
|
POST
|
Hmm, it seems to be working from my test. Maybe you can share a repro case with some test data? Here is what I am doing: QueryParameters {
id: orderByQuery
whereClause: "1=1"
maxFeatures: 10
orderByFields: [
OrderBy {
fieldName: "OBJECTID"
sortOrder: Enums.SortOrderDescending
}
]
} Then I have a test function: // tests orderBy QueryParameters in queryFeatures
function test_0253_ServiceFeatureTableQueryFeaturesOrderBy() {
serviceFeatureTable.queryFeatures(orderByQuery);
compare(serviceFeatureTable.queryFeaturesStatus, Enums.TaskStatusInProgress);
verify(Utils.waitForTaskStatusCompleted(serviceFeatureTable, serviceFeatureTableUnitTests, "queryFeaturesStatus"));
compare(serviceFeatureTable.queryFeaturesStatus, Enums.TaskStatusCompleted);
while (serviceFeatureTable.queryFeaturesResult.iterator.hasNext) {
var feature = serviceFeatureTable.queryFeaturesResult.iterator.next();
console.log(JSON.stringify(feature.attributes.attributesJson))
}
} And this prints out: qml: {"GLOBALID":"96BB8A4A-F847-441E-B5BD-FCFC4D0ED336","OBJECTID":12303,"PLACENAME":null,"TYPDAMAGE_INT":1}
qml: {"GLOBALID":"3BB033A3-B4B6-4407-835A-A43A4028240F","OBJECTID":11892,"PLACENAME":null,"TYPDAMAGE_INT":1}
qml: {"GLOBALID":"0757C598-4FE4-4DDD-A71F-5F5B6D9A1188","OBJECTID":11891,"PLACENAME":null,"TYPDAMAGE_INT":1}
qml: {"GLOBALID":"24F0E648-BC2E-4D2B-A5E2-BC037D173DE1","OBJECTID":11890,"PLACENAME":null,"TYPDAMAGE_INT":1}
qml: {"GLOBALID":"1EA5D5D9-9086-4E8A-B490-9E394678C2B8","OBJECTID":11889,"PLACENAME":null,"TYPDAMAGE_INT":1}
qml: {"GLOBALID":"9EEAAA46-3C3C-4716-A30E-8603DCD6A7F3","OBJECTID":11888,"PLACENAME":null,"TYPDAMAGE_INT":1}
qml: {"GLOBALID":"2BA75D97-978B-4690-A70B-9D4EC6698213","OBJECTID":11887,"PLACENAME":null,"TYPDAMAGE_INT":1}
qml: {"GLOBALID":"EB41D73F-207F-40F2-9221-9FAEBCE25068","OBJECTID":11886,"PLACENAME":null,"TYPDAMAGE_INT":1}
qml: {"GLOBALID":"E6131832-2F87-4D66-8ADD-1B3681D864D8","OBJECTID":11505,"PLACENAME":null,"TYPDAMAGE_INT":1}
qml: {"GLOBALID":"E8BAE8E2-DE99-4DEE-A326-D9F1AEB82C96","OBJECTID":11504,"PLACENAME":null,"TYPDAMAGE_INT":1} If I switch to ascending, I get this: qml: {"GLOBALID":"8B68F79B-1B4D-4139-89F4-3EF532EA9957","OBJECTID":3,"PLACENAME":null,"TYPDAMAGE_INT":3}
qml: {"GLOBALID":"D11EA625-F08C-4535-9482-DD4ACB080FB9","OBJECTID":804,"PLACENAME":"Q bld","TYPDAMAGE_INT":5}
qml: {"GLOBALID":"3124D0B1-E56D-405E-BC63-2A162654C29E","OBJECTID":807,"PLACENAME":"H bld","TYPDAMAGE_INT":3}
qml: {"GLOBALID":"81B3E1EA-09BA-4600-B359-C4A68051CF41","OBJECTID":808,"PLACENAME":"HR","TYPDAMAGE_INT":1}
qml: {"GLOBALID":"EF6C4488-7AC4-4345-A454-BC04D5C4DC16","OBJECTID":813,"PLACENAME":"Esri","TYPDAMAGE_INT":5}
qml: {"GLOBALID":"A409DC80-715F-4504-A553-A1701EFBD354","OBJECTID":814,"PLACENAME":"Storage","TYPDAMAGE_INT":2}
qml: {"GLOBALID":"01203C5F-A4D1-4B29-87B1-4060E3C15CFC","OBJECTID":815,"PLACENAME":"Palm Springs Aerial Tramway","TYPDAMAGE_INT":1}
qml: {"GLOBALID":"53DD78A1-AA0E-4077-BDF7-63EBB5394634","OBJECTID":1201,"PLACENAME":"Benjarong","TYPDAMAGE_INT":5}
qml: {"GLOBALID":"2E0BC8FD-5095-426B-A2FC-2B0C0B21D86F","OBJECTID":1207,"PLACENAME":"Esri","TYPDAMAGE_INT":4}
qml: {"GLOBALID":"F6C38A29-BAE8-47B5-90A8-CB0C53BAE845","OBJECTID":1208,"PLACENAME":"Esri","TYPDAMAGE_INT":2}
... View more
02-10-2017
02:01 PM
|
0
|
4
|
2347
|
|
POST
|
This name looks like the temporary name it downloads it to before it completes. Does the signal emit saying it is complete? Can you listen to the errorChanged signal to see if you get any information about what is happening? Object QML Type | ArcGIS for Developers If that doesn't turn up anything, then your best bet would be to contact Esri Technical Support, as they could try and set up a similar environment to what you have to reproduce the issue. I agree that it is likely an issue with the Runtime API if you can manually download it successfully.
... View more
02-10-2017
07:26 AM
|
0
|
0
|
1889
|
|
POST
|
Yes, this is a known issue for now. You will have to create the TileCache object. Can you elaborate on what you mean by it did not work? Does it not load, not display, display incorrectly?
... View more
02-10-2017
07:22 AM
|
0
|
0
|
940
|
|
POST
|
Is the replica request actually failing and the gdb is indeed not there? I would check fiddler and also check the server logs to see if there is any hints. I would also try to run the exact same request, but do it in the browser on the service's Create Replica REST page. If it works there, then it is an issue in ArcGIS Runtime. If it fails there too, then it is an issue with the Server. That should help at least give us some hints as to where the issue lies.
... View more
02-09-2017
07:37 AM
|
0
|
3
|
1889
|
|
POST
|
There are currently no client side renderers you can apply to the scene layer to change the color or styling. Rather, you would author the package as you want it to display in Pro, and consume it in Runtime. If you have some specific ideas on what you would like to see available, I would encourage you to log an Idea on our Idea's site with the details of what you are thinking - ArcGIS Ideas
... View more
02-02-2017
08:23 AM
|
0
|
0
|
1469
|
|
POST
|
You are wanting to change the color of the entire scene layer? Or what exactly are you trying to change the color of?
... View more
02-01-2017
11:17 AM
|
0
|
2
|
1469
|
|
POST
|
Regarding displaying offline data, we currently do not support directly reading shapefiles- this will be coming in an upcoming release, but it is not there yet. Also, we do not support directly reading File Geodatabases. Rather, you have a few options: - Use the Create Runtime Content tool in ArcMap to create a runtime enabled geodatabase. ex: Feature layer (geodatabase)—ArcGIS Runtime SDK for Qt | ArcGIS for Developers - Publish a feature service with the "create replica" endpoint enabled, and using the GeodatabaseSyncTask to pull the feature service offline - ex: Generate geodatabase—ArcGIS Runtime SDK for Qt | ArcGIS for Developers - Create a Mobile Map Package in ArcGIS Pro, and consume that in your app - ex: Open mobile map (map package)—ArcGIS Runtime SDK for Qt | ArcGIS for Developers As for changing the color of each polygon depending on the attribute, it sounds like you need a UniqueValueRenderer applied to your layer. ex: UniqueValueRenderer—ArcGIS Runtime SDK for Qt | ArcGIS for Developers
... View more
02-01-2017
07:29 AM
|
0
|
0
|
1054
|
|
POST
|
RHEL 7.x is supported with version 100 - System requirements—ArcGIS Runtime SDK for Qt | ArcGIS for Developers
... View more
01-30-2017
08:55 AM
|
0
|
0
|
852
|
| 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
|