|
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
|
745
|
|
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
|
748
|
|
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
|
2888
|
|
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
|
831
|
|
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
|
1681
|
|
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
|
2945
|
|
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
|
696
|
|
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
|
991
|
|
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
|
2112
|
|
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
|
1240
|
|
POST
|
Hi, Check your ArcGISVectorTiledLayer MinScale and MaxScale. Your zoomed map scale must be between MinScale and MaxScale of layer. You can found values in VectorTileSourceInfo.
... View more
03-06-2025
07:25 AM
|
0
|
1
|
1150
|
|
POST
|
Hi, Try code below: BrowseProjectFilter bdf = new BrowseProjectFilter();
bdf.Name = "Online";
bdf.Excludes.Add(@"project_browse_place_project");
bdf.Excludes.Add(@"esri_browsePlaces_Computer");
OpenItemDialog itemDlg = new OpenItemDialog
{
Title = "Open portal items",
MultiSelect = false,
BrowseFilter = bdf
};
bool? ok = itemDlg.ShowDialog();
... View more
02-27-2025
03:23 AM
|
0
|
2
|
930
|
|
POST
|
ArcGIS Pro SDK is not so wide as ArcObjects. If it is possible, it uses geoprocessing tools instead of class method.
... View more
02-26-2025
03:45 AM
|
1
|
0
|
1143
|
|
POST
|
@UmaHarano , @CharlesMacleod, @Aashis can you help?
... View more
02-26-2025
03:41 AM
|
0
|
0
|
1768
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 3 weeks ago | |
| 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 |
yesterday
|