|
POST
|
Very cool! Thanks for sharing! A couple of things: Can you try using the setDefaultSpatialReference setter on Layer baseclass? It seems to be missing from the doc, but you will see it as a protected member in the public header. Maybe that would work for setting your spatial ref. For setting image format, you may not need to set this. What happens if you just don't set this? Initialize should be async. Instead of overriding it, can you just call initialize once you've parsed the XML? This should be async and also execute very quickly. -Luke
... View more
01-27-2016
11:01 AM
|
1
|
1
|
1059
|
|
POST
|
Hi Ceyhun- Windows 10 was not yet released when we released our 10.2.6 SDK, so it is not listed as a supported platform under our system requirements - System requirements—ArcGIS Runtime SDK for Qt | ArcGIS for Developers With that said, we are aware of the issue, and will be fixing this (and bringing in full support for Windows 10) in an upcoming release. Thanks, Luke
... View more
01-27-2016
10:08 AM
|
0
|
0
|
1912
|
|
POST
|
For anyone else running into this, it seems to be an issue with Qt's underlying QNetworkConfigurationManager class and some VPN software on Andy's devices. It seems that the isOnline functionality that comes from this class may detect if there is an online connection, but is not able to determine if you have authenticated and can actually use the internet. For example, if you were in a hotel connected to the guest network, but have not yet provided your credentials. I created a standalone test app that just calls the C++ class without any ArcGIS APIs around it, and the issue still happens, so it has been logged with Qt [QTBUG-50518] QNetworkConfigurationManager isOnline not returning correct value - Qt Bug Tracker Here is all that is really happening under the hood: m_networkConfig = new QNetworkConfigurationManager(this);
m_networkConfig->isOnline(); -Luke
... View more
01-21-2016
04:23 PM
|
1
|
0
|
2736
|
|
POST
|
KML is not yet supported in ArcGIS Runtime, which is what AppStudio is built on top of. Hence, this is not working in the web map you are viewing in AppStudio. We are adding KML support for the ArcGIS Runtime Quartz release, so once that is released and once AppStudio is on this version of the runtime, this should begin to work. It is a known limitation in the meantime. -Luke
... View more
01-19-2016
04:18 PM
|
2
|
0
|
1144
|
|
POST
|
Great question, and great answer from Hannah. In addition to Hannah's reply, I would like to add that the SDK is more of a developer kit that would allow you to take our location library (ArcGIS Runtime) and add it into an existing app. For example, a user may already have a Qt/QML app that does several things, but they need a location component, so they pull in our API and build on that. These types of developers are just looking for a location API- they aren't necessarily looking for all of the additional tooling that you get with AppStudio (like templates, cloud builders, configuration files, storage in AGOL, etc), as they already have their own existing workflows. This is where I see the main distinguishing factor - if you are looking for an all together app building solution that includes ArcGIS functionality (AppStudio for ArcGIS), or if you are a developer looking just for a location library that they can plug into their apps (ArcGIS Runtime SDK for Qt). Hope this helps. -Luke
... View more
01-19-2016
04:16 PM
|
3
|
1
|
2515
|
|
POST
|
Weird... I'm stumped. Did you give it a few seconds after you switched from airplane mode? I noticed I had to click the button a few times, because it would take a few seconds for the system to register that it was online/offline. Does it work on a windows machine, or some other OS for you?
... View more
01-14-2016
11:05 AM
|
0
|
1
|
2736
|
|
POST
|
I'm not sure why there is a difference. Maybe you can try re-creating your geodatabase and see if it works? Otherwise, it could be a data specific bug that we are not aware of. Perhaps you could contact support and troubleshoot this with them?
... View more
01-14-2016
10:40 AM
|
1
|
0
|
2245
|
|
POST
|
It seems to work alright for me. Here's my versions of everything: Qt 5.5 Xcode 6.4 ArcGIS Runtime SDK 10.2.6 iOS 9.1 Here is my code. As I turn airplane mode on and off, then I click the button, I see the text updated. Do you see this? import QtQuick 2.3
import QtQuick.Controls 1.2
import ArcGIS.Extras 1.0
ApplicationWindow {
id: appWindow
width: 800
height: 600
Text {
id: text
}
Button {
anchors.centerIn: parent
onClicked: {
text.text = "online? " + System.isOnline
}
}
}
... View more
01-13-2016
09:20 AM
|
0
|
3
|
2736
|
|
POST
|
Sounds like it is probably a bug with Qt then. Our Extras library is just a straight wrap up of several Qt C++ classes. In the case of System.isOnline, it is just QNetworkConfigurationManager's isOnline check being wrapped and exposed as a Q_PROPERTY for use in QML. QNetworkConfigurationManager Class | Qt Network 5.5 -Luke
... View more
01-12-2016
10:36 AM
|
0
|
5
|
2736
|
|
POST
|
Hmm, I haven't gotten to test this, but I wonder if it would happen with Qt 5.5.1? 5.4.1 came out before iOS 9, so maybe there is some missing link here. Also, I wonder what version of Xcode you are using. -Luke
... View more
01-12-2016
09:47 AM
|
0
|
7
|
2736
|
|
POST
|
Thanks Shane, glad it helped. I updated the code to reflect your statement. Have a nice weekend. -Luke
... View more
01-08-2016
05:02 PM
|
1
|
0
|
2269
|
|
POST
|
The Qt team will be there all week, and have several sessions planned. We will also be at the developer island in the showcase, so please stop by! We are excited to talk with you to see what you are working on, and to hear what we can do to help you take your apps to the next level.
... View more
01-08-2016
09:02 AM
|
0
|
3
|
3302
|
|
POST
|
Hey Shane- I put together a quick sample that should hopefully get you on the right track. Please see the readme for a few details. RuntimeQtSamples/export_tiles_from_service at master · ldanzinger/RuntimeQtSamples · GitHub Hopefully this helps. -Luke
... View more
01-07-2016
05:31 PM
|
0
|
3
|
2269
|
|
POST
|
We do not support 2525d at this time. We are looking to add support for it but do not yet have an accurate time frame to give you. -Luke
... View more
01-06-2016
02:18 PM
|
1
|
0
|
1460
|
|
POST
|
We don't have a sample available. I guess I should've clarified before. Is your service hosted in AGOL/Portal or is it a regular ArcGIS Server service that you are connecting to?
... View more
01-06-2016
12:07 PM
|
0
|
5
|
2269
|
| 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
|