|
POST
|
Hi, We would love to test your data - please email me on [email protected]. Thanks
... View more
11-09-2021
09:50 AM
|
0
|
0
|
2037
|
|
POST
|
What collection type are IncludedLayers and ExcludedLayers?
... View more
11-08-2021
10:20 AM
|
0
|
0
|
1669
|
|
POST
|
Hi, A couple of questions: Are you using ArcGIS Runtime SDK for .NET version 100.12? Can you share the metadata for your SLPKs to check the layer type, version, etc? A quick way to check the SLPK metadata is to use 7-zip to browse into the SLPK > 3dSceneLayer.json.gz > 3dSceneLayer.json. This contains the layer type, version, texture format, etc. If your SLPKs are version 1.6 or less then try converting them to 1.7/1.8: https://github.com/Esri/i3s-spec/blob/master/i3s_converter/i3s_converter_ReadMe.md Also see https://developers.arcgis.com/net/reference/release-notes/100.12/#enhancements
... View more
11-08-2021
09:58 AM
|
0
|
1
|
2056
|
|
BLOG
|
Any news on the SDK Roadmap, and when we can expect a new version for .NET 6 and MAUI? :smiling_face_with_halo: Support for .NET 6 on Windows (WPF, WinUI) is planned for an upcoming release in Q4 2021 (100.13), but with the delay of .NET MAUI to Q2 2022, support for .NET MAUI with ArcGIS Runtime SDK for .NET is also delayed. It is possible that we might be able to ship a preview in Q1-Q2 2022. If you're interested in joining a potential preview please email [email protected].
... View more
11-08-2021
09:12 AM
|
2
|
0
|
2461
|
|
POST
|
Hi, Unfortunately the API does not currently support directly identifying/selecting discrete contiguous sets of cells within an image/raster. That type of functionality is potentially available in ArcGIS Pro as the Raster to Polygon geoprocessing tool, and if you're using WPF then you could investigate using the ArcGIS Runtime Local Server component to run a geoprocessing package that contains a model/script that uses the Raster to Polygon tool. For more info see: https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/basics/create-a-model-tool.htm https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/package-result.htm https://developers.arcgis.com/net/local-server/
... View more
11-05-2021
02:11 PM
|
0
|
1
|
1872
|
|
POST
|
Would you like to select the image outline/extent, or individual areas within the image?
... View more
11-04-2021
09:32 AM
|
0
|
1
|
1879
|
|
POST
|
Hi, Was there a specific version of ArcGIS Pro with which you were able to export a TPK and successfully use with ArcGIS Runtime 10.2.5? Please can you confirm if the application you're using is built with ArcGIS Runtime SDK for WPF 10.2.5 (Esri.ArcGIS.Client...) or ArcGIS Runtime SDK for .NET 10.2.5 (Esri.ArcGISRuntime...)? Thanks
... View more
11-03-2021
09:45 AM
|
0
|
1
|
1744
|
|
POST
|
Hi, It's possible that you're unable to delete the raster until .NET garbage collection has run. Try calling the following (one or more times): GC.Collect();
GC.WaitForPendingFinalizers();
try
{
if (File.Exists(rasterFile))
{
File.Delete(rasterFile);
}
}
catch (Exception e)
{
// TODO...
}
... View more
11-01-2021
01:36 PM
|
0
|
1
|
2539
|
|
POST
|
This only applies to standard proxy servers, the ArcGIS resource proxy is not supported.
... View more
10-29-2021
11:44 AM
|
0
|
0
|
1985
|
|
POST
|
Hi, The method you assign to the AuthenticationManager ChallengeHandler should be raised when encountering a 407 Proxy Authentication Required response, allowing you to create and set the required proxy credential. Or alternatively you can do this upfront by creating the credential and adding to the Authentication Manager. In the sample you referenced, you would add additional logic in the `PromptCredentialAsync` method, for example: if (requestInfo.AuthenticationType == AuthenticationType.Token)
{
credential = await AuthenticationManager.Current.GenerateCredentialAsync(info.ServiceUri);
}
else if (requestInfo.AuthenticationType == AuthenticationType.Proxy)
{
credential = new ProxyCredential(info.ProxyServiceUri, "Basic", new System.Net.NetworkCredential("...", "..."));
} Also see https://developers.arcgis.com/net/api-reference/api/netwin/Esri.ArcGISRuntime/Esri.ArcGISRuntime.Security.ProxyCredential.-ctor.html
... View more
10-29-2021
10:19 AM
|
0
|
1
|
1989
|
|
POST
|
The follow-up question was posted separately as https://community.esri.com/t5/arcgis-runtime-sdk-for-net-questions/vegetations-and-highways-is-not-showing-after/td-p/1111154
... View more
10-28-2021
06:39 PM
|
0
|
0
|
1986
|
|
POST
|
Check the SurfacePlacement values of those layers. Or depending on the type of layer, you could try setting the AltitudeOffset property (similar to the suggestion above but using the ArcGIS Runtime API).
... View more
10-28-2021
06:22 PM
|
1
|
0
|
1598
|
|
POST
|
I've asked internally to see if there was a change in the internal format/structure of TPKs.
... View more
10-28-2021
06:18 PM
|
0
|
0
|
1769
|
|
POST
|
The ArcGIS Online Map Viewer is a web app built with the ArcGIS API for JavaScript, therefore the behavior may different from the out-of-the-box ArcGIS API for JavaScript map control. Regarding displaying labels in your ArcGIS Runtime app, because the service definition does not contain a label definition you will need need to add in code. For a sample see: https://developers.arcgis.com/net/wpf/sample-code/show-labels-on-layers/.
... View more
10-27-2021
12:31 PM
|
0
|
0
|
2580
|
|
POST
|
Just to confirm, which Package type did you specify when creating the tile package in ArcGIS Pro: TPK or TPKX? (https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/create-map-tile-package.htm) Thanks
... View more
10-26-2021
12:57 PM
|
0
|
1
|
1791
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-14-2026 05:04 AM | |
| 1 | 02-20-2024 07:02 AM | |
| 1 | 01-19-2026 06:44 AM | |
| 1 | 12-10-2025 07:16 AM | |
| 1 | 11-21-2025 08:12 AM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|