|
POST
|
Hisho- A good place to start is to download the sample viewer and check out the routing samples. QML samples - ArcGIS for Developers | ArcGIS for Developers C++ samples - ArcGIS for Developers | ArcGIS for Developers Use the samples as a base, and then consult the API reference for finer grain details. Thanks, Luke
... View more
11-13-2015
08:32 AM
|
0
|
1
|
2581
|
|
POST
|
Are you sure you want to be calling queryServiceFeatures? This is to query the service to pull records into the feature table. If you are just wanting to do a regular query, you probably want to perform a queryFeatures or even a QueryTask.
... View more
11-12-2015
12:44 PM
|
0
|
1
|
2346
|
|
POST
|
Hi Taner, What is the "feature" in feature.geometry referring to? Is this a feature from the feature table that you have obtained through some method of the feature table? Thanks, Luke
... View more
11-12-2015
09:11 AM
|
0
|
1
|
2346
|
|
POST
|
Hi Nick, This is a known limit. Our runtime core can not read data that is in a qt resource (qrc) file. We are looking into if this will be possible to support or not for a future release. If you are using AppStudio (based on the code you provided), I suggest you post in the AppStudio space to ask what the preferred method of working with file paths across multiple platforms. I believe there is a method on AppFramework that will return a unique path for each platform, but it would be good to check with them. If you are using the SDK (not AppStudio), then we have a guide topic that discusses how to do that - Deploy local offline data with your app—ArcGIS Runtime SDK for Qt | ArcGIS for Developers Thanks, Luke
... View more
11-12-2015
09:08 AM
|
1
|
2
|
1536
|
|
POST
|
Yes, this should work- anything after 5.4.1 should work. We compiled our 10.2.6 API at 5.4.1, so it can't be consumed by Qt SDKs from before then (e.g. 5.3), but it should work with Qt SDK binaries after 5.4.1 (e.g. 5.4.2, 5.5 or 5.5.1). I just downloaded and tried with 5.5.1 and was able to build and run successfully.
... View more
11-04-2015
11:26 AM
|
2
|
2
|
1757
|
|
POST
|
Hey Rainer- No, this won't need the spatial analyst extension. The only time you will need that extension is if you are using the Geoprocessor, and running a geoprocessing tool that requires Spatial Analyst extension. If this was the case, you would need to publish a Geoprocessing package (GPK) from ArcMap, and consume that package in Runtime. With this workflow, you would know you need to purchase an extension if you also needed the extension to execute the tool in ArcMap- if the tool in ArcMap required the extension, the tool once packaged as a GPK will require the extension in Runtime. Cheers, Luke
... View more
10-29-2015
07:43 PM
|
0
|
1
|
928
|
|
POST
|
Hey Paul- Can you share the JSON representation of the renderer? I tried creating a simple line graphic with a dashed line symbology, and that works as expected, so maybe there is something in the renderer causing issues. Thanks, Luke
... View more
10-29-2015
04:21 PM
|
0
|
1
|
1052
|
|
POST
|
Hey Andy, You can get to the Extras API Ref here ArcGIS Runtime QML Extras: QML Type List I think you are right that with the home page redesign, we may have lost the link out to this. We will figure out a good place for this, but for now, you can use the above link to access the API ref. -Luke
... View more
10-28-2015
01:02 PM
|
0
|
1
|
865
|
|
POST
|
Hey Rainer, No worries, glad to help. I can't speak to the 2 Quartz options as they are still in design. Once they are fleshed out, I believe the raw raster analysis is going to be the cleanest and most straight forward. For now, try to create the feature table, either of grids polygons or maybe even point centroids (do this work in ArcMap). Once you have that, I would bring it into your Runtime app, and do the following: 1) Create signal handler for mouse clicked on the map 2) call Buffer on the mapPoint that is returned 3) Set up a query against the feature table. The query will need to have several things set: - Where clause to "1=1" to return any record. Change this to some other SQL clause if you want to filter results. - Set the geometry to your buffer polygon - Set spatial relationship to either intersects or within, depending on what your requirements are - Set outstatisitcs to gather the average, standard deviation, sum, etc. Here are the different out statistics you can set - ArcGIS Runtime SDK for Qt QML API: Enums Class Reference 4) Execute the query and create a signal handler for when it completes. The results will be aggregated values to whatever your outstatistics were set to, as opposed to individual values from the raw data I do something similar in the following example. It creates the buffer, runs a query with the buffer, sets out statistics, and gets the aggregated data points back. The only difference is this runs a QueryTask, but this workflow should work against a feature table with queryFeatures. RuntimeQtSamples/main.qml at master · ldanzinger/RuntimeQtSamples · GitHub Hope this gets you on the right track. -Luke
... View more
10-28-2015
12:04 PM
|
0
|
3
|
928
|
|
POST
|
If your data are in vector format and you are using the new type of package, something like this should probably be possible, though I can't say for certain, as we are still in the early stages of design. The alternative workflow you suggested would work as well. Another feature we will have at Quartz is support for raw raster files (tiff, jpg, etc), so if you have bathymetry data that are already in raster format, this may end up being the best route to go. You could have a raster function that did something like your buffer workflow that you suggested. -Luke
... View more
10-27-2015
03:49 PM
|
0
|
5
|
2369
|
|
POST
|
The full story is not yet worked out, but it will likely be through a package that can be created in ArcGIS Pro, and can then be consumed in ArcGIS Runtime APIs and ArcGIS Pro.
... View more
10-27-2015
09:58 AM
|
0
|
7
|
2369
|
|
POST
|
And we are considering adding something for searching for features in a basemap layer at Quartz, however it would likely be using something other than a TPK with an ArcGISLocalTiledLayer. Hope that helps! -Luke
... View more
10-26-2015
05:03 PM
|
0
|
9
|
2369
|
|
POST
|
To elaborate a bit, the TPK is basically a compressed file of a bunch of images in a specific folder structure, so the attributes associated with the data for identify in ArcMap are no longer with the TPK once it is created. If you created a new, blank MXD and brought the TPK into ArcMap, I don't believe the identify operation will tell you the same information as what you saw with the original MXD.
... View more
10-26-2015
04:25 PM
|
0
|
10
|
2369
|
|
POST
|
The reason I ask is because with ArcGISTiledMapServiceLayer (online), you can set up the service so that you can run a query against it. However, you won't be able to do this with the ArcGISLocalTiledLayer and a TPK.
... View more
10-26-2015
04:07 PM
|
0
|
11
|
2369
|
|
POST
|
Hey Rainer- Are you working only offline (with a TPK and ArcGISLocalTiledLayer) or also online (with an ArcGISTiledMapServiceLayer)? -Luke
... View more
10-26-2015
04:02 PM
|
0
|
13
|
2369
|
| 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 |
a month ago
|