|
POST
|
We now support mil2525d in our Quartz beta. You can find out more about the beta here - ArcGIS Runtime SDK for Qt | ArcGIS for Developers
... View more
07-15-2016
11:41 AM
|
1
|
0
|
1476
|
|
POST
|
Windows phone is not supported with our SDK, so you will not be able to deploy to that platform. Please see the developers site for a list of platforms that we do support - System requirements—ArcGIS Runtime SDK for Qt | ArcGIS for Developers
... View more
07-15-2016
09:12 AM
|
0
|
0
|
1962
|
|
POST
|
Hi Mathan, All beta questions should be logged in the Early Adopter Community. I'll give you a suggestion here for something to try, but please continue the discussion by creating a new post in the Early Adopter Community - https://earlyadopter.esri.com/home.html I suggest that you ensure you have run the post installer for the kit that you are trying to run this against. It sounds like the QML plugins did not end up inside the Qt kit you are building with. Thanks, Luke
... View more
07-15-2016
09:11 AM
|
0
|
0
|
735
|
|
POST
|
Hi Mathan, All beta questions should be logged in the Early Adopter Community. I'll give you a suggestion here for something to try, but please continue the discussion by creating a new post in the Early Adopter Community - https://earlyadopter.esri.com/home.html I suggest that you ensure you have run the post installer for the kit that you are trying to run this against. It sounds like the QML plugins did not end up inside the Qt kit you are building with. Thanks, Luke
... View more
07-15-2016
09:10 AM
|
0
|
0
|
1087
|
|
POST
|
Taner- We don't have a tool to convert a project to windows mobile with Qt. Our .NET SDK supports Windows Phone, Windows Store, and Windows Desktop apps. Our Qt Quartz release will support Windows UWP. Are you needing Windows Mobile specifically, or are you talking bout Windows phone? -Luke
... View more
07-13-2016
09:29 AM
|
0
|
1
|
1962
|
|
POST
|
Our 10.2.6 release of the SDK does not support Windows Mobile, Windows Phone, or Windows Store. System requirements—ArcGIS Runtime SDK for Qt | ArcGIS for Developers We hope to support UWP in the future, so that you can develop Windows apps that will run on Windows phones and tablets. -Luke
... View more
07-11-2016
08:59 AM
|
1
|
3
|
1962
|
|
POST
|
Please see the doc for Map::mouseClicked signal - ArcGIS Runtime SDK for Qt QML API: Map Class Reference It passes a MouseEvent through the signal, giving access to the map point - ArcGIS Runtime SDK for Qt QML API: MouseEvent Class Reference
... View more
07-08-2016
09:06 AM
|
0
|
0
|
941
|
|
POST
|
Hi Mathan, MMPKs are supported with our new release of ArcGIS Runtime, which is in Beta (we are calling this release the "Quartz" release). You can download it today, and open a MMPK that you published from Pro. Here is where you can learn more about the beta - ArcGIS Runtime SDK for Qt | ArcGIS for Developers And here is the API ref for MMPK with our Quartz release - MobileMapPackage QML Type | ArcGISQtQML Quartz - Luke
... View more
07-07-2016
09:31 AM
|
2
|
0
|
955
|
|
POST
|
Perhaps you need to turn auto panning off on your position display? import QtQuick 2.3
import QtQuick.Controls 1.2
import QtPositioning 5.3
import ArcGIS.Runtime 10.26
ApplicationWindow {
id: appWindow
width: 800
height: 600
title: "s"
Map {
anchors.fill: parent
focus: true
ArcGISTiledMapServiceLayer {
url: "http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"
}
positionDisplay {
positionSource: PositionSource {
active: true
}
mode: Enums.AutoPanModeOff
}
onStatusChanged: {
if (status === Enums.MapStatusReady) {
zoomTo(usExtent);
}
}
}
Envelope {
id: usExtent
xMax: -15000000
yMax: 2000000
xMin: -7000000
yMin: 8000000
spatialReference: SpatialReference {
wkid: 102100
}
}
}
... View more
07-06-2016
08:50 AM
|
1
|
0
|
941
|
|
BLOG
|
We have discussed the relationship of QML with JavaScript in previous blogs, and are seeing more and more Esri web developers build native apps with the QML and Qt framework. Many of these developers have given us feedback about how much they enjoy Qt and QML, and have stated that the transition from building HTML5/JS based web apps to QML/JS based native apps was very smooth. One of the common question we get asked by JS devs interested in QML is if QML supports JavaScript promises. While this pattern is not directly built into QML, it is easily doable with a QML library called QuickPromise, which is available project on GitHub. For those of you not familiar with JavaScript Promises, the patterns and specification are explained in great detail here. The important thing to know is that it is a very productive way to work with asynchronous methods, and can be especially helpful when you are running several async methods concurrently, and you want some action to occur once all of those async methods are complete. A great example in the case of ArcGIS Runtime is when you are wanting to take your data offline. Imagine that you have an app that does editing in an online and offline mode. Initially, your data is online, and your user can edit directly against the service. You also have a button to take the data offline, in which case all of your feature services will generate geodatabases, and your tiled service will export all of the tiles into a local tile package. When your user presses the button, you want to display a screen that indicates the download is in progress, and you don't want that screen to go away until all of the asynchronous operations are complete. Also, once everything is complete, you want to remove the online layers from your map, and add in the offline layers. How would you accomplish this? There may be several ways to do this, but one great way to do this is with promises in QML (QuickPromise). I set out to try the above scenario to see if I could come up with a clean way of doing this with the QuickPromise library. Here were the steps I took: I first installed the Quartz beta release of the ArcGIS Runtime SDK for Qt, and I cloned the Qt Sample repo on GitHub. I then combined the GenerateGeodatabase and ExportTiles samples into one project, so that I had an app that would both take a feature service and a tiled map service offline. Next I cloned the QuickPromise repo, and followed the installation instructions in the project's readme. It was really as simple as cloning the project, including the pri file in my project, and adding an import path to the app engine, as explained in the read me. Finally, I imported the QuickPromise plugin in my QML file, and I created a Promise. I set the Promise's resolveWhen property to list a list of signals (each signal emits when one of the offline tasks completes). Finally, I created a signal handler for the fulfilled signal- this signal will emit once all of the promises are resolved. In this case, I want to update the download screen once all of the promises are resolved, and I also want to switch out my online layers to my offline layers. This worked wonderfully, and was very simple to setup and use. I found that this particular usage of QuickPromise worked wonderfully for the declarative type QML workflow. Beyond this, there are several other ways you can use QuickPromise, both declaratively, and in imperative JavaScript code. Many of the alternative functions fit more into the traditional pattern of how a JavaScript Promise is used in a web application (e.g. a then() function). The alternative methods of creating a promise in QML are documented here. If you are interested in giving this a try, I attached my sample project to this blog post. In order to build/run this sample on your machine, you will need to install the Quartz beta 1 release of ArcGIS Runtime SDK for Qt, install QuickPromise, and update the path to the pri file in the project's pro file.
... View more
07-05-2016
02:27 PM
|
1
|
0
|
3083
|
|
POST
|
I recommend you contact Esri Support (or distributor if international), and troubleshoot this so they can identify the issue, and log a bug if needed. I am not sure why it would be failing randomly. -Luke
... View more
06-28-2016
04:01 PM
|
0
|
0
|
1150
|
|
POST
|
Yes, that should work just fine. I just installed the latest Android SDK and built for/deployed onto a device running Android 6. If you connect it to your dev machine, can you deploy directly onto it? Perhaps you need to up the target version in the manifest when you build?
... View more
06-27-2016
01:16 PM
|
0
|
0
|
838
|
|
POST
|
Maybe this sample can get you on the right track - RuntimeQtSamples/offline_geofence at master · ldanzinger/RuntimeQtSamples · GitHub However, actual push notifications are not supported by Qt itself at this point. You can either write your own in Java/Obj C, and expose through Qt, or you could look into a third party option, like v-play if you need actual push notifications - Notification Plugin | V-Play 2.8 | V-Play Engine
... View more
06-23-2016
08:32 AM
|
1
|
0
|
718
|
|
BLOG
|
The ArcGIS Runtime SDK for Qt Quartz beta is now available. You can find out more details in this blog, and you can sign up for the beta here. Cheers, Luke
... View more
06-22-2016
09:10 AM
|
0
|
0
|
1193
|
|
POST
|
You should be able to create a form with QML, using different QML types like ListView, TextField, Text, etc. We don't have any out of the box forms in our ArcGIS API.
... View more
06-21-2016
11:24 AM
|
1
|
0
|
659
|
| 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
|