|
POST
|
Hi, I think Raster and Imagery options are not exposed to API. Here you can find which options are exposed to API.
... View more
07-10-2024
12:31 PM
|
0
|
2
|
1651
|
|
POST
|
There is no difference from coding side except cases I mentioned earlier.
... View more
07-05-2024
12:00 PM
|
0
|
0
|
1670
|
|
POST
|
Hi, EditOperation works with branch versioning. If you work with default version then set EditOperationType to SHORT, for named set to LONG. Avoid mixing short and long edit operation types. More info here
... View more
07-04-2024
07:28 AM
|
1
|
2
|
1705
|
|
POST
|
I am using Esri.ArcGISRuntime.Maui version 200.4.0. We have made new package, published it and now it works on iOS.
... View more
07-01-2024
07:25 AM
|
0
|
0
|
2201
|
|
POST
|
Hi, I have found ProWindow inside MapControlWindow.xaml: <controls:ProWindow x:Class="MagnifierWindow.MapControlWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:controls="clr-namespace:ArcGIS.Desktop.Framework.Controls;assembly=ArcGIS.Desktop.Framework"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:mapControls="clr-namespace:ArcGIS.Desktop.Mapping.Controls;assembly=ArcGIS.Desktop.Mapping"
xmlns:extensions="clr-namespace:ArcGIS.Desktop.Extensions;assembly=ArcGIS.Desktop.Extensions"
mc:Ignorable="d"
Title="Magnifier" Height="300" Width="300"
ResizeMode="NoResize"
>
... View more
07-01-2024
07:17 AM
|
0
|
0
|
2020
|
|
POST
|
The error message says: Invalid request response: Cannot load vtpk from '/var/mobile/Containers/Data/Application/7171FE95-8F47-43D7-AC3C-2332C3EC3670/Documents/waterways/offlinecache/************.vtpk'. Message was: IO error. Package was created with ArcGIS Pro, but I don't know which version. I will send you vtpk url for testing.
... View more
06-27-2024
11:15 PM
|
0
|
0
|
2262
|
|
POST
|
Hi, ArcGIS Pro has its own MapControl which you could add to ProWindow or CustomControl. There are some samples with MapControl in ArcGIS Pro SDK community samples page OverviewMapControl, MagnifierWindow and MapControl.
... View more
06-27-2024
07:38 AM
|
0
|
0
|
1604
|
|
POST
|
Hi, Are you talking about either project or application settings? If yes, you can check Backstage_PropertyPage sample.
... View more
06-27-2024
07:25 AM
|
1
|
1
|
905
|
|
POST
|
Thanks for helpful comments @PreetiMaske . I subscribed to `MapView.LayerViewStateChanged` and get error #7003 on vector tiled layer view state changing. Could you help me please with error code meaning?
... View more
06-27-2024
01:04 AM
|
0
|
0
|
2290
|
|
POST
|
Hi, There is a ArcGIS Pro community sample with MapControl inside UserControl. OverviewMapControl sample is here. It works fine on ArcGIS Pro 3.2
... View more
06-26-2024
01:43 PM
|
0
|
1
|
3370
|
|
POST
|
Hi, "conversion.ExportTable" geoprocessing tool has 3 mandatory parameters. One is missed in your parameters list (use_field_alias_as_name). I would recommend to call ExecuteToolAsync with GP events processing (callback) as in thread. In OnValidate event you will get information about wrong parameters and etc. More info here
... View more
06-26-2024
01:25 AM
|
0
|
3
|
1657
|
|
POST
|
Hi, We have application with offline content (vtpk). We use vptk packages as basemap. It works fine on Android but on iOS doesn't (blank screen). I have tried different vector tile packages, but only with one of them I succeeded. It was in different coordinate system (WGS 1984 Web Mercator) then our application packages. Our application packages spatial reference wkid is 3346. Another one difference is that working package was created later and maybe with different software versions because we migrate application from AppStudio code to ArcGIS Maps for .NET MAUI. Code below: ArcGISVectorTiledLayer layer = new ArcGISVectorTiledLayer(new Uri(tileCachePath));
_map = new Map(SpatialReference.Create(3346))
{
Basemap = new Basemap(layer),
MinScale = 8000000,
MaxScale = 1200
};
_map.LoadStatusChanged += OnMapsLoadStatusChanged;
private void OnMapsLoadStatusChanged(object sender, LoadStatusEventArgs e)
{
switch(e.Status)
{
case LoadStatus.Loading:
Logger.Debug($"Map's load status : {e.Status}");
break;
case LoadStatus.Loaded:
_map.InitialViewpoint = new Viewpoint(new MapPoint(499629.435, 6124677.283, SpatialReference.Create(3346)), 7500000);
break;
case LoadStatus.FailedToLoad:
Logger.Error($"Map's load status : {e.Status}");
break;
}
} Map and viewpoint spatial reference were changed depending on vtpk source. Any help would be appreciated.
... View more
06-26-2024
01:08 AM
|
0
|
7
|
2379
|
|
POST
|
Hi, Change index of array: // From
var curClassBreak = newColorizer.ClassBreaks[0];
// To
var curClassBreak = newColorizer.ClassBreaks[i];
... View more
06-24-2024
10:40 PM
|
0
|
1
|
1313
|
|
POST
|
Hi, Adding ResizeMode="NoResize" to ProWindow xaml will hide maximize and minimize buttons and disable windows resizing. <controls:ProWindow x:Class="************"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:controls="clr-namespace:ArcGIS.Desktop.Framework.Controls;assembly=ArcGIS.Desktop.Framework"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:extensions="clr-namespace:ArcGIS.Desktop.Extensions;assembly=ArcGIS.Desktop.Extensions"
mc:Ignorable="d"
Title="Window Title"
ResizeMode="NoResize"
>
... View more
06-24-2024
11:06 AM
|
0
|
2
|
1572
|
| 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 |
Thursday
|