|
POST
|
Unfortunately I don't think there is any way to do this. You'd need to add custom query parameters on the rest requests on there is no way to do that. I will check with my colleagues to be sure.
... View more
11-12-2019
03:57 PM
|
0
|
2
|
2879
|
|
POST
|
Hi Tiaki Rice, I initially responded incorrectly. Let me do some research on this and get back to you.
... View more
11-12-2019
03:43 PM
|
0
|
0
|
2879
|
|
POST
|
Norbert Thoden, speaking specifically to object lifetime and when it is safe to delete the graphics and symbols, then yes your code looks good. When the graphic is deleted then its symbol will get deleted along with it. Another technique we use on the team is to have QObject parents that track multiple objects. For example we might add something like this: QObject* m_graphicsParent = nullptr; ... void resetGraphics() { m_graphicsOverlay->clear(); // remove all graphics delete m_graphicsParent; // force all removed graphics to delete m_graphicsParent = new QObject(this); for (int i = 0; i < 1000; i++) // 1000 is arbitrary for this example { // create new graphics/symbols with the special parent auto* graphic = new Graphic(m_graphicsParent); // add symbols... m_graphicsOverlay->append(graphic); } } That way we can keep one parent for all related objects to force their deletion all at the same time when we're through with them.
... View more
10-18-2019
01:02 PM
|
0
|
0
|
1103
|
|
POST
|
Hi Norbert Thoden. In this case it is not a deep copy. What you're doing does work (as you've found), but that's only because we have some internal caching in our pimpl classes that prevent the internal symbol object from being deleted. So yes, that will technically work but I would not rely upon that behavior. It is not a deep copy and I would not write code to assume this can be safely done.
... View more
10-17-2019
12:54 PM
|
2
|
2
|
1103
|
|
BLOG
|
We're pleased to announce an update to the ArcGIS Runtime SDK for Qt Embedded Linux Beta program: Beta 2. Beta 2 is now based on the 100.6 Runtime release, so you can use all the great new features from 100.5 and 100.6 on your Embedded Linux devices. We've also done some internal build improvements and optimizations which should result in better performance for your apps. Since the Beta 1 release we've tested on even lower-end devices. We've deployed apps to the NVIDIA® Jetson Nano™ developer kit, which is a $99 device. As before, we're interested to see what types of solutions you're going to build. We're available on the early adopter forums, so feel free to reach out with any questions. We want to know what types of devices you want to target, or if there are devices we don't support yet that you want. Head over to https://earlyadopter.esri.com/key/runtimeqtembeddedlinux to get started.
... View more
10-07-2019
11:40 AM
|
0
|
0
|
663
|
|
POST
|
Hi Girishchandra Yendargaye, Sorry the delay in responding. Can you please provide a bit more details on what you're trying to accomplish? We do have PolylineBuilder class that allows you to build a Polyline programatically. You can then visualize the Polyline by using a GraphicsOverlay, Graphic and a SimpleRenderer. PolylineBuilder Class | ArcGIS for Developers Graphic Class | ArcGIS for Developers GraphicsOverlay Class | ArcGIS for Developers SimpleRenderer Class | ArcGIS for Developers I hope this helps. Please provide some more info so that we can help with some more specific information if this doesn't match your workflow. Thanks
... View more
08-29-2019
09:32 AM
|
0
|
2
|
1734
|
|
POST
|
Hi Joseph Hunt, We are considering future support for real time video but we don't any current support for this in the Runtime. We'd love to get your feedback on what workflow and data formats you're looking to support.
... View more
08-26-2019
11:30 AM
|
0
|
0
|
897
|
|
POST
|
Hi Lois Morse, Yes, the ArcGIS Runtime SDK for Qt does support WMS 1.1.1 at the 100.3 release. C++ Api: https://developers.arcgis.com/qt/latest/cpp/api-reference/esri-arcgisruntime-wmsversion.html Qml Api: https://developers.arcgis.com/qt/latest/qml/api-reference/enums-wmsversion.html This version enum was introduced at version 100.2. Please give it a go and let us know if you run into any issues.
... View more
07-18-2019
01:51 PM
|
1
|
0
|
973
|
|
POST
|
Hi Chandra Waller. Can you please provide us with a bit more information so we can help? What are you trying to do, specifically that's not working? You mentioned mouse clicks, so are you identifying layers? With respect to the QObject parent topic you referenced, nothing should've changed in that area. We're just documenting it better now so it's clearer to folks what is happening.
... View more
07-17-2019
11:03 AM
|
0
|
0
|
1042
|
|
POST
|
Selim Ozel, The page you referenced is for a previous release and may not be accurate. I apologize for that. Assuming you're using the latest 100.x releases and not the previous 10.2.x release, here are the latest pages: https://developers.arcgis.com/qt/latest/cpp/guide/license-your-app.htm https://developers.arcgis.com/pricing/licensing/ Please let me know if those pages answer your license questions.
... View more
07-11-2019
04:02 PM
|
0
|
1
|
1189
|
|
POST
|
Hi Abhijeet Satam, Let me ask the obvious first question. Do you have the "Map1.mmpk" data file on both machines? I'm sure you do, but I have to ask just to be sure. I cannot spot anything wrong in your test code. Can you put some logging in your "OfflineMap::doneLoadingFn" slot code? Let's first confirm that the mobile map package is indeed loading successfully. If it's not, are there any error messages? You should be able to get those from the "doneLoading" signal which passes an error object. Please let us know if this helps spot the issue. Don't hesitate to let us know if you're still hitting issues. Regards, -James
... View more
07-05-2019
12:55 PM
|
1
|
1
|
1371
|
|
POST
|
M Ka, one of my colleagues tried this out in a test and wasn't able to reproduce the problem on a mobile device. That was using the same code you provided with a different web map. If you're able, please log the issue with Esri support so we can follow up. Esri Support Home
... View more
05-28-2019
01:46 PM
|
0
|
0
|
2136
|
|
POST
|
Thanks Selim Ozel for the extra information. I've tried a few 3D samples on my Windows desktop machine and I didn't see any frame rate or interaction sluggishness with 100.5 using the SDK Qml sample app. Can you share your screen resolution? Mine is 1920 x 1080. I'm wondering if a very high resolution could be what's causing the difference here.
... View more
05-22-2019
11:23 AM
|
1
|
1
|
1274
|
|
POST
|
M Ka thanks for the offer. I'll see if I can find a web map with four (or more) layers that we have access to and see if I can reproduce the problem that way.
... View more
05-22-2019
09:36 AM
|
0
|
2
|
2136
|
|
POST
|
M Ka, Thanks for the additional info. Is the web map you're accessing public? If so, please share the url and we can try to reproduce the problem on our end.
... View more
05-21-2019
03:44 PM
|
0
|
4
|
2136
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 10-22-2025 03:59 PM | |
| 1 | 06-18-2025 10:30 AM | |
| 1 | 06-18-2025 08:43 AM | |
| 1 | 05-15-2025 01:10 PM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|