|
POST
|
Hi, For the Qt6 support, there is this blog article which explains all the details: https://www.esri.com/arcgis-blog/products/api-cqt/developers/qt-6-support-is-on-the-horizon/ For offline maps, all details are in https://developers.arcgis.com/qt/offline-maps-scenes-and-data/ ArcGIS Runtime API for Qt 100.14 supports Qt 5.15.2 or later.
... View more
05-17-2022
08:14 AM
|
0
|
0
|
579
|
|
POST
|
Hi, For the Qt6 support, there is this blog article which explains all the details: https://www.esri.com/arcgis-blog/products/api-cqt/developers/qt-6-support-is-on-the-horizon/ For offline maps, all details are in https://developers.arcgis.com/qt/offline-maps-scenes-and-data/ ArcGIS Runtime API for Qt 100.14 supports Qt 5.15.2 or later.
... View more
05-17-2022
08:13 AM
|
0
|
0
|
1395
|
|
POST
|
Hello, You can check this page for the System requirements for 100.14: https://developers.arcgis.com/qt/reference/system-requirements/ As indicated, Qt6 is not supported by 100.14. You need to install Qt 5.15.2 or later. To do that, you can run the Qt MaintenanceTool and select the correct version of Qt. For the details: https://doc.qt.io/qt-5/gettingstarted.html (at 4:36 in the video). Do not hesitate if you have more questions. Guillaume
... View more
05-15-2022
04:32 PM
|
0
|
0
|
1420
|
|
POST
|
Hi Kenn, Sorry for late answer. It should work without `./`, depending of the paths. How are you creating the KML file? What is the structure of your files? Can you provide a file to try to reproduce the issue? Thank you
... View more
08-26-2021
11:03 AM
|
0
|
0
|
669
|
|
POST
|
Hi Kenn, I can reproduce the performance issue on Mac for C++ and QML APIs. We will investigate that. Thank you Guillaume
... View more
08-20-2021
11:31 AM
|
1
|
0
|
1308
|
|
POST
|
Hi John, In QtWidgets, the name of event functions are "mouseXxxEvent": https://doc.qt.io/qt-5/qgraphicsview.html#mousePressEvent. "mouseClicked" is a signal provided by map and scene views, not an event handler: https://developers.arcgis.com/qt/cpp/api-reference/esri-arcgisruntime-mapgraphicsview.html You can use it like every signals: Dispay_a_map::Dispay_a_map()
{
connect(this, &Dispay_a_map::mouseClicked,
this, &Dispay_a_map::handleMouseClicked);
}
// defined as slot
void Display_a_map::handleMouseClicked(QMouseEvent *event)
{
if (event->button() == Qt::LeftButton) {
qDebug() << "testing";
}
}
... View more
06-09-2021
03:58 PM
|
1
|
1
|
2127
|
|
POST
|
Hi Fatma, There is no signal or event for that. You need to use "identify" functions from GeoView, as you do for a mouse click. And you can use the "mouseMoved" signal to get the current position of mouse.
... View more
06-09-2021
07:36 AM
|
0
|
0
|
896
|
|
POST
|
Hi Eric, AuthenticationManager is a singleton, you can't create this object. You can use it directly: Component.onCompleted: {
AuthenticationManager.credentialCacheEnabled = true;
load();
} But credential cache is enabled by default. I'm not sure to understand why you have this error. Can you try without refreshTokenExchangeInterval and refreshTokenExpirationInterval?
... View more
06-01-2021
10:21 AM
|
0
|
0
|
1778
|
|
POST
|
Hi Eric, When "refreshTokenExpirationInterval" is set to -1, the token is considered to be permanent and is never refreshed. "refreshTokenExchangeInterval" is ignored in this case and that can cause invalid access due to expired token. Try to use a long expiration interval: refreshTokenExchangeInterval: 55
refreshTokenExpirationInterval: 129600 // 90 days
... View more
05-28-2021
11:38 AM
|
0
|
1
|
1809
|
|
POST
|
Do you know when 100.11 is going to be released? "ArcGIS Runtime 100.11, due to be released in April 2021" (source: https://www.esri.com/arcgis-blog/products/developers/announcements/welcome-to-arcgis-runtime-100-10/)
... View more
03-23-2021
11:04 AM
|
0
|
0
|
1509
|
|
POST
|
Hi, Thank you for your crash report. Your issue lookzs similar to a crash reported by iOS user https://community.esri.com/t5/arcgis-runtime-sdk-for-ios/esri-runtimecore-crashes-when-using-osm-vector-basemap/m-p/1019216. This will be fixed in 100.11. Guillaume
... View more
03-23-2021
08:40 AM
|
0
|
2
|
1518
|
|
POST
|
Good point for the forbidden header names. If the solution proposed by @JamesBallard1 works fine, this is the easiest way to do. And you can use the C++ solution only if you have a performance issue.
... View more
02-03-2021
02:01 PM
|
0
|
0
|
1682
|
|
POST
|
Hi @MarkHolm Did you try to use setRequestHeader? https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/setRequestHeader Something likes (not tested): var request = new XMLHttpRequest(); request.onreadystatechange = function() { if (request.readyState === XMLHttpRequest.DONE) console.log(request.getAllResponseHeaders()); } request.open("GET", url); request.setRequestHeader("referer", credential.referer); request.send(); If this doesn't work, that means the support of XMLHttpRequest in Qt is not correct. In this case, you can use QNetworkAccessManager in C++ for theses requests.
... View more
02-03-2021
12:33 PM
|
0
|
2
|
1690
|
|
POST
|
You're just need to call start, for example in Component.onCompleted: Component.onCompleted: mapView.locationDisplay.start();
... View more
01-10-2020
02:09 PM
|
0
|
1
|
1716
|
|
POST
|
Hi Arjen van Heteren The "updated" signals should be emitted when the map is ready to handle them. If you're emitting a signal in the constructor, it's never possible to connect to the signal. The best is probably to use a timer, like in the Lucas' code (with "setSingleShot(true)" if you want to emit only once). Note: don't forget to initialize "started" before use it.
... View more
12-27-2019
10:39 AM
|
0
|
0
|
1718
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-25-2025 12:25 PM | |
| 1 | 07-24-2024 09:17 AM | |
| 1 | 10-23-2023 09:06 AM | |
| 1 | 09-21-2023 05:51 PM | |
| 1 | 09-27-2023 10:13 AM |
| Online Status |
Offline
|
| Date Last Visited |
07-08-2025
08:36 AM
|