|
POST
|
Hi, I have noticed that sometimes on Android MAUI MapView control takes all tapings including from controls above MapView. I have tried to play with InputTransparent property (which is by default is False), and no matter what value I set, behavior is the same. It is easy to test on community sample "Create mobile geodatabase". You can edit existing arcgis-maps-sdk-dotnet-samples-main\src\MAUI\Maui.Samples\Samples\Data\CreateMobileGeodatabase\CreateMobileGeodatabase.xaml file changing first 3 lines inside ContentPage. From: <Grid Style="{DynamicResource EsriSampleContainer}">
<esriUI:MapView x:Name="MyMapView" Style="{DynamicResource EsriSampleGeoView}" />
<Border Style="{DynamicResource EsriSampleControlPanel}"> To: <Grid ColumnDefinitions="*,Auto" Style="{DynamicResource EsriSampleContainer}">
<esriUI:MapView x:Name="MyMapView" Grid.ColumnSpan="2" Style="{DynamicResource EsriSampleGeoView}" />
<Border Grid.Column="1" Style="{DynamicResource EsriSampleControlPanel}" InputTransparent="False"> Tap somewhere below "Close and share" button and you will catch MyMapView_GeoViewTapped event. ArcGIS Runtime 200.7, but the same behavior with oldest versions. Workaround, I have found, is add to each control TapGestureRecognizer with "empty" Command like below: <Border.GestureRecognizers>
<TapGestureRecognizer />
</Border.GestureRecognizers> It's ok if you have one control on top of MapView. In our case, we have several controls (buttons), hided/visible dock panels and etc. We don't want to change MapView width when dockpanels changes visibility state because it requires MapView refreshing. Any help would be appreciated.
... View more
04-18-2025
06:23 AM
|
0
|
0
|
684
|
|
POST
|
Hi, You can download the older SDK version from the previous releases page: https://github.com/esri/arcgis-pro-sdk/#previous-versions
... View more
04-15-2025
06:38 AM
|
2
|
0
|
1003
|
|
POST
|
Hi, You can use Resample geoprocessing tool. Tool name "management.Resample"
... View more
04-15-2025
05:37 AM
|
0
|
1
|
1783
|
|
POST
|
Hi, You could investigate in using PopupViewer from Esri.ArcGISRuntime.Toolkit.Maui package. As written in documentation, it supports limited text display from HTML-based popups PopupViewer sample is here.
... View more
04-14-2025
11:29 PM
|
0
|
2
|
1001
|
|
POST
|
Thanks @dotMorten_esri . I have updated app and will try to upload to store.
... View more
04-10-2025
10:17 PM
|
0
|
0
|
493
|
|
POST
|
Hi, It could be done without ArcGIS Pro SDK. .NET has FileSystemWatcher class, which listens to the file system change notifications and raises events when a directory, or file in a directory, changes.
... View more
04-10-2025
10:15 PM
|
0
|
1
|
817
|
|
POST
|
Hi, GraphicsOverlay has property ScaleSymbols. Scale symbols only affects display in a Esri.ArcGISRuntime.UI.Controls.MapView. The symbols and labels will be displayed at fixed screen size in a Esri.ArcGISRuntime.UI.Controls.SceneView.
... View more
04-08-2025
05:26 AM
|
0
|
0
|
821
|
|
POST
|
@dotMorten_esri I would like to share our Android app vitals of last release (21of March 2025). About 30% of crashes are related to RuntimeCoreNet.GeneratedWrappers.CoreArcGISRuntimeEnvironment.SetArcadeConsoleMessageCallback. How could we speed up the solution to this issue? Can we expect a solution with the 200.7 version?
... View more
04-04-2025
01:25 AM
|
0
|
1
|
3389
|
|
POST
|
Hi, Sorry for delay. Code for update combobox selection below: internal class Test_button1 : Button
{
protected override void OnClick()
{
Module1 modOwner = Module1.Current;
if (modOwner == null) return;
if (modOwner.PolygonCombo != null)
{
modOwner.PolygonCombo.SelectedItem = modOwner.PolygonCombo.ItemCollection.FirstOrDefault();
}
else
{
MessageBox.Show("Polygon Combo is null");
}
}
}
... View more
04-03-2025
04:12 AM
|
0
|
0
|
956
|
|
POST
|
Hi, Are all your selected features in visible map area? From your QueryParameters name I understand what you update only visible map area. So, each time you zoom, pan or etc. some part of selection could be out of visible area, and you get new selection with features inside updated area.
... View more
03-26-2025
05:39 AM
|
0
|
1
|
1955
|
|
POST
|
Our clients have the same issue with ArcGIS Runtime 200.6 Samsung Galaxy A13 Android 14 (SDK 34) Application works with online basemap created at startup.
... View more
03-24-2025
05:17 AM
|
1
|
0
|
3446
|
|
POST
|
Hi, Yes, It is. ArcGISVectorTiledLayer is you need to show pbf files. That thread could help you too.
... View more
03-23-2025
01:24 AM
|
0
|
0
|
772
|
|
POST
|
You could subscribe for map scale property changing event in MainPage constructor and check these values mapView.PropertyChanged += (o, e) =>
{
if (e.PropertyName == nameof(mapView.MapScale))
{
var currentScale = mapView.MapScale;
// depends on your map layers structure
ArcGISVectorTiledLayer layer = mapView.Map.Basemap.BaseLayers.OfType<ArcGISVectorTiledLayer>().FirstOrDefault();
var vectorTileSourceInfo = layer.SourceInfo;
var layerMinScale = vectorTileSourceInfo.MinScale;
var layerMaxScale = vectorTileSourceInfo.MaxScale;
// To view layer correctly currectScale mus be <= layerMinScale and >= layerMaxScale
}
};
... View more
03-14-2025
07:50 AM
|
0
|
0
|
1123
|
|
POST
|
Hi, As a workaround I could suggest update MessageLabel as below: <controls:MessageLabel MessageType="Information" Severity="High" ShowHelp="False">
<TextBlock>
<TextBlock>Please open a map with bookmarks</TextBlock>
<Hyperlink NavigateUri="https://learn.microsoft.com/" RequestNavigate="Hyperlink_RequestNavigate">Learn more</Hyperlink>
</TextBlock>
</controls:MessageLabel> private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e)
{
System.Diagnostics.Process.Start(new ProcessStartInfo
{
FileName = e.Uri.ToString(),
UseShellExecute = true
});
e.Handled = true;
}
... View more
03-13-2025
08:56 AM
|
0
|
1
|
2303
|
|
POST
|
Hi, It was registered bug some time ago, but support page is not accessible. I have tried your code and it works only with File Geodatabase (gdb).
... View more
03-06-2025
11:13 AM
|
0
|
2
|
1533
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 04-24-2026 08:33 AM | |
| 1 | 03-23-2026 11:44 AM | |
| 1 | 05-22-2024 11:48 PM | |
| 1 | 02-27-2026 10:33 AM | |
| 1 | 01-07-2026 10:44 AM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|