|
POST
|
Does the feature table have Z defaults enabled? Check the service info Metadata https://developers.arcgis.com/net/api-reference/api/net/Esri.ArcGISRuntime/Esri.ArcGISRuntime.ArcGISServices.ArcGISFeatureLayerInfo.ZDefault.html
... View more
05-01-2023
06:40 PM
|
0
|
0
|
1819
|
|
POST
|
> after adding a publish profile for Any CPU I'm not quite following this step. When you create a publishing profile you're supposed to pick win10-x86, win10-x64 or win10-arm64. When I said "Any CPU" I mean the normal build/run that doesn't go through the publishing step.
... View more
04-21-2023
02:33 PM
|
0
|
1
|
5314
|
|
POST
|
> The attached project uses the win-x86 and win-x64 architecture specific runtime identifiers, v200 requires the runtime identifiers to be win10-x86, win10-x64 and/or win10-arm64. > After migrating to .net6/ArcGISRuntime200, the client64 and client32 directories are no longer being created. .NET 6 does this differently. If you build an any-cpu app, they'll be in the \runtimes\[runtime-identifier] folder, but once you go to publishing where you'll be using a specific runtime identifier, these goes in the application root (and the architectures that doesn't apply will be skipped). I'm not sure which UWP VSIX you're trying to take a dependency on. This isn't a UWP app. As long as you have the vclibs installed on your system, you should be good to go. The requirement is the same as it was with your WPF .NET Framework app. Note that the error you're getting about VCLibs is just one potential problem. The error is stating it couldn't load the native ArcGIS Runtime assemblies. One reason for that could be that you don't have the right vclibs installed on the system, but in this case the more likely reason is the runtimecorenet.dll and RuntimeCoreNet200_0.dll are completely missing, due to the wrong runtime identifier being used (v200.1 will have a proper build error warning you about that).
... View more
04-13-2023
11:30 AM
|
0
|
4
|
5364
|
|
POST
|
Is it possible to generate a raster file from your data? The raster layer uses georeferenced raster images, so if you can dump it to jpeg, tiff etc you should be good.
... View more
04-12-2023
01:42 PM
|
1
|
1
|
1257
|
|
POST
|
You can inspect the symbol instance's properties and you should be able to change anything including colors (note that you might have to cast the symbol to a more concrete type depending on what you're getting back).
... View more
04-12-2023
01:40 PM
|
0
|
0
|
1581
|
|
POST
|
The Esri.ArcGISRuntime license isn't allowing use in server applications, nor has it been tested to run safely in such an environment. The specific error you're getting though is because of the targeting framework which isn't compatible with what you're targeting. For a simple query API either just do the raw rest calls, or perhaps look at something like https://www.nuget.org/packages/Anywhere.ArcGIS
... View more
04-12-2023
01:37 PM
|
1
|
0
|
1413
|
|
POST
|
Identify typically is a user-interaction where you "click" the map, which is why this value is in pixels, so you can always use the same physical screen tolerance without having to adapt to the current map scale. If you want to do a spatial query with a physical geometry, use the query operations on the feature tables.
... View more
04-10-2023
09:41 AM
|
0
|
0
|
956
|
|
POST
|
> Additionally, I can fetch the services json using .Net's HttpClient without issue (ie: Could you share the specific code you use to do that? It might give us some hints what is different between the Maps SDK's web stack and yours. .NET 6 is using the SocketsHttpHandler, so try also with a few clients configured like this: var client1 = new HttpClient(new SocketsHttpHandler()); or var client2 = new HttpClient(new Esri.ArcGISRuntime.Http.ArcGISHttpMessageHandler());
... View more
04-10-2023
08:39 AM
|
0
|
2
|
1907
|
|
POST
|
The recommended way to do this is using a RasterLayer - especially with that many images at the same time. There are also more efficient image types that has built-in low-resolution versions that better support zooming out and showing all the images at the same time for maximum performance.
... View more
04-04-2023
10:21 AM
|
0
|
1
|
4821
|
|
POST
|
Lite license specifies: > Viewing KML data accessed as a web resource The key here is "as a web resource". Under Standard license you'll find: > View, create, edit, and save KML data stored as a local file. You are creating a kml dataset in the above example, thus requiring standard.
... View more
03-30-2023
01:20 PM
|
1
|
0
|
1753
|
|
POST
|
ExportImage exports just the map portion of the MapView. The MapView has no knowledge of the scaleline control, so it can't include it. There's not a simple way to do this - you'd have to use WPF's APIs to export the ScaleLine into a writeable bitmap and overlay it.
... View more
03-17-2023
10:46 AM
|
0
|
0
|
1074
|
|
POST
|
There's an overload for the Query operation on the ServiceFeatureTable subclass that allows you to specify the outfields: https://developers.arcgis.com/net/api-reference/api/netwin/Esri.ArcGISRuntime/Esri.ArcGISRuntime.Data.ServiceFeatureTable.QueryFeaturesAsync.html#Esri_ArcGISRuntime_Data_ServiceFeatureTable_QueryFeaturesAsync_Esri_ArcGISRuntime_Data_QueryParameters_Esri_ArcGISRuntime_Data_QueryFeatureFields_
... View more
03-13-2023
04:19 PM
|
0
|
0
|
664
|
|
POST
|
For now you can just throw away the result. Most of the work is done server-side, and once the request is fired off, you can't really stop the server from doing the processing. You'd only save the download of the response, which is a minimal overhead in the grand total.
... View more
03-13-2023
04:13 PM
|
0
|
0
|
1180
|
|
POST
|
You should either: 1. Set the APIKey property on the Esri.ArcGISRuntime.ArcGISRuntimeEnvironment or 2. Require the user to sign into an ArcGIS Online portal prior to opening a basemap.
... View more
03-13-2023
04:06 PM
|
0
|
4
|
1815
|
|
POST
|
Yeah that’s a VS bug. In your project settings add this and it should show: <RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers> Or you can manually change it in the publish settings file.
... View more
02-25-2023
08:57 AM
|
1
|
1
|
10427
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 05-11-2026 07:05 AM | |
| 2 | 03-19-2026 06:03 PM | |
| 1 | 03-03-2026 04:41 PM | |
| 1 | 02-26-2018 07:53 AM | |
| 1 | 02-26-2018 07:51 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|