|
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
|
2115
|
|
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
|
3708
|
|
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
|
839
|
|
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
|
1207
|
|
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
|
2435
|
|
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
|
1700
|
|
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
|
1366
|
|
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
|
1134
|
|
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
|
1364
|
|
POST
|
@UmaHarano , @CharlesMacleod, @Aashis can you help?
... View more
02-26-2025
03:41 AM
|
0
|
0
|
2171
|
|
POST
|
Hi, You can call ImportXMLWorkspaceDocument geoprocessing tool from ArcGIS Pro SDK. Esri ArcGIS Pro SDK Community samples of geoprocessing here.
... View more
02-25-2025
04:35 AM
|
0
|
2
|
1381
|
|
POST
|
Hi, Have you set API Key? API key is a permanent token that grants your application access to ArcGIS location services. Create a new API key or access existing API keys from your ArcGIS for Developers dashboard (https://links.esri.com/arcgis-api-keys). // Provide an access token for your app (usually when the app starts).
Esri.ArcGISRuntime.ArcGISRuntimeEnvironment.ApiKey = "YOUR_ACCESS_TOKEN";
// Create a map with an ArcGIS basemap.
var map = new Map(BasemapStyle.ArcGISNavigation);
// If preferred, you can provide a key directly for the basemap.
//map.Basemap.ApiKey = "YOUR_ACCESS_TOKEN"; Or it could be done MauiApp builder: var builder = MauiApp.CreateBuilder();
builder
.UseMauiApp<App>()
.ConfigureFonts(fonts =>
{
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
})
.UseArcGISRuntime(config => config
.UseLicense("[Your ArcGIS Maps SDK License key]")
.UseApiKey("[Your ArcGIS location services API Key]")
.ConfigureAuthentication(auth => auth
.UseDefaultChallengeHandler() // Use the default authentication dialog
// .UseOAuthAuthorizeHandler(myOauthAuthorizationHandler) // Configure a custom OAuth dialog
)
);
return builder.Build();
... View more
02-23-2025
10:24 PM
|
2
|
1
|
1672
|
|
POST
|
Hi, As I understand from API reference, it must be like that: IFeatureSet featureSet;
if (outputFeatures.CanGetOutputFeatures)
featureSet = await outputFeatures.GetOutputFeaturesAsync();
else
featureSet = outputFeatures.Features ;
... View more
02-20-2025
10:37 PM
|
1
|
0
|
1501
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 1 | 3 weeks ago | |
| 1 | 06-30-2026 10:14 PM | |
| 1 | 06-30-2026 01:43 PM | |
| 2 | 04-24-2026 08:33 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|