|
POST
|
Currently we provide the help doc online via the ArcGIS Developer site and offline as a downloadable standalone deployment of the site. In the past we've included integrated help but the tooling and build process were brittle and ultimately didn't provide a good experience versus the maintenance overhead. Are you looking for integrated API reference only (beyond the built-in object browser), or both API reference and guide topic content?
... View more
04-29-2022
05:55 AM
|
1
|
0
|
1072
|
|
POST
|
Hi, The Visual Studio extension with project templates does not support VS 2017: it only supports VS 2019 and VS 2022. In fact I'm a little surprised you were able to install into VS 2017, it should prevent this from happening which is something we'll need to investigate. If you're starting a new project now, we highly recommend VS 2022 and .NET 6. Thanks
... View more
04-29-2022
05:44 AM
|
0
|
3
|
3550
|
|
POST
|
ArcGIS Runtime doesn't support .lyr/.lyrx files directly but there are several options depending on what you would like to achieve: Read the .ecw file directly and define the render with the ArcGIS Runtime API e.g. https://developers.arcgis.com/net/wpf/sample-code/stretch-renderer/ Include a layer referencing the .ecw file, and with your desired symbology defined, in your ArcGIS Pro map and share as a mobile map package then open this in ArcGIS Runtime e.g. https://developers.arcgis.com/net/wpf/sample-code/open-mobile-map-package/ Create a geoprocessing model/script in ArcGIS Pro that opens a .lyrx file and creates a layer. You would then share the model/script as a geoprocessing package and use in conjunction with ArcGIS Runtime Local Server to start a local geoprocessing service, run the geoprocessing task, and add the results to your map operational layers collection as a map image layer e.g. https://developers.arcgis.com/net/wpf/sample-code/local-server-geoprocessing/
... View more
04-27-2022
05:24 PM
|
1
|
1
|
5097
|
|
POST
|
Hi, The licensing summary slide applies to geoprocessing tools for working with mosaic datasets. The Local Server doc topic Supported geoprocessing tools shows how the ArcGIS Runtime license levels match up to ArcGIS Pro license levels and the list of supported tools indicate the ArcGIS Runtime license required for each tool. If you search the page for "mosaic" you see that a couple of simple mosaic tools are available at the ArcGIS Runtime Standard license level: And then most other mosaic related tools require a ArcGIS Runtime Advanced license level:
... View more
04-25-2022
01:25 PM
|
0
|
0
|
2167
|
|
POST
|
What layer type or data format does your .lyr file apply to?
... View more
04-20-2022
10:31 AM
|
0
|
3
|
5128
|
|
BLOG
|
Preview 1 of support for the .NET Multi-platform App UI (MAUI) framework with ArcGIS Runtime SDK for .NET is now available. The evolution of Xamarin.Forms, .NET MAUI is a cross-platform framework for creating native mobile and desktop apps with C# and XAML, and enables you to develop apps that can run on Android, iOS, and Windows from a single shared code-base. Get started with .NET MAUI and ArcGIS Runtime SDK for .NET Prerequisites Visual Studio 2022 Preview (Version 17.2 or higher) Note: Esri.ArcGISRuntime.Maui version 100.13.1-preview1 supports .NET MAUI Preview 14 only. Support for the recent .NET MAUI RC 1 release will be available in a future preview of Esri.ArcGISRuntime.Maui. Steps Note:- For more information about steps 1.-4. see the .NET MAUI topic Build your first app in the Microsoft documentation. 1. Launch Visual Studio 2022 17.2 Preview, and in the start window click Create a new project to create a new project. 2. In the Create a new project window, select MAUI in the Project type drop-down, select the .NET MAUI App (Preview) template, and click the Next button. 3. In the Configure your new project window, name your project, choose a suitable location for it, and click the Create button. 4. Wait for the project to be created, and its dependencies to be restored. 5. In Solution Explorer window right click the project and choose `Edit Project File` 6. Modify the TargetFrameworks to remove net6.0-maccatalyst: <TargetFrameworks>net6.0-android;net6.0-ios</TargetFrameworks> Note: There are no plans to support MacCatalyst at this time. 7. Add references to Esri.ArcGISRuntime.Maui Preview 1 and Esri.ArcGISRuntime.WinUI and global using statements: <ItemGroup>
<PackageReference Include="Esri.ArcGISRuntime.Maui" Version="100.13.1-preview1" />
<PackageReference Include="Esri.ArcGISRuntime.WinUI" Version="100.13.1" Condition="$(TargetFramework.Contains('-windows'))" />
<Using Include="Esri.ArcGISRuntime.Maui" />
<Using Include="Esri.ArcGISRuntime.Mapping" />
</ItemGroup> 8. Set the Windows TargetPlatformMinVersion and SupportedOSPlatformVersion to version 10.0.18362.0: <SupportedOSPlatformVersion Condition="$(TargetFramework.Contains('-windows'))">10.0.18362.0</SupportedOSPlatformVersion>
<TargetPlatformMinVersion Condition="$(TargetFramework.Contains('-windows'))">10.0.18362.0</TargetPlatformMinVersion> 9. Set the Android SupportedOSPlatformVersion to version 23: <SupportedOSPlatformVersion Condition="'$(TargetFramework)' == 'net6.0-android'">23.0</SupportedOSPlatformVersion> 10. Open MauiProgram.cs and add .UseArcGISRuntime() to the builder: var builder = MauiApp.CreateBuilder();
builder
.UseMauiApp<App>()
.ConfigureFonts(fonts =>
{
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
}).UseArcGISRuntime(); 11. Open MainPage.xaml 12. Add an esri namespace declaration: xmlns:esri="http://schemas.esri.com/arcgis/runtime/2013" 13. Add a map view: <esri:MapView x:Name="mapView"/> 15. Open MainPage.xaml.cs 16. Create a Map with a Basemap and assign to the MapView: mapView.Map = new Esri.ArcGISRuntime.Mapping.Map(new Basemap(BasemapStyle.ArcGISNova)
{
ApiKey = "<Your ArcGIS Developer API Key here>"
}); Note:- If you don't already have an ArcGIS Developer account and an API key for using ArcGIS Platform location services go to https://developers.arcgis.com/sign-up/ for more information. 17. Now it's time to build and run your app. Below is an example from following the steps above and running on a Windows Machine. Known Issues Esri.ArcGISRuntime.Maui version 100.13.1-preview1 supports .NET MAUI Preview 14 only. Support for the recent .NET MAUI RC 1 release will be available in a future preview of Esri.ArcGISRuntime.Maui. The need to add an explicit package reference to Esri.ArcGISRuntime.WinUI will be resolved in a future release. Feedback If you have any feedback on this preview or find any bugs please let us know via the ArcGIS Runtime SDK for .NET questions board Additional Resources What is .NET MAUI? .NET Multi-platform App UI documentation Announcing .NET MAUI Preview 14
... View more
04-06-2022
08:49 AM
|
2
|
5
|
6574
|
|
POST
|
To find out when the network status changes (and then use an approach like @JoeHershman's) you might be able to use something like the NetworkChange.NetworkAvailabilityChanged Event.
... View more
04-04-2022
05:58 PM
|
0
|
0
|
2302
|
|
POST
|
Hi Thanks for confirming that updating to the latest Windows SDK resolved your issue. We have occasionally seen API calls falsely reported by previous versions of the WACK, and this appears to be a similar case. Thanks
... View more
04-04-2022
05:39 PM
|
0
|
2
|
3383
|
|
BLOG
|
The 100.13.1 patch release of ArcGIS Runtime SDKs for Android, iOS, Java, .NET, and Qt is now available to resolve vulnerabilities identified in the Expat library used by ArcGIS Runtime. For 100.13.1 the version of Expat library has been updated to 2.4.6. Expat is a 3rd-party library used by ArcGIS Runtime to provide stream-oriented XML parsing functionality. The library is used in open-source software like Apache, Mozilla, Perl, PHP, and Python, along with most Linux distributions. Expat has recently patched vulnerabilities that expose XML processors to at least two exploit vectors: arbitrary code execution, or denial-of-service. ArcGIS Runtime 100.13.1 includes the patched version of the Expat library. The 100.13.1 patch is complete (not an overlay) and follows the support lifecycle for ArcGIS Runtime 100.13 defined on the Esri Technical Support web site. For more details see the release notes for Android, iOS, Qt, .NET, and Java. To get 100.13.1, reference your API of choice through NuGet, Gradle, Swift Package Manager, or CocoaPods or go to the ArcGIS Developers downloads.
... View more
03-23-2022
06:37 PM
|
0
|
0
|
2177
|
|
POST
|
To use navigation capabilities with the RouteTracker you need a Basic license (see https://developers.arcgis.com/net/license-and-deployment/license/ and https://developers.arcgis.com/faq/#licensing-runtime-license-string-distributed). This can be licensed in the form of a license string (as you have been doing with the Lite license string) or by enabling the user to sign in with an ArcGIS Identity at the level Editor, Field Worker, Basic, or higher (https://developers.arcgis.com/faq/#licensing-runtime-named-user-license-levels). Service-based re-routing is currently only supported with ArcGIS Enterprise (https://pro.arcgis.com/en/pro-app/latest/help/analysis/networks/publish-a-map-service-using-network-analyst-capability-using-arcgis-pro.htm). Alternatively re-routing is supported when working with network datasets in Mobile Map Packages, which can be packages you create yourself with ArcGIS Pro and that contain your street network dataset, or alternatively Streetmap Premium (https://developers.arcgis.com/net/route-and-directions/add-streetmap-premium-data/). Thanks
... View more
03-17-2022
11:55 AM
|
1
|
1
|
2101
|
|
POST
|
Rerouting isn't determined by the license, only by the data/service. So if the service parameter "Supports Rerouting" is false then it cannot be changed unless the author republishes the service. In many cases re-routing needs local data to provide a response fast enough for the user to receive updated directions and respond. Can you provide more information about the functionality you're trying to build, e.g. are you using the Class RouteTracker and want to support re-routing?
... View more
03-16-2022
01:30 PM
|
0
|
3
|
2123
|
|
POST
|
Hi, It sounds like you're making great progress. Have you already tried to follow the sample https://developers.arcgis.com/net/wpf/sample-code/show-popup/ ?
... View more
03-14-2022
10:44 AM
|
0
|
1
|
1144
|
|
POST
|
That error appears to indicate a TSL/SSL error which could represent a certificate issue, a client-side issue with the http configuration of your app, or even a date/time issue (based on Stack Overflow questions and Gitbub.com/Xamarin issues).
... View more
03-14-2022
10:38 AM
|
0
|
1
|
2357
|
|
POST
|
The availability of the rerouting option is determined by the service or local network dataset. If the service does not support rerouting or does not advertise the parameter, the property value will be false. For local datasets it is always true. https://developers.arcgis.com/net/api-reference/api/netwin/Esri.ArcGISRuntime/Esri.ArcGISRuntime.Tasks.NetworkAnalysis.RouteTaskInfo.SupportsRerouting.html https://developers.arcgis.com/net/wpf/sample-code/navigate-route-with-rerouting/
... View more
03-14-2022
10:31 AM
|
1
|
1
|
2154
|
|
POST
|
Hi, ArcGIS Runtime support for Windows 10 follows the Enterprise lifecycle. Currently the minimum supported version of Windows 10 is version 1909 (19H2, build 18363) and therefore that is the current minimum supported by ArcGIS Runtime SDK for .NET. The NuGet package specifies build 18362 because there was no SDK shipped at 18363. References: https://developers.arcgis.com/net/reference/system-requirements/ https://docs.microsoft.com/en-us/lifecycle/products/windows-10-enterprise-and-education Thanks
... View more
03-01-2022
03:36 PM
|
0
|
1
|
1740
|
| 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 |
2 weeks ago
|