|
POST
|
Can you share the code that shows how you're adding the layer to the map/mapview? The layer's JSON you shared shows the "labelingInfo": null which suggests the labels in the JavaScript might be defined client-side?
... View more
10-25-2021
12:43 PM
|
0
|
2
|
2619
|
|
POST
|
It looks like you need to add an elevation source to the scene view base surface. See this sample for an example of how to do that in code: https://developers.arcgis.com/net/wpf/sample-code/get-elevation-at-a-point/ The important lines are: Uri elevationUri = new Uri("https://elevation3d.arcgis.com/arcgis/rest/services/WorldElevation3D/Terrain3D/ImageServer");
Surface baseSurface = new Surface();
baseSurface.ElevationSources.Add(new ArcGISTiledElevationSource(elevationUri));
myScene.BaseSurface = baseSurface; Alternatively try experimenting with the SurfacePlacement property of you "slpkLayer". For more info see https://developers.arcgis.com/net/api-reference/api/netwin/Esri.ArcGISRuntime/Esri.ArcGISRuntime.Mapping.SurfacePlacement.html.
... View more
10-22-2021
09:04 AM
|
1
|
1
|
2053
|
|
POST
|
Hi, How is the symbol created when used in the ArcGIS API for JavaScript? (e.g. in code using the API, configured in a webmap, or published in a service) Thanks
... View more
10-19-2021
09:36 AM
|
0
|
3
|
3246
|
|
POST
|
Hi, Can you share your code (e.g. XAML) where you've configured the UI to display the contents of the Popup? Thanks
... View more
10-18-2021
08:57 AM
|
0
|
0
|
3376
|
|
POST
|
Hi, Thanks for the additional information. We're currently investigating and will contact you as soon as we have more information to share or have further questions. Thanks
... View more
10-13-2021
07:02 PM
|
0
|
0
|
3245
|
|
POST
|
You could also take a look at the CredentialPersistence API: https://developers.arcgis.com/net/api-reference/api/android/Esri.ArcGISRuntime/Esri.ArcGISRuntime.Security.CredentialPersistence.CreateDefaultAsync.html#Esri_ArcGISRuntime_Security_CredentialPersistence_CreateDefaultAsync_System_String_ For more info see this Dev Summit session and jump to 15:00 minutes: https://www.esri.com/videos/watch?videoid=HTqwqjvcL1k
... View more
10-13-2021
02:56 PM
|
0
|
0
|
1805
|
|
POST
|
Hi, Can you provide more details about the type of application you're building or the type of ArcGIS SDK you want to work with? For more details on getting the API included with ArcGIS Runtime SDK for .NET see: https://developers.arcgis.com/net/install-and-set-up/. This will enable you to build custom desktop and mobile apps for Android, iOS, and Windows. Thanks
... View more
10-06-2021
03:43 PM
|
0
|
0
|
1083
|
|
BLOG
|
@ScottLehto3 Attribute Rules are on the roadmap for a future release of ArcGIS Runtime. For more info see https://pro.arcgis.com/en/pro-app/2.7/help/data/geodatabases/overview/an-overview-of-attribute-rules.htm.
... View more
09-23-2021
03:43 PM
|
0
|
0
|
1461
|
|
POST
|
Hi, For an upcoming release later this year we've made some improvements to the behavior of ModelSceneSymbol in relation to SymbolSizeUnits.DIPs. If you're interested in joining the preview program for the purposes of evaluating this change, please contact me at [email protected]. Thanks
... View more
09-22-2021
12:36 PM
|
0
|
0
|
3093
|
|
POST
|
Hi With ArcGIS Pro (2.7 or later) you can create a new mobile geodatabase and add tables to that geodatabase then use the current ArcGIS Runtime 100.12 release to create/edit features in those tables. For more information see Mobile geodatabases and Read and edit standalone mobile geodatabases. Would you like to use the ArcGIS Runtime API to create a new empty mobile geodatabase and create a new table, including defining the table schema? Thanks
... View more
09-21-2021
03:33 PM
|
0
|
0
|
1624
|
|
POST
|
Hi, Thanks for your feedback on this issue. Support for showing all labels regardless of overlap, and accounting for label class priority in the 2D map view was added in version 100.12. Thanks
... View more
09-21-2021
03:06 PM
|
1
|
0
|
4996
|
|
POST
|
Hi, We suspect there's a good chance that this issue was resolved in the recent v100.12 release (when fixing BUG-000140934 The MapView window created by a custom control is not responding (https://developers.arcgis.com/net/reference/release-notes/100.12/#issues-resolved). Thanks
... View more
08-31-2021
01:20 AM
|
0
|
0
|
3294
|
|
BLOG
|
We are pleased to announce the 100.12 release of ArcGIS Runtime SDK for .NET. This release includes significant new features, enhancements to existing features, performance improvements, bug fixes, and a preview of the roadmap. You can read about the highlights common to all ArcGIS Runtime SDKs in the shared ArcGIS Runtime blog post and additional details in the 100.12 Release Notes. For our .NET community here a few more highlights... API : New API Reference documentation format New API reference documentation for ArcGIS Runtime SDK for .NET provides a unified reference that more accurately represents the APIs available with each NuGet package and with each target framework or platform. For example, when working with the WPF UI framework using the Esri.ArcGISRuntime.WPF package you can now browse the API reference by .NET 5, .NET Core 3.1, or .NET Framework. A new Applies To section lists the frameworks/platforms on which an API is available and the ArcGIS Runtime version at which it first became available. API : Support for WinUI 3 (preview) With the 100.12 release we have updated the preview of ArcGIS Runtime support for WinUI 3 to target the Windows App SDK version 0.8 (Microsoft.ProjectReunion). Try out ArcGIS Runtime and WinUI with the Sample Viewer: https://github.com/Esri/arcgis-runtime-samples-dotnet/tree/main/src/WinUI. Note: Support for WinUI 3 with ArcGIS Runtime is in Preview and cannot be used in production at this time. API : Additions and enhancements Introduced GeoModel baseclass for Map and Scene to facilitate developing for both 2D and 3D. Improved behavior of `IsNavigating` property during manual geoview flick manipulations. Added PortalInfo.DeveloperBasemapGalleryGroupQuery property and Portal.GetDeveloperBasemapsAsync() method for retrieving the collection of basemaps that are accessible and metered via API keys for developers. New type CheckoffOnly on Enum KmlListItemType to provide improved support for building Table of Content experiences that target KML. Nullability annotations added to the Toolkit for ArcGIS Runtime SDK for .NET. New language support for Slovak (driving directions and developer error messages). API : Web and security Reduced the number of parallel generateToken requests resulting in reduced network traffic. Added a new GeoprocessingTask.CreateAsync overload that takes a Credential. Improved serialization of certificate credential when working with Credential Persistence on Android and iOS. Improved serialization of NetworkCredential to honor PreAuthenticateBehavior when working with Credential Persistence. Improved support for certificate authentication when targeting frameworks .NET 5 or .NET Core 3.1. Added property `AuthorizedCrossOriginDomains` to PortalInfo to support Portals with broad CORS disabled to support getting the collection of allowed domains. For more information see Restrict cross-domain requests to your portal and ArcGIS REST API - Portal Self (Organization). SDK : Toolkit The Toolkit for ArcGIS Runtime SDK for .NET is released in unison with ArcGIS Runtime 100.12 and includes components that support your development of apps when using WPF, UWP, Xamarin.Android, Xamarin.iOS, and Xamarin.Forms. With the 100.12 release, there are three new upcoming controls planned for release shortly after 100.12 general availability: Basemap Gallery OverviewMap Search SDK : Samples New samples, sample updates, and enhancements to the sample viewer apps: New sample: Query with CQL filters New sample: Display OGC API collection New sample: Browse OGC API feature service WPF Sample Viewer target updated to .NET 5 Updates to OAuth samples Updated labeling samples SDK : Doc New and updated topics on the ArcGIS developer site. New topics Device location Migrate to ArcGIS Platform location services Work with Geotriggers Enhanced topics: Add raster data Debug using ArcGIS Runtime Windows symbol files Dictionary renderer from a style Navigate a SceneView Support for the web scene specification New Tutorials Display Device Location Display a web scene SDK : Roadmap We have an exciting few months ahead as we continue to work on planned support for .NET 6, MAUI, and WinUI to ArcGIS Runtime SDK for .NET. The ArcGIS Runtime SDK for .NET Visual Studio extension includes preview support for Visual Studio 2022. Deprecation notices Support for .NET Core 3.1 and .NET is deprecated. The next release of Esri.ArcGISRuntime.WPF will require .NET 6 LTS. Support continues for .NET Framework 4.6.1+. UWP minimum supported SDK level updated to Windows 10 1903 18362. Known Issues When using SDK-Style projects with .NET Framework (<TargetFramework>net461</TargetFramework>) the PlatformTarget must also be specified, for example <PlatformTarget>AnyCPU</PlatformTarget>. ArcGIS Runtime Local Server ArcGIS Runtime Local Server 100.12 now supports geoprocessing and map packages created with ArcGIS Pro 2.8.x. The following geoprocessing tools are now supported with this release: Create Mobile Map Package Create Mobile Geodatabase Create Map Tile Package We thank you for your ongoing support and feedback and hope you will find these updates valuable as you continue to use ArcGIS Runtime to build amazing applications for your users. The ArcGIS Runtime .NET Dev Team
... View more
08-25-2021
03:00 PM
|
3
|
4
|
5413
|
|
POST
|
@Gr0bert0 This issue was challenging to reproduce. But we did eventually detect occasional occurrences of the same exception in our automated daily tests and and have made some associated improvements to our .NET Core / .NET 5 request caching which should resolve this issue. We would be very grateful if you can you retest in the upcoming v100.12 release and confirm. Thanks
... View more
08-16-2021
02:49 PM
|
0
|
0
|
4212
|
|
POST
|
I'd suggest there are multiple options, from Microsoft, Developer Express, Telerik, SAP, and others (e.g. Visual Studio Magazine's 2020 Reader's Choice Awards) Some of our developer success stories might indicate the type of reporting others have implemented (there's a subset that used ArcGIS Runtime SDK for .NET).
... View more
08-13-2021
10:28 AM
|
0
|
0
|
1922
|
| 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
|