|
POST
|
To instruct the MapView to navigate in response to button/slider reaction use one of the SetViewPoint...() asynchronous or synchronous methods: https://developers.arcgis.com/net/wpf/api-reference/html/Methods_T_Esri_ArcGISRuntime_UI_Controls_MapView.htm. To update the slider/UI in response to user interaction/navigation on the map, listen for the NavigationCompleted or ViewpointChanged events (careful with the latter because it fires frequently): https://developers.arcgis.com/net/wpf/api-reference/html/Events_T_Esri_ArcGISRuntime_UI_Controls_MapView.htm. Also see this sample for some tips in programmatically navigating the view: https://developers.arcgis.com/net/wpf/sample-code/geoview-viewpoint-synchronization/.
... View more
07-16-2021
02:25 PM
|
0
|
1
|
4414
|
|
POST
|
Hi, Can you provide more details about the scenario you'd like to implement with mousewheel over the map view? Thanks
... View more
07-16-2021
01:24 PM
|
0
|
0
|
4424
|
|
POST
|
Hi, Can you try disabling the request caching to see if this makes a difference? Note this is for testing/diagnosis purposes only because disabling the cache will have a significant performance impact. Add this line before any the ArcGIS Runtime makes any requests, e.g. in your App.xaml.cs class. AppContext.SetSwitch("Switch.Esri.ArcGISRuntime.DisableRequestCache", true); Thanks
... View more
07-13-2021
12:40 PM
|
0
|
4
|
4438
|
|
POST
|
Hi, The problem with the map package (.mpkx) in this case is the online basemap layers. ArcGIS Runtime Local Server doesn't support online services through packages. Online services should be added to the application directly via the API . You can use the basemap constructor and basemapstyle enum, or work with specific layer types vector tile layer or image tiled layer. Alternatively, ArcGIS Runtime actually supports raster data directly without needing to use the Local Server component. We recommend using Mobile Map Packages (.mmpk) and using those within ArcGIS Runtime. This workflow will also support referencing those online basemap layers. See the Open mobile map package sample and ArcGIS Pro topic Share a mobile map package for more information. Thanks
... View more
07-12-2021
10:23 AM
|
1
|
2
|
3790
|
|
POST
|
Hi, I've downloaded the map package you shared and have reproduced the issue. Investigating... Thanks
... View more
07-12-2021
09:59 AM
|
1
|
0
|
3795
|
|
POST
|
Sorry - missed the crucial doc link...a Standard license is required to View, create, edit, and save KML data stored as a local file.
... View more
07-08-2021
01:43 PM
|
0
|
0
|
3858
|
|
POST
|
If the load async throws an unlicensed error, that might indicate you've set a license but the license level is too low for this functionality. Try commenting out any licensing code for now and running in developer mode (you'll see a watermark on the scene view). This topic provides more info on licensing. Also this topic provides detailed information about API calls that require a specific license level.
... View more
07-08-2021
01:15 PM
|
0
|
0
|
3861
|
|
POST
|
You could try awaiting the async load on the KmlDataset or KmlLayer (depending on the approach you're taking) and check the load status, noting that load may return an exception is there's an error. Also try the SceneView LayerViewStateChanged event to identify layer-related drawing activity (in/out of scale, errors, etc). https://developers.arcgis.com/net/wpf/api-reference/html/M_Esri_ArcGISRuntime_Mapping_Layer_LoadAsync.htm https://developers.arcgis.com/net/wpf/api-reference/html/E_Esri_ArcGISRuntime_UI_Controls_GeoView_LayerViewStateChanged.htm
... View more
07-08-2021
09:40 AM
|
0
|
0
|
3865
|
|
POST
|
Hi Jeremy, Thanks for sharing this info. A local deployment of the C++ Runtime dependencies is good if you want absolute control over the version that is used by your application. Note you're then responsible for keeping it up to date, in contrast to the central deployment which is serviced by Windows Update. If our deployment guide topic is lacking any detail, please let us know and we'll be delighted to address the gap. https://developers.arcgis.com/net/license-and-deployment/deployment/ Thanks Mike
... View more
07-01-2021
09:56 AM
|
0
|
1
|
2642
|
|
POST
|
Hi Joe, It appears you used the correct geoprocessing tool in ArcGIS Pro - Create Locator (Geocoding) - because you mentioned having a .loc and .loz file. That's the new locator format supported since ArcGIS Runtime 100.5 and the only format supported from 100.12 onwards. Can you share the snippet of code where you create the LocatorTask? Thanks
... View more
07-01-2021
09:42 AM
|
0
|
0
|
2909
|
|
BLOG
|
Announcing ArcGIS Runtime SDK for .NET 100.11.2 Preview 4 with support for WinUI 3 We are pleased to announce ArcGIS Runtime SDK for .NET 100.11.2 Preview 4 with support for WinUI 3. This release updates the preview of support for ArcGIS Runtime with WinUI 3 to target the recently released Windows App SDK version 0.8.0 (formerly known as Project Reunion). Try out ArcGIS Runtime and WinUI 3 #1. Open a browser and go to your ArcGIS Developer dashboard to get your API key. #2. Follow the Microsoft docs Get Started steps to Create a WinUI 3 desktop app for C# and .NET 5. #3. Open the NuGet Package Manager for your new WinUI application project and install package Esri.ArcGISRuntime.WinUI version 100.11.2-preview4. #4. Open MainWindow.xaml. #4.a. Add a XAML namespace e.g. xmlns:esri="using:Esri.ArcGISRuntime.UI.Controls" #4.b. Add a map view control <esri:MapView x:Name="MyMapView" /> #5. Open MainWindow.xaml.cs #5.a. Set the ArcGIS API key you created via your Developer dashboard ArcGISRuntimeEnvironment.ApiKey = "<Your_API_key_here>"; #5.b. Create a new map and set the map property of the map view MyMapView.Map = new Map(BasemapStyle.ArcGISChartedTerritory); #6. Run the app to see ArcGIS Runtime and WinUI. The ArcGIS Runtime SDK for .NET sample viewer for WinUI has also been updated to reference this latest Esri.ArcGISRuntime.WinUI preview. Note: Support for ArcGIS Runtime with WinUI 3 is still in Preview and cannot be used in production at this time. This is an exciting development on the roadmap for Windows app developers and we look forward to any feedback you have on your experience using this preview. Thanks The ArcGIS Runtime .NET Team
... View more
06-28-2021
03:38 PM
|
0
|
0
|
1961
|
|
POST
|
Hi, Try the code shown in this sample: https://developers.arcgis.com/net/wpf/sample-code/show-callout/ But instead of using the GeoViewTapped event, use MouseMove as shown in this demo: https://github.com/Esri/arcgis-runtime-demos-dotnet/tree/main/src/GeocodeAndRoutingOnMouseMove
... View more
06-21-2021
04:05 PM
|
0
|
0
|
2328
|
|
POST
|
Hi, Thanks for your question. Clustering / feature reduction is still on the roadmap for a future release.
... View more
06-18-2021
11:23 AM
|
0
|
1
|
3325
|
|
POST
|
Hi, You'll find more information about deploying apps built with ArcGIS Runtime SDK for .NET in this Guide topic: https://developers.arcgis.com/net/license-and-deployment/deployment/
... View more
06-17-2021
05:26 PM
|
0
|
0
|
1541
|
| 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
|