|
POST
|
Can you share the specific exception type, message and callstack?
... View more
11-04-2025
08:53 AM
|
0
|
0
|
307
|
|
POST
|
Are you experiencing any nuget restore errors? Wrt target framework, it needs to be either net8.0-windows10.0.19041, net9.0-ios18.0, net9.0-android35.0 or net9.0-maccatalyst18.0 or newer. Especially note .NET 9 if you are targeting .NET MAUI, since Microsoft no longer supports .NET 8 on MAUI, .NET 9 has been required since 200.7 for those targets.
... View more
11-04-2025
07:04 AM
|
0
|
1
|
561
|
|
POST
|
The API Key is only needed to access arcgis online services (like for example the default basemap styles). If you don't use these, you don't need an API key. You will need a license key though, but a free lite-license is available which might or might not be enough for your scenario. See License and deployment | ArcGIS Maps SDK for .NET | Esri Developer for more info on that
... View more
11-04-2025
06:46 AM
|
1
|
1
|
373
|
|
POST
|
Are you able to try with 200.8 and see if that makes a difference? (even if you aren't able to permanently move to it, if there's a version it started working might help us narrow the issue down). A lot has changed in utility network support since 200.3
... View more
11-03-2025
08:58 AM
|
0
|
6
|
580
|
|
POST
|
The back button should only show if you drill into sub-features like related features or utility network associations. If that's not the case, please log a bug in the toolkit repo.
... View more
10-21-2025
12:58 PM
|
1
|
0
|
377
|
|
POST
|
Take a look at FeatureCollectionLayer / FeatureCollection for in-memory feature tables as well as just creating your own on on-disk Geodatabase using Geodatabase.Create and CreateTableAsync. This will allow you to store data in feature tables that you can render using a feature layer and apply cluster rendering to using the FeatureReduction property. Having said that, GraphicsOverlay also supports FeatureReduction.
... View more
10-13-2025
08:19 AM
|
1
|
3
|
692
|
|
POST
|
In general you should use the new PopupElements, which will also help you get the attachments: var popup = new Mapping.Popups.Popup(feature);
await popup.EvaluateExpressionsAsync();
var attElm = popup.EvaluatedElements.OfType<Mapping.Popups.AttachmentsPopupElement>().FirstOrDefault(); Have you considered just using the PopupViewer control from the toolkit for viewing? It'll support all the formatting specified in the popup-definition, or generate a default definition is one hasn't been defined. You can also see its entire implementation here for reference: https://github.com/Esri/arcgis-maps-sdk-dotnet-toolkit/tree/main/src/Toolkit/Toolkit/UI/Controls/PopupViewer
... View more
10-09-2025
04:07 PM
|
1
|
0
|
335
|
|
POST
|
To add to Preeti's answer, ALL of the above code can be replaced with AuthenticationManager.Current.AddCredential(await OAuthApplicationCredential.CreateAsync(SERVER_URL, CLIENT_ID, CLIENT_SECRET)); When using an app credential added up front, there's no need for messing with server infos, oauth configs, credential callbacks etc. Just the above line before accessing your server.
... View more
09-23-2025
02:33 PM
|
0
|
5
|
643
|
|
POST
|
I'm not entirely if you're saying the above log was with replacing with a new mapview on resume? If that's the case, could you try it with just leaving the mapview alone as in the original sample you shared? (it's fine that the map is blank - but I'd like to understand if something on your device is not triggering these lifecycle events, since the MapView heavily relies on these to resume rendering). I do find it curious so far that you are seeing destroy+create. That could be the root of how these devices behave differently. If you repeat this on a device that does work, do you see a version of mine or your log? Lastly what does "TextureView does some things" mean?
... View more
09-16-2025
02:31 PM
|
0
|
2
|
1239
|
|
POST
|
Thanks for confirming. You shouldn't have to re-create a new MapView. Just re-insert the same one. One more thing to also try. Could you try and add this to MainActivity? public class MainActivity : MauiAppCompatActivity
{
public MainActivity()
{
Lifecycle.AddObserver(new Observer());
}
private class Observer : Java.Lang.Object, AndroidX.Lifecycle.IDefaultLifecycleObserver, AndroidX.Lifecycle.ILifecycleObserver
{
void IDefaultLifecycleObserver.OnCreate(ILifecycleOwner p0) => System.Diagnostics.Debug.WriteLine("***Lifecycle.OnCreate");
void IDefaultLifecycleObserver.OnDestroy(ILifecycleOwner p0) => System.Diagnostics.Debug.WriteLine("***Lifecycle.OnDestroy");
void IDefaultLifecycleObserver.OnPause(ILifecycleOwner p0) => System.Diagnostics.Debug.WriteLine("***Lifecycle.OnPause");
void IDefaultLifecycleObserver.OnResume(ILifecycleOwner p0) => System.Diagnostics.Debug.WriteLine("***Lifecycle.OnResume");
void IDefaultLifecycleObserver.OnStart(ILifecycleOwner p0) => System.Diagnostics.Debug.WriteLine("***Lifecycle.OnStart");
void IDefaultLifecycleObserver.OnStop(ILifecycleOwner p0) => System.Diagnostics.Debug.WriteLine("***Lifecycle.OnStop");
}
} When I do this, this is what I see in the output window once the app comes back from the sharing operation. I'd be curious if that differs on your Samsung device: [TextureView] Paused by user
[TextureView] Stopping pulse
[0:] ***Lifecycle.OnPause
[0:] ***Lifecycle.OnStop
[0:] ***Lifecycle.OnStart
[0:] ***Lifecycle.OnResume
[TextureView] Resumed by user. Texture view available: True
[TextureView] Starting pulse
... View more
09-11-2025
01:22 PM
|
0
|
4
|
1377
|
|
POST
|
Thank you for sharing the log. I do see the rendering stops for the mapview on share (which is expected), but I don't see a resume. As an experiment could you after sharing, try and remove the mapview from the view and re-insert it? Would that make it start up again? That would confirm if we're having some issues detecting resume.
... View more
09-11-2025
12:43 PM
|
0
|
6
|
1385
|
|
POST
|
Do you _only_ see the issue on this device, or is it the only device you've been testing on? (what devices do you have that it worked on?) Does LogCat give any indication of an issue with the application?
... View more
09-11-2025
11:49 AM
|
0
|
8
|
1397
|
|
POST
|
Rasters will rotate based on their world file or georeference coordinates. If you rotated the image, it wouldn't align with the underlying map any longer. If you generate these images, can't you generate them in an un-rotated fashion? (as in north up).
... View more
09-08-2025
01:52 PM
|
0
|
2
|
791
|
|
POST
|
If I'm not mistaken, Legend isn't supported for a DictionaryRenderer. Try calling _myFeatureLayer.GetLegendInfosAsync() and see if it returns anything.
... View more
08-25-2025
04:30 PM
|
0
|
0
|
619
|
|
POST
|
I'm curious: Does it work if you instead of using *, add all the missing field names to the list? I'm curious if it's a bug wrt using *, or if the data just isn't being made available for whatever reason.
... View more
08-14-2025
09:39 AM
|
0
|
0
|
724
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 12-04-2025 09:10 AM | |
| 1 | 12-01-2025 08:50 AM | |
| 1 | 11-17-2025 09:20 AM | |
| 1 | 11-14-2025 09:10 AM |
| Online Status |
Offline
|
| Date Last Visited |
Thursday
|