|
POST
|
What is the URL the webmap contains and what URL is being requested? With WPF you can use Fiddler to capture the request or add an event handler for the request begin event (noting that sometimes Fiddler can change request/response behavior). ArcGISHttpClientHandler.HttpRequestBegin += (sender, request) =>
{
// Check the URL here.
}; Thanks
... View more
05-17-2020
12:47 PM
|
0
|
2
|
2350
|
|
POST
|
Kyle, It's good news that you have isolated the repro. Downloading now. Please email me the password: [email protected] Thanks Mike
... View more
05-17-2020
12:25 PM
|
2
|
0
|
10338
|
|
POST
|
Hi, A Shapefile is a collection of features, which means you might be asking one of several questions depending on what you're trying to achieve. - The area of each individual feature? - The combined area values of all features? - The area of the rectangular extent encompassing all features? - The area of the smallest polygon encompassing all features? In all cases above you should be able to follow sample arcgis-runtime-samples-dotnet/src/WPF/ArcGISRuntime.WPF.Viewer/Samples/Data/FeatureLayerQuery at master · Esri/arcgis-ru… and use ShapefileFeatureTable instead of the ServiceFeatureTable. Thanks Mike
... View more
05-16-2020
03:49 PM
|
2
|
4
|
2964
|
|
POST
|
Kyle, Is there any way to explicitly disable hardware acceleration in runtime? You can set at a process level using the code below and ArcGIS Runtime will honor this setting: RenderOptions.ProcessRenderMode = System.Windows.Interop.RenderMode.SoftwareOnly;
I'm still curious about the green "placeholder tiles" (ArcGIS Runtime doesn't do this) but it seems unrelated to this issue. Thanks Mike
... View more
05-15-2020
12:36 PM
|
2
|
3
|
4633
|
|
POST
|
Hi, I recommend the following guide topics: Maps and scenes—ArcGIS Runtime SDK for .NET | ArcGIS for Developers Layers and tables—ArcGIS Runtime SDK for .NET | ArcGIS for Developers Layer types described—ArcGIS Runtime SDK for .NET | ArcGIS for Developers Work offline—ArcGIS Runtime SDK for .NET | ArcGIS for Developers Thanks Mike
... View more
05-15-2020
11:46 AM
|
0
|
0
|
2371
|
|
POST
|
Kyle, I started replying to your previous comment where you mentioned adding/removing the MapView from the visual tree. But your comment disappeared before I could reply... This is starting to sound like a classic DirectX lost device issue. Version 100.8 did include a more robust framework for handling these scenarios (including removing the view from the visual tree and re-adding). But it seems you have found another case that we have not yet encountered. Questions: #. I'd like to ask if you can test a preview of 100.9 because we improved on the 100.8 fix in the last couple of weeks before the release but at that stage the change was considered too pervasive to include in 100.8. #. Can you clarify this comment "Normally when you have an aerial basemap, unloaded tiles are shown with this dark green color."? #. Any repro code you're able to share yet? Thanks Mike
... View more
05-15-2020
11:24 AM
|
0
|
5
|
4633
|
|
POST
|
Are you using the 2D MapView or 3D SceneView? Thanks
... View more
05-14-2020
04:25 PM
|
1
|
7
|
4610
|
|
POST
|
Hi, The answer might depend on your workflow, or that of your users e.g. Is this a one-time import of raster data into another format or do users of your app regularly open ascii rasters from disk? If you're building an app with WPF then you could use the ArcGIS Runtime Local Server. This will support all the raster formats of ArcGIS Pro / ArcMap. You could read/render the dataset from disk via a LocalMapService or use a LocalGeoprocessingService to import/convert the raster data between formats. Thanks Mike
... View more
05-13-2020
05:59 PM
|
1
|
9
|
4610
|
|
POST
|
Kyle, Thanks for retesting. We are currently in the process of publishing the 100.8 symbols. But yes, you should remove the preview NuGet package(s) and update to the now available official 100.8 release (build 2768). Thanks Mike
... View more
05-13-2020
03:45 PM
|
0
|
7
|
5705
|
|
BLOG
|
We are pleased to announce the 100.8 release of ArcGIS Runtime SDK for .NET. This release includes significant new features, enhancements to existing features, performance improvements, and bug fixes. You can read about the topics common to all ArcGIS Runtime SDKs here, but for you - our .NET community - there are several specific details we would like to highlight. API At the heart of the ArcGIS Runtime SDK is the API you use when building your Android, iOS, UWP, and WPF apps, let's start there... API : Nullability Nullability (or Nullable Reference Types) introduced with C# 8.0 enables you to be explicit in your code concerning when a reference may be null and when it is never supposed to be null, with the goal of avoiding `NullReferenceExceptions` at runtime. Compile time warnings help to show you where you perhaps made an assumption that a variable will never be null and you missed implementing a null check and that could later cause a crash while users are running your app. Over the past year the ArcGIS Runtime .NET dev team has been preparing to support nullability of reference types and over the past few months this process has progressed to incrementally enabling the API source code to support nullability. Adding this valuable information to the ArcGIS Runtime API will be a multi-release effort and there is still a significant amount for us to do. With our 100.8 release, if your project uses C# language version 8.0 and you have opted your project into the nullable reference types feature, you will begin to see information in Visual Studio declaring the expected null state of reference type variables. But until we announce the API as fully supporting nullability you should consider this just a preview of this exciting feature. API : UI Enhancements to features that your users will see in the UI of your apps: Support for showing the dark style Esri OAuth sign-in page on platforms which have a dark UI mode/theme (Android, iOS, and UWP). For more information see OAuthClientInfo.UserInterfaceStyle. Improved positioning of Callouts to avoid clipping when placed in the corners of the screen (WPF and UWP). Resolved a few issues related to the layout of Callout relative to its content and when the TapLocation or Geometry was null. API : Web and security Ongoing work to enable efficient, secure access to remote content: Implemented HTTP request caching for WPF when targeting .NET Core (.NET Framework has built-in caching). Improved OAuth refresh and expiration behavior. Added OAuth TokenExpirationInterval property (replaces the deprecated TokenValidity). Improved PKI certificate authentication challenge detection when a connection is refused. Added the CredentialPersistence class and associated support on the AuthenticationManager class. Note in a future release default implementations for Android, iOS, UWP and WPF will be added. API : Additions and enhancements Specific API additions in response to your feedback: Added method PortalGroup.FindItemsAsync to improve searching for items that belong to a group. PortalGroup now implements the loadable pattern. Added method GeodatabaseSyncTask.ApplyDeltaAsync (addresses previous deprecation of static methods for importing deltas with GeodatabaseSyncTask). Updated ArcGISException and ArcGISDirectXException to be serializable and avoid the exception `Cannot pass a GCHandle across AppDomains`. API : Performance and internal improvements When working with many tens, or hundreds, of thousands of graphics we had some reports of memory or speed concerns. Building on improvements included in v100.7 (December 2019) we spotted a few more opportunities to further optimize performance for you in v100.8: Reduced managed memory per GeoElement instance (Graphic, Feature, and the new RasterCell). Reduced managed and un-managed memory and a significant speed-up when working working with Graphics with geometry and attributes. One the primary benefits of tiled layers is rapid, seamless display of layer content. We also made a small but significant tweak to further optimize tile request behavior during sustained user interaction. This tweak results in fewer tile requests and fewer request cancellations when you are are navigating through multiple levels of detail to your area of interest. SDK : Toolkit The Toolkit for ArcGIS Runtime SDK for .NET is released in unison with ArcGIS Runtime 100.8. This release builds on top of the major 100.7.x update of the Toolkit in February 2020 that delivered: Support for .NET Core with WPF. New Bookmarks control. Complete rewrite of Legend control and TableOfContents controls. Note TableOfContents is currently in Preview. Dark Mode support for iOS. New DocFX-based website with API reference and concept documentation. SDK : Documentation New and enhanced content added to the documentation for ArcGIS Runtime SDK for .NET (note the platform selector at the top of each Guide topic for selecting WPF | UWP | Android | iOS | Forms): New topic: Debug using ArcGIS Runtime symbol files (Windows). New topic: Add Image Overlays. New section: Simulate device location updates. Enhanced: Analyze a Utility Network. SDK : Samples New samples, sample updates, and enhancements to the sample viewer apps (each sample is available for all platforms although links below typically go to the WPF example): New sample: Perform valve isolation trace. New sample: Display utility associations. All previous Augmented Reality (AR) samples now available for Xamarin.Forms. Simulated location data source API samples updated for new SimulatedLocationDataSource. Sample viewer for Xamarin.Forms allows you to download all data in advance. Improved per-sample documentation (readmes). Improved in-viewer search. SDK : Open Source Apps Updates to our Open Source Apps initiative during the 100.8 release cycle: Data Collection for .NET v1.2 (see this blog post to find out what's new) Maps App for .NET v1.0.3 Offline Mapbook WPF v1.0.3 SDK : Demos New demo: SymbolEditor A WPF .NET Core app (and MSIX installer project) that shows using mobile styles from ArcGIS Pro and how to create/edit vector symbol layers. System requirements changes and deprecation notices With each release of ArcGIS Runtime we announce future plans to deprecate support for specific platforms and we may enact some deprecation notices announced at previous releases. Here are some notable announcements and changes at the 100.8 release: Android x86_64 support added. Android minimum version is now 5 (API 21). UWP and WPF Windows 10 minimum version is now 1803 (build 17134). iOS minimum version is now iOS 12. Support for ArcGIS Desktop 10.x packages with ArcGIS Runtime Local Server is deprecated. Version 100.8 will be the last ArcGIS Runtime Local Server release to support ArcGIS Desktop 10.x packages. The next version will require packages to be created with ArcGIS Pro 2.6.x. Support for Citrix XenDesktop 7.6 is deprecated. Customers are encouraged to migrate to Citrix new product line, branded Citrix Virtual Apps and Desktops. A minimum of Citrix Virtual Apps and Desktops 7 1912 LTSR will be supported at the next release. The classic geocode locator format (*.loc) will not be supported after ArcGIS Runtime version 100.9.0. After that release, only the newer *.loz locators, introduced with ArcGIS Pro 2.3 and ArcGIS Runtime 100.5.0, will be supported. ArcGIS Runtime Local Server There is an upcoming 100.8 release of the ArcGIS Runtime Local Server component to provide map and geoprocessing package compatibility with ArcMap 10.8.x and ArcGIS Pro 2.5.x. We anticipate being able to announce this release within the new few weeks. Until then you can update your existing WPF projects to reference Esri.ArcGISRuntime.WPF 100.8 and continue to reference Esri.ArcGISRuntime.LocalServices 100.6. Thank you for your ongoing support and feedback. We hope you will find these updates valuable as you continue to build amazing technology for your users with ArcGIS Runtime. The ArcGIS Runtime .NET Dev Team
... View more
05-13-2020
10:14 AM
|
1
|
2
|
2409
|
|
POST
|
Hi, What platform/version of Collector are you running? Thanks Mike
... View more
05-13-2020
09:26 AM
|
0
|
0
|
2758
|
|
POST
|
Hi, In the recent v100.8 release we resolved a sync issue with the same error message (`A table in the database is locked`). Are you able to update your app and retest with the latest version? Thanks Mike
... View more
05-13-2020
09:20 AM
|
0
|
0
|
2758
|
|
POST
|
Hi, Can you share the code you are using for handling mouse move? It will be useful to know what other logic is running on mouse move e.g. identify, and what check(s) you have for returning from the mousemove early based on time/distance delta. Thanks Mike
... View more
05-12-2020
03:37 PM
|
0
|
0
|
1514
|
|
POST
|
Hi, It is possible to use a UniqueValueRenderer with an ArcGISMapImageSublayer - this sample shows a similar workflow but using a ClassBreaksRenderer: Change sublayer renderer | ArcGIS for Developers Thanks Mike
... View more
05-11-2020
09:23 AM
|
0
|
0
|
1055
|
|
POST
|
Hi, We made several improvements to the Callout for v100.8, which was released yesterday. Please can you retest and let us know if the issues you're seeing with Callout size and placement? Thanks Mike
... View more
05-08-2020
04:04 PM
|
0
|
0
|
1514
|
| 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 |
07-02-2026
06:07 AM
|