|
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
|
2430
|
|
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
|
1990
|
|
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
|
2451
|
|
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
|
2008
|
|
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
|
1510
|
|
POST
|
Hi, Have you checked ReplaceAttachments sample on Esri ArcGIS Pro SDK Community samples?
... View more
09-20-2024
05:28 AM
|
0
|
0
|
865
|
|
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
|
702
|
|
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
|
1043
|
|
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
|
2716
|
|
POST
|
Hi, GetTemplates is static function of MappingExtensions class with MapMember type parameter. You need to add using : using ArcGIS.Desktop.Mapping; There are 2 alternatives to use GetTemplates method: var editTemplates = featLayer.GetTemplates(); // or var editTemplates1 = MappingExtensions.GetTemplates(featLayer);
... View more
09-10-2024
10:00 AM
|
0
|
3
|
2472
|
|
POST
|
Hi, You need to use mobile map package (mmpk) for local routing: MobileMapPackage mobileMap = new MobileMapPackage(packageUrl);
await mobileMap.LoadAsync();
// determine if map supports routing
if (mobileMap.Maps.Count > 0 && mobileMap.Maps[0].TransportationNetworks.Count > 0)
{
_routeTask = await RouteTask.CreateAsync(mobileMap.Maps[0].TransportationNetworks[0]);
} Check indexes of maps and transportation networks according to your data
... View more
09-06-2024
06:11 AM
|
1
|
1
|
1253
|
|
POST
|
Thanks @williambohrmann3 . Yes, it works. In addition it works not only in Navigation autopanmode, but also in all modes except Off. It would be nice to have update documentation.
... View more
09-05-2024
11:58 PM
|
0
|
0
|
1193
|
| 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
|