|
POST
|
Hi Tony, There could be a couple problems. The first problem could occur if you're trying Qt 5.7.0 with Xcode 8 as it's not supported yet. The second problem could be that you'll need to clear out any `*.stash` and `*.cache` files from your build area or else Qt may be getting confused on which Xcode to use. Can you verify and let us know?
... View more
11-01-2016
11:42 AM
|
2
|
2
|
1192
|
|
POST
|
Your feature table doesn't appear to have attachments enabled on it. Can you confirm? Enabling attachments—ArcGIS Help | ArcGIS for Desktop
... View more
11-01-2016
11:21 AM
|
0
|
3
|
1542
|
|
POST
|
There are some good examples in this sample: Add graphics | ArcGIS for Developers Create Points, using geographic coordinates for example, as follows: // points Point point1 = new Point(13, 55.59); Point point2 = new Point(72.83, 18.97); Point point3 = new Point(5.43, 34.3); The way to create a Polyline is as follows... Polyline polyline = new Polyline(); polyline.startPath(118.169, 34.016); polyline.lineTo(104.941, 39.7072); polyline.lineTo(96.724, 32.732); ...and a Polygon: Polygon polygon = new Polygon(); polygon.startPath(25, 5.59); polygon.lineTo(13.42, 3.92); polygon.lineTo(12.3, 23.3); polygon.lineTo(38.2, 22.9); polygon.closePathWithLine();
... View more
10-14-2016
12:21 AM
|
1
|
0
|
2164
|
|
BLOG
|
Today we've released "Patch 2" for ArcGIS Runtime SDK 10.2.6 for Qt. This patch addresses the following stability and security issues with ArcGIS Runtime SDK 10.2.6: An API libpng dependency fix to address security vulnerabilities, which allows ArcGIS Android apps that are published to the Google Play store to be updated and any new published apps to comply with Google Play's Malicious Behavior policy. You can read more about this vulnerability in CVE-2015-8540. A fix for BUG-000096913: Edits from mobile geodatabases that contain empty geometry fail to synchronize. A fix for QML apps built with Qt 5.6.0 running on iOS 8.4 devices. These apps were crashing. Go here for more information and instructions for downloading the patch. ArcGIS Runtime SDK for Qt Development Team arcgis runtime sdk for qt
... View more
10-12-2016
03:22 PM
|
0
|
0
|
1305
|
|
POST
|
Hey David, Setting geometry on each graphic will indeed be slow after about a few hundred graphics. Setting the renderer to the GraphicsOverlay is the approach for tens of thousands of graphics.
... View more
09-26-2016
01:23 PM
|
1
|
1
|
1895
|
|
POST
|
Hi Tom. Good question. Update 1 is planned for the first half (hopefully) of 2017. Quartz Final is releasing in November.
... View more
09-26-2016
01:17 PM
|
0
|
2
|
3113
|
|
IDEA
|
We have a timeline. Finally. It is planned for an update, in 2017. Keep the votes coming. We need this desperately, as you'd all agree. It is important to us as well.
... View more
09-20-2016
08:21 AM
|
2
|
0
|
5509
|
|
POST
|
Hi Luke. LocalServer will not have a beta, and will be a part of the released product in November. LocalServer at the November release will be compatible with ArcGIS Desktop 10.4.1. ONLY. When ArcGIS Desktop 10.5 comes out in December, MPKs, GPKs, Runtime Content from Desktop 10.5 will NOT be compatible with Runtime 100.0. This compatibility will come next year with Update 1. I Just want to make that understood up-front. I would very much like to know if this is going to be a serious issue for anyone. This is expected, since 10.5 Desktop will not be finished before Runtime 100.0 needs to certify LocalServer. Thank you for the question, Luke.
... View more
09-02-2016
01:04 PM
|
0
|
4
|
3113
|
|
POST
|
Hi Luke, overviewMap.setVisible(false);....this does hide the OverviewMap component. So it sounds like you're doing the right thing. I modified the OverviewMap toolkit sample to startup with the overviewMap visibility set to false, as a test, and it honored it.
... View more
08-05-2016
08:25 AM
|
0
|
1
|
1257
|
|
POST
|
A popular notion is that it represents a treasure chest. Aaarrrrggg.
... View more
08-02-2016
02:08 PM
|
1
|
1
|
1105
|
|
POST
|
Ah. Thanks Michael. I guess I don't have the full context of your application, so I apologize in advance if this doesn't make sense. If your geometry from the original graphic is in map coordinates, and it gets added to the map, it will scale on it's own, without the need to apply your own transformation logic, etc. If the coordinates are not in the current map's spatial reference, you can use the GeometryEngine to project them before adding them to the map. Does this make sense? Am I understanding your issue correctly?
... View more
08-01-2016
08:13 AM
|
0
|
0
|
1545
|
|
POST
|
Hi Edgar, In ArcGIS Runtime, you can dynamically add geometries from a shapefile to you map by following the code example here: Dynamic workspaces shapefile | ArcGIS for Developers I hope this helps!
... View more
07-29-2016
01:59 PM
|
0
|
0
|
1127
|
|
POST
|
Hi Michael, Can you explain a bit more about what these Geometries are? Are the polylines representing real-world features?
... View more
07-29-2016
01:51 PM
|
0
|
0
|
1545
|
|
POST
|
Actually, the source for InfoPopupOverlay is in the Toolkit. The Toolkit source is available to you to refactor and recompile for your applications. You can find all the source files for the toolkit in <SDK_Install_Location>/sdk/jars/ArcGIS_Runtime_Java_Toolkit-sources.jar. InfoPopupOverlay by default uses the PopupDialog to display information, which itself extends JDialog. You can think about modifying the source to bypass this and use your own JDialog if you want. I hope this helps!
... View more
07-29-2016
01:45 PM
|
1
|
0
|
788
|
|
POST
|
Actually, ArcGIS Runtime was designed for building desktop clients that can consume services. That is quite different from server-based apps. I actually am of the opinion that it COULD be designed for both, but as the PM for the Java Runtime product, that is selfish of me to say. 🙂 The reality is, Nicole, your question is a valid one. Speaking for Runtime and Engine, and to confirm what Adam said, these are really not good options at this time for what you'd like to do. However, it may be worth looking at Esri's open source Geometry API? GitHub - Esri/geometry-api-java: The Esri Geometry API for Java enables developers to write custom applications for anal… This can be used in any Java context you wish, client or server. It is unlicensed and unsupported, but there it is.
... View more
07-29-2016
01:23 PM
|
1
|
0
|
1948
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-13-2017 11:47 AM | |
| 1 | 12-28-2016 03:30 PM | |
| 1 | 06-15-2018 10:13 AM | |
| 1 | 04-26-2015 09:53 AM | |
| 1 | 06-12-2018 01:57 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:22 AM
|