POST
|
I don't believe so, considering it's a Windows-specific and deprecated code page. I've logged an internal bug to investigate, but my gut feeling is you're running into an OS limitation.
... View more
12 hours ago
|
0
|
0
|
3
|
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
12 hours ago
|
0
|
0
|
17
|
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
Monday
|
0
|
2
|
42
|
POST
|
Follow-up: I'm able to reproduce the issue and will have someone investigate.
... View more
Monday
|
0
|
3
|
61
|
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
Monday
|
0
|
4
|
61
|
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
a week ago
|
0
|
1
|
50
|
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
a week ago
|
0
|
1
|
69
|
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
a week ago
|
0
|
2
|
65
|
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
a week ago
|
0
|
4
|
93
|
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
a week ago
|
0
|
0
|
61
|
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
a week ago
|
0
|
6
|
126
|
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
2 weeks ago
|
0
|
0
|
45
|
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
2 weeks ago
|
1
|
10
|
202
|
Title | Kudos | Posted |
---|---|---|
1 | 2 weeks ago | |
2 | 3 weeks ago | |
1 | a month ago | |
1 | 03-12-2025 12:36 PM | |
1 | 03-17-2025 10:29 AM |
Online Status |
Offline
|
Date Last Visited |
12 hours ago
|