|
POST
|
Hi,
You need to get page, you want to migrate using id from config.daml, and select it. Code below:
var appPage = PropertySheet.Page("esri_sdk_PropertyPageAppSettings");
appPage.IsSelected = true;
... View more
10-08-2024
10:47 PM
|
0
|
1
|
1376
|
|
POST
|
Hi,
I would recommend you use Esri lyrx format to save layer and load it later. More info here.
... View more
10-06-2024
11:22 PM
|
0
|
5
|
2641
|
|
POST
|
Hi,
You can call another overload of Export method with envelope parameter:
mapView.Export(BMP, envelope); //Export to BMP
... View more
10-03-2024
12:57 PM
|
0
|
1
|
1407
|
|
POST
|
From my opinion you need to make raster layer from NetCDF file using geoprocessing, then read value from raster layer.
... View more
10-01-2024
10:16 PM
|
0
|
0
|
1033
|
|
POST
|
Hi,
You can call GeometryEngine method NearestVertex to get part and point indexes. Parameters will be polyline from IdentifyGraphicsOverlayResult and tapping MapPoint
... View more
09-30-2024
12:34 PM
|
0
|
2
|
2459
|
|
POST
|
If you need to get it during dragging you need to listen for PropertyChanged event as in sample from thread:
mapView.GeometryEditor.PropertyChanged += (s, e) =>
{
if (e.PropertyName == nameof(mapView.GeometryEditor.Geometry))
{
// Geometry has changed
}
};
... View more
09-27-2024
11:37 AM
|
0
|
1
|
2545
|
|
POST
|
Have you read blog about migrating from SketchEditor -> GeometryEditor inside the thread I mentioned above. Look at the part "Asynchronous start task with geometry result"
... View more
09-27-2024
07:15 AM
|
0
|
3
|
2589
|
|
POST
|
Hi,
Why don't you want to call geoprocessing tool from code? There is no help on calling specific tool from ArcGIS Pro API, but there are many samples:
arcgis-pro-sdk-community-samples/Geoprocessing at master · Esri/arcgis-pro-sdk-community-samples · GitHub
P.s There is Generalize method on GeometryEngine, but I don't know if it fits for your workflow.
... View more
09-27-2024
03:22 AM
|
0
|
1
|
2119
|
|
POST
|
Hi,
I think link to another thread could be helpful for you:
Solved: Add GeometryChanged event to the new GeometryEdito... - Esri Community
... View more
09-27-2024
03:15 AM
|
0
|
5
|
2610
|
|
POST
|
Hi,
I can suggest you to use geoprocessing tool SmoothLine. It is not simple way but it will work. Select polyline in layer and call geoprocessing tool. Then open output feature class and search for first element.
... View more
09-26-2024
12:39 PM
|
0
|
3
|
2137
|
|
POST
|
Hi, Look at the CustomRasterIdentify sample from Esri ArcGIS Pro SDK samples. You need to read your point feature geometry, and a little bit modify CustomRasterIdentify method from CustomRasterIdentifyVM class.
... View more
09-20-2024
05:38 AM
|
0
|
0
|
1568
|
|
POST
|
Hi, Have you checked ReplaceAttachments sample on Esri ArcGIS Pro SDK Community samples?
... View more
09-20-2024
05:28 AM
|
0
|
0
|
893
|
|
POST
|
Hi, I have added your class to Esri Community sample AddFeatureTest, commented 2 lines with rmg.Common.Events.ProgressBarEvents.OnTaskCancelled and compiled without problems. Check your Visual Studio project, .Net framework version, installed ArcGIS extensions and etc.
... View more
09-17-2024
06:14 AM
|
0
|
0
|
741
|
|
POST
|
Hi, StandaloneTable has method GetTable() witch returns table object. _rowCreatedTokens.Add(RowCreatedEvent.Subscribe(OnRowCreatedEvent, standaloneTable.GetTable()));
... View more
09-13-2024
12:04 PM
|
1
|
1
|
1086
|
|
POST
|
Hi, You can use Inspector class Load method. There is Load method overload Load(Table,Int64) where parameters are table/featureclass and objectid. Then you can read attributes and geometry using inspector object.
... View more
09-13-2024
03:37 AM
|
1
|
0
|
2839
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 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
|