|
POST
|
The behavior you see is by-design. While I agree in this specific scenario it's perhaps not ideal, there are many more cases where selection gets completely obscured by other layers above, making the selection invisible.
... View more
05-02-2025
09:09 AM
|
0
|
0
|
622
|
|
POST
|
Your data seems to be using codepage 936 which, according to wikipedia, is a legacy pre-unicode character encoding for Windows. I wonder if it's possible for you to author the shapefile with a codepage that Android and iOS understands (I was able to reproduce the issue on iOS too).
... View more
04-28-2025
09:51 AM
|
0
|
2
|
890
|
|
POST
|
Follow-up: I'm able to reproduce the issue and will have someone investigate.
... View more
04-28-2025
08:36 AM
|
0
|
3
|
909
|
|
POST
|
Thanks! I'll have a look. Btw how do you deploy and load the file onto your Android device? Android is quite different with how you deploy content with the application compared to other apps, so want to make sure this isn't the issue first.
... View more
04-28-2025
08:05 AM
|
0
|
4
|
909
|
|
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
|
424
|
|
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
|
554
|
|
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
|
996
|
|
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
|
1024
|
|
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
|
501
|
|
POST
|
Any chance you can share the shapefile causing this problem?
... View more
04-22-2025
09:35 AM
|
0
|
6
|
960
|
|
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
|
1057
|
|
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
|
574
|
|
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
|
1133
|
|
POST
|
You could also use MAUI's WebView class to render the HTML.
... View more
04-16-2025
09:35 AM
|
0
|
1
|
399
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a week ago | |
| 1 | 2 weeks ago | |
| 1 | 4 weeks ago | |
| 1 | a month ago | |
| 1 | 11-04-2025 06:46 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|