|
POST
|
Are you using a SceneView or a MapView in your application? If SceneView, sometimes increasing this value on Android for certain devices can help: https://developers.arcgis.com/net/api-reference/api/android/Android/Esri.ArcGISRuntime.UI.Controls.SceneView.MemoryLimit.html
... View more
04-25-2025
01:42 PM
|
0
|
1
|
810
|
|
POST
|
The license you get from the portal is only good for 30 days for that user, so that workflow is really only for occasionally connected scenarios, and it's recommended to renew it daily or at least weekly if you can (so you always have 30 days of full offline time before it expires). For a fully offline workflow you'll need to purchase a license pack.
... View more
04-24-2025
09:11 AM
|
0
|
1
|
814
|
|
POST
|
I'm sorry. I brainfarted and said DrawStatus event, but I really mean LayerViewStateChanged: https://developers.arcgis.com/net/api-reference/api/netwin/wpf/Esri.ArcGISRuntime.UI.Controls.GeoView.LayerViewStateChanged.html Also monitor your debuggers' output window for any indication of layer rendering issues. Btw. I'd rewrite the layer load code (the code in the doc isn't ideal and I've asked to get it fixed). Instead of doing it in the event, just wait for loadasync and then add your rasters. It simplifies the flow and should give you better error propagation as well: MosaicDatasetRaster rasterMosaic = MosaicDatasetRaster.Create(@"C:\Data\mosaic.sqlite", "Shasta", SpatialReferences.WebMercator);
await rasterMosaic.LoadAsync();
AddRastersParameters parameters = new AddRastersParameters
{
InputDirectory = @"..\incoming\data\rasters"
};
await rasterMosaic.AddRastersAsync(parameters); It would be a good idea to just step through the code to see if the hang is occurring anywhere in your code and what line that might be causing it, or whether it happens somewhere else. Lastly, as mentioned please try without specifying a basemap.
... View more
04-24-2025
08:56 AM
|
0
|
2
|
2158
|
|
POST
|
No that's fine but perhaps try without a basemap, just to exclude the chance you're hitting reprojection issues. However that's why I'm asking about the DrawStatus event - this one will tell you if there are issues with rendering any of the layers.
... View more
04-23-2025
04:05 PM
|
0
|
4
|
2186
|
|
POST
|
> How do I refresh the access token within this credential? Or is that built in? It's built-in. > If it's built in, can I get a notification that the access token has refreshed? The persistence datasource should automatically get notified if a credential gets updated, so that you can re-save the credential.
... View more
04-23-2025
10:21 AM
|
0
|
0
|
1149
|
|
POST
|
Any chance you can share the shapefile causing this problem?
... View more
04-22-2025
09:35 AM
|
0
|
6
|
2186
|
|
POST
|
Another thing to note is to make sure your map itself is using the same spatial reference as your raster mosaic. You can set that explicitly in the Map constructor. It's also worth checking both the layer.LoadStatus as well as MapView.DrawStatus events for any indication why a layer might not render (generally this should also be written to the output window while debugging). It's also worth ensuring your source dataset is actually wgs84/epsg4326 - it's fairly rare rasters aren't in a projected coordinate system
... View more
04-22-2025
09:33 AM
|
0
|
6
|
2219
|
|
POST
|
I'm not quite following your expectations here, since identify operations aren't a built-in gesture. Identify is a MapView operation you need to call in your custom code given an event, like for instance "tap".
... View more
04-17-2025
11:27 AM
|
0
|
0
|
1314
|
|
POST
|
Have you tried using a Mosaic Dataset instead? https://developers.arcgis.com/net/api-reference/api/net/Esri.ArcGISRuntime/Esri.ArcGISRuntime.Rasters.MosaicDatasetRaster.html
... View more
04-17-2025
11:24 AM
|
1
|
10
|
2295
|
|
POST
|
You could also use MAUI's WebView class to render the HTML.
... View more
04-16-2025
09:35 AM
|
0
|
1
|
886
|
|
POST
|
You could probably achieve something close to this using UniqueValueRenderer or ClassBreaksRenderer, as long as the number of unique combinations isn't too great.
... View more
04-16-2025
09:34 AM
|
0
|
0
|
1028
|
|
POST
|
Sounds like a restore/deployment or target framework issue. Is your .NET MAUI up to date? Try deleting bin/obj folders and restart visual studio, or perform a manual "dotnet restore" from command line.
... View more
04-16-2025
09:30 AM
|
0
|
0
|
1443
|
|
POST
|
200.7 shipped yesterday and should have a fix for this issue.
... View more
04-10-2025
09:21 AM
|
3
|
1
|
2872
|
|
POST
|
You would either create multiple LocatorSearchSource instances to add (they each take a LocatorTask), or implement your own ISearchSource and add to the collection. Good callout on the `EnableAutomaticConfiguration` property in the doc. This was in the early design but didn't make it to implementation.
... View more
04-08-2025
11:57 AM
|
0
|
0
|
538
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | Monday | |
| 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 |
Tuesday
|