|
POST
|
For us personally, at the moment, the use would be entirely for testing on the simulators. With so few x86 android devices out there we don't plan to deploy for them. I'd imagine the story is probably the same for others with this question, but I'm not sure. This was purely just a convenience request, thanks for the response!
... View more
11-22-2016
07:07 AM
|
0
|
0
|
1625
|
|
POST
|
Thanks for your response, I did see that TileHandler class but I'm new to Qt's C++ signals and slots and I didn't realize I could change the functionality through the TileHandler. So would I need to extend TileHandler, override the requestTile method to make my request for the image, and then call the setTile method with the byte data after the image is returned? And as for v100, is this a "definitely coming soon" feature, or something that's in the backlog and might be considered if there's time?
... View more
11-22-2016
06:59 AM
|
0
|
0
|
1221
|
|
POST
|
Thanks, I apologize for that, I had never seen that search page which allows filtering by SDK API.
... View more
11-22-2016
06:48 AM
|
1
|
1
|
1237
|
|
POST
|
It was a similar approach in Qt SDK 10.2.6, as they had a "esriLogoVisible" property that is mentioned in the documentation. Unfortunately there isn't a similar property in v100.0's documentation for Map and we're still trying to figure out how to do it. There isn't a search tool in the docs so if it has been moved to somewhere else it might take a bit to find it.
... View more
11-22-2016
06:12 AM
|
0
|
0
|
4010
|
|
POST
|
The 10.2.6 Qt SDK api docs (and the new docs for all the SDKs other than Qt) are searchable. Considering how different v100 is, it would be helpful to be able to search like before.
... View more
11-22-2016
05:51 AM
|
0
|
3
|
1534
|
|
POST
|
Can you help us out and point us to one of these numerous references that apply to v100.0 which was just launched yesterday? The documentation is not searchable and there don't seem to be many forum posts about Quartz for Qt at all. [Edit: To be clear, Dan, I appreciate you taking the time to respond and I'm not trying to challenge you, I simply have not been able to find anything on this for v100.0]
... View more
11-22-2016
05:46 AM
|
0
|
2
|
4010
|
|
POST
|
In the JS API we can extend the ArcGISTiledMapServiceLayer and change the method for getting a tile URL based on level,row,col which allows us to use non-standard methods of hosting tiles. I was also able to do this with the native android SDK. I am wondering if you guys can help point me towards how to accomplish this with the QT SDK. I've been looking through the C++ docs in v100, but I also looked in 10.2.6 and had a similar problem. I am sure I'm just missing something obvious but I don't see a straightforward method for retrieving tiles like there is documented for the JS/Android versions. Please let me know if this is doable, as it is fairly important to us to be able to do this, and we'd like to use Qt if possible.
... View more
11-22-2016
04:54 AM
|
0
|
2
|
1422
|
|
POST
|
I am doing cross platform development for Android and iOS using 10.2.6(patch 2) and I would like to utilize android emulators for testing. Unfortunately, android's ARMv7 emulators are extremely slow and building/deploying to them takes ages compared to the x86 ones. As asked in the title, is there any plan to support builds targeting android x86?
... View more
11-21-2016
06:44 AM
|
0
|
4
|
2094
|
|
POST
|
Hello, I have an app utilizing a ArcGISDynamicMapServiceLayer which I need to return images with features filtered out based on data fields in each layer. While I managed to figure out how to do this, it seems to be breaking layer visibility toggling. The code I am using to accomplish this is below: ArcGISDynamicMapServiceLayer { id : dynamicLayer credentials : config.tdnArcGisUserCreds url : activeClient.dynamicMapServiceUrl Component.onCompleted : { app.dynamicLayer = dynamicLayer } onStatusChanged : { if (status == Enums.LayerStatusInitialized) { sidePanel.initLayers(); for (var i = 0, l = dynamicLayer.dynamicLayerInfos.length; i < l; i++) { dynamicLayer.dynamicLayerInfos.definitionExpression = "FIELD = 'VALUE'"; } } } } This results in filtered dynamic images, but completely disabled layer toggling. This also seems to send out an additional request for each layer every single time a layer is toggled. Despite that, the toggling of the layers doesn't alter the returned image. Does anyone know what I'm doing wrong?
... View more
07-18-2016
02:20 PM
|
0
|
0
|
1478
|
|
POST
|
Hey Lucas, Thanks for getting back to me. Can you provide any clarification on plans for Quartz for the QT platform? The beta release does not seem to be available for QT yet, I can only find version 10.2.6. Additionally, I've been informed that there are problems with the QT C++ sdk working cross-platform on mobile (namely IOS?), do you have any idea if that's going to be addressed in the Quartz release? Thanks, Jonathon
... View more
03-23-2016
11:42 AM
|
0
|
1
|
2056
|
|
POST
|
When I build a project for desktop or android, mapScaleChanged and mapExtentChanged both fire off at the same time, there appears to be no functional difference between them. I would have expected "mapScaleChanged" to fire off only when the map zoom level changes, instead it also fires off when I'm panning. Furthermore, when I build for android, not only do both of these events fire off at the same time, but they fire off dozens of times while either panning or zooming. They seem to fire off whenever the touch moves, not just when the touch is released. I would have expected them to work as they do on desktop, which is only to fire off when the mouse is released. Can anyone speculate as to what could be going wrong?
... View more
03-21-2016
06:40 PM
|
0
|
3
|
3951
|
|
POST
|
Interesting... when I run your code in a standard QT Quick application, I get the following: Starting C:\projects\Qt\build-untitled-Desktop_Qt_5_5_1_MSVC2013_64bit-Debug\debug\untitled.exe... QML debugging is enabled. Only use this in a safe environment. QQmlApplicationEngine failed to load component qrc:/main.qml:17 Invalid property assignment: color expected However, when I run it exactly the same way, but in an ArcGIS QT Quick application I get: Starting C:\projects\Qt\build-untitled_arcgis-Desktop_Qt_5_5_1_MSVC2013_64bit-Debug\debug\untitled_arcgis.exe... QML debugging is enabled. Only use this in a safe environment. Initializing application ArcGIS.Runtime.Plugin: void __cdecl ArcGISRuntimePlugin::registerTypes(const char *) ArcGIS.Runtime C:\projects\Qt\build-untitled_arcgis-Desktop_Qt_5_5_1_MSVC2013_64bit-Debug\debug\untitled_arcgis.exe exited with code -1 [Edit: Here are the two main.qmls: ]
... View more
03-09-2016
09:04 AM
|
0
|
1
|
7977
|
|
POST
|
Lucas Danzinger Hello again, I'm in the process of learning QT and building a simple ArcGIS driven app. The entire time I've been working on it, I periodically attempt to run my app and it gives me back something like the below in application output: ArcGIS.Runtime.Core: void __cdecl QmlUtils::registerTypes(const char *) ArcGIS.Runtime ArcGIS.Runtime.Plugin: void __cdecl ArcGISRuntimePlugin::initializeEngine(class QQmlEngine *,const char *) ArcGIS.Runtime ArcGIS.Runtime.Core: void __cdecl QmlUtils::initializeRuntimeLicense(void) Invalid clientId QVariant(QString, "39DN") status 1 ArcGIS.Runtime.Core: void __cdecl QmlUtils::initializeImageProvider(class QQmlEngine *) ArcGIS.Runtime.Core: void __cdecl QmlUtils::initializeImageProvider(class QQmlEngine *) Setting global image provider QVariant(void*, 0x29ce2d516f0) ArcGIS.Extras.Plugin: void __cdecl ArcGISExtrasPlugin::registerTypes(const char *) ArcGIS.Extras ArcGIS.Extras.Plugin: void __cdecl ArcGISExtrasPlugin::registerTypes(const char *) Registering Singleton Types ArcGIS.Extras.Core: void __cdecl TkTypes::registerTypes(const char *) ArcGIS.Extras ArcGIS.Extras.Plugin: void __cdecl ArcGISExtrasPlugin::initializeEngine(class QQmlEngine *,const char *) ArcGIS.Extras QQmlApplicationEngine failed to load component C:\projects\Qt\build-Test-Desktop_Qt_5_5_1_MSVC2013_64bit-Debug\debug\Test.exe exited with code -1 It never gives an actual error of any useful variety, it always just says "exited with code 1", and usually that line is preceded by "QqmlApplicationEngine failed to load component". This always seems to happen in the middle of the ArcGIS initializers. Until today, I just assumed that QT creator was terrible at detecting errors in my code, because the solution was always some mistake I'd made in regards to general QT Quick types. However, I am wondering now if it might be possible that it normally gives a real error message, and somehow ArcGIS SDK is hiding that from me? This does not happen with any one specific error, it happens at least whenever I make a mistake with QML Types, like putting a Rectangle inside of a ListModel's ListElement. Because it happens and gives the exact same error for almost every mistake I ever make, I have spent countless hours manually tracking down my mistakes over the course of this project. It's possible I'm using the wrong kit for my system or something, but unless I make a mistake like the one mentioned above, the application compiles and runs flawlessly on my desktop as well as my phone, so I don't really know, maybe you can help me figure it out. The ArcGIS portion of my app runs fine when I finally figure out what QML mistake I made and fix it. I'm running QTQuick 2.4 and ArcGIS Runtime SDK 10.2.6 I'm building for Desktop Qt 5.5.1 MSVC2013 64bit, I'm on Windows 10, 64bit.
... View more
03-07-2016
07:09 PM
|
0
|
3
|
13745
|
|
POST
|
The query returns only five fields and a single feature. The feature is a shape, in one case made of 1200 points. I thought maybe it was the parsing of this information that was slow, but the JS api is working almost instantaneously for 3 or 4 of these exact same queries at a time. Also, I have done both release and debug with the same results. I'll look into the local queries, but I'm not sure it will work for this project.
... View more
01-28-2016
11:52 AM
|
0
|
1
|
1328
|
|
POST
|
I'm using QT Creator and ArcGIS.Runtime 10.26. I have a QueryTask query for some graphics geometry in an app I'm making, the response comes back from the server within a couple hundred milliseconds (checked using Charles), but QueryTask isn't setting QueryTaskStatus to completed until something like 5 seconds after the response is received. I don't really know what's going wrong or how to track it down. Does anyone have experience for this or perhaps a suggestion for how to try and figure out what's causing the delay? Thank you.
... View more
01-27-2016
06:39 PM
|
0
|
3
|
3147
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 02-08-2017 07:03 AM | |
| 1 | 11-22-2016 06:48 AM | |
| 1 | 11-22-2016 07:31 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|