|
POST
|
Do you have PublishAoT enabled? (200.6 doesn't support it - we'll have partial support for it in 200.7). Could you possibly share the project that crashes?
... View more
02-04-2025
02:31 PM
|
0
|
3
|
1885
|
|
POST
|
The Maps SDK for .NET does not support running in server contexts like azure functions both from a functional as well as licensing perspective.
... View more
02-03-2025
06:56 PM
|
1
|
0
|
1188
|
|
POST
|
There is no select built into the map. Any selection is done with your own code, so you can in that code clear selection before selecting a new feature.
... View more
02-03-2025
06:55 PM
|
0
|
0
|
563
|
|
POST
|
You can use the mapView.ShowCallout(...) method to show a tooltip style callout on click. You'll first use the Identify method to figure out what was clicked on, then show the tooltip for it.
... View more
02-03-2025
06:54 PM
|
0
|
0
|
536
|
|
POST
|
Thank you! Very helpful. Already looked at them and having a code owner of the specific area looking into it now.
... View more
01-27-2025
01:15 PM
|
0
|
2
|
2320
|
|
POST
|
Releases are 3 a year on roughly a 4 months cadence, so that puts the release around April. No specific to share yet, but it gives you an idea. We already support .NET 9 with 200.6, but 200.7 will require .NET 9 for iOS/Android/Maui only, since MAUI is dropping support for NET8 this spring. The rest will still be net8+.
... View more
01-15-2025
09:34 AM
|
2
|
4
|
2011
|
|
POST
|
That definitely indicates an issue with deployment and would also explain the above error. Do you happen to have a small simple project you can share that reproduces the issue? I wonder if it's some sort of project configuration issue.
... View more
01-10-2025
12:05 PM
|
0
|
1
|
2765
|
|
POST
|
That does indeed look like a crash deep in the native code. Do you have somewhat of a consistent reproducer? If so we might be able to tweak a few settings and collect a good crash dump to help investigate.
... View more
01-07-2025
09:16 AM
|
0
|
6
|
2450
|
|
POST
|
The maui dependency will automatically include the dependencies that gives you access to this. Here's a bit of code I was able to write in a blank maui app that adds just the Esri.ArcGISRuntime.Maui package:
... View more
12-19-2024
09:29 AM
|
0
|
1
|
3660
|
|
POST
|
No problem. You're fine to continue using the old ones until the next major release. The new classes are mostly there because we're working towards a common authentication codebase used across all the maps sdk platforms to improve consistency, faster improvements and only having to make fixes in one place (Swift and Kotlin SDKs already use it). That common underlying codebase is slightly different / modernized and we're building the design to match that before fully switching over in the next major release and removing the deprecated classes. So as long as you move over before that switch, you'll be fine.
... View more
12-19-2024
09:26 AM
|
1
|
0
|
1310
|
|
POST
|
Sorry we're still working on updating the doc and blog on this. For now, feel free to ask questions here. You can also look at the changes made for one of the demo apps here: https://github.com/Esri/arcgis-maps-sdk-dotnet-demos/commit/a9d97dbb60728af8515a165108c50d9ce3ae192e Bottom line is the change is just a simplification around how you register the OAuth configuration.
... View more
12-18-2024
02:12 PM
|
0
|
2
|
1326
|
|
POST
|
There property is in the namespace: `Esri.ArcGISRuntime.Controls.UI.SceneView` Make sure you place the code inside an #if __ANDROID__ section since the specific property is only available on the Android target.
... View more
12-18-2024
01:36 PM
|
0
|
3
|
1311
|
|
POST
|
We could probably improve that error message a bit to make it more clear. I'll put that in the backlog.
... View more
12-17-2024
10:07 AM
|
0
|
0
|
1088
|
|
POST
|
Something like this should work: private static string GetDisplayValue(Field field, Feature feature)
{
if (field is null || feature is null || !feature.Attributes.ContainsKey(field.Name))
return string.Empty;
var value = feature.Attributes[field.Name];
if (field.Domain is CodedValueDomain cvd)
{
value = cvd.CodedValues.FirstOrDefault(c => c.Code == value)?.Name ?? value;
}
return value?.ToString() ?? string.Empty;
}
... View more
12-17-2024
10:01 AM
|
0
|
0
|
845
|
|
POST
|
Unfortunately the Android platform makes implementing the scenario a lot harder and has to be done at the application level with the foreground service. There's not much we can really do at the API level, besides improving our documentation to help implement this.
... View more
12-16-2024
09:07 AM
|
1
|
0
|
1402
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | a week ago | |
| 2 | 03-19-2026 06:03 PM | |
| 1 | 03-03-2026 04:41 PM | |
| 1 | 02-26-2018 07:53 AM | |
| 1 | 02-26-2018 07:51 AM |
| Online Status |
Offline
|
| Date Last Visited |
Monday
|