|
POST
|
Hi, Have you tried Esri ArcGIS Pro sample https://github.com/Esri/arcgis-pro-sdk-community-samples/tree/master/Editing/AddFeatureTest ? I think issue is with "attributes" variable setting or points spatial reference. If your points don't have spatial reference then they could be somewhere on map.
... View more
05-19-2022
07:02 AM
|
0
|
3
|
2468
|
|
POST
|
Hi, 64 bit ArcObjects are available with ArcGIS server license only, but server ArcObjects don't have objects related to desktop. ArcObjects are coming out in 2 years. I would recommend to migrate to ArcGIS Runtime or ArcGIS AppStudio. It could be 64 bit cross platform application.
... View more
05-16-2022
10:30 PM
|
0
|
0
|
795
|
|
POST
|
So as I understand you have three modules? Then Solution2 both modules must have dependencies to Host module. That changes allow predefine module loading order for ArcGIS Pro. Solution A will be loaded first and then Solution B modules in random order
... View more
05-12-2022
04:32 AM
|
0
|
0
|
2347
|
|
POST
|
It depends on module loading order. If your second module is loaded first, then second module can't find refID="my_special_tool" which I understand is defined in first module. So to access refID's from another module you need to define dependencies. First module dependency ID you can find in daml line: <AddInInfo id="{45998990-895f-4d92-bbde-ff70d25adac2}" version="1.134" desktopVersion="2.9.00000">
... View more
05-12-2022
04:15 AM
|
0
|
3
|
2350
|
|
POST
|
Hi, You need to specify second module dependencies in daml like this: <dependencies>
<!-- id of "Add-in First" -->
<dependency name="{45998990-895f-4d92-bbde-ff70d25adac2}" />
</dependencies>
... View more
05-11-2022
11:12 PM
|
1
|
5
|
2354
|
|
POST
|
Hi, Your ThemeLayer must have method: public virtual ItemInfoValue GetItemInfoValue() Your StartDrag method must be like this: List<ClipboardItem> clip_items = new List<ClipboardItem>();
foreach (ThemeLayer layer in sourceItems)
{
clip_items.Add(new ClipboardItem()
{
ItemInfoValue = layer.GetItemInfoValue()
});
}
dragInfo.Data = clip_items;
dragInfo.Effects = DragDropEffects.Copy;
... View more
05-10-2022
11:11 AM
|
1
|
1
|
1769
|
|
POST
|
Hi, Have you tried Esri community sample Drag And Drop . There is a part where FGDB featureclass drags to map.
... View more
05-10-2022
07:10 AM
|
0
|
3
|
1774
|
|
POST
|
Hi, Look here: https://community.esri.com/t5/arcgis-pro-sdk-questions/how-do-i-get-all-of-the-tablenames-from-the-fgdb/m-p/1156733#M7960
... View more
05-10-2022
06:59 AM
|
1
|
0
|
2424
|
|
POST
|
Hi, You can use Alter Field geoprocessing tool: https://pro.arcgis.com/en/pro-app/2.8/tool-reference/data-management/alter-field-properties.htm How to call geoprocessing tool here: arcgis-pro-sdk/ProSnippets.cs at master · Esri/arcgis-pro-sdk · GitHub
... View more
05-09-2022
10:40 PM
|
0
|
0
|
2634
|
|
POST
|
Hi, ArcGIS Enterprise 10.9.1 (server) is based on ArcObjects 10.9.1. You can still develop extensions for ArcGIS Enterprise 10.9.1 using ArcObjects. It is not possible to upgrade desktop applications code to 10.9.1 ArcObjects. https://enterprise.arcgis.com/en/system-requirements/latest/windows/arcobjects-sdk-system-requirements.htm
... View more
05-06-2022
11:47 AM
|
0
|
0
|
934
|
|
POST
|
Hi, Look here: https://community.esri.com/t5/arcgis-pro-sdk-questions/namespace-problems-in-xaml/m-p/1090296
... View more
05-04-2022
07:15 AM
|
0
|
0
|
1815
|
|
POST
|
If your polylineBorder is polyline so you need change createPart parameter of SplitAtPoint to "true". "createPart - Determines if parts are to be created. MUST be false for polygons. For polylines, if true, the part on which the new split point falls is split into two parts with the newly added vertex serving as the end of the first part and the beginning of the second." If it is polygon then you need to rearrange polygon to polyline and after make split .
... View more
04-27-2022
03:50 AM
|
1
|
1
|
2881
|
|
POST
|
Your splitMethod variable returns result Multipart. So need to make cycle for each of Multipart parts and get centroid of part not of multipart.
... View more
04-27-2022
01:17 AM
|
1
|
5
|
2924
|
|
POST
|
Lets start from the beginning. What is final result of your task? Polyline Feature in FeatureLayer(FeatureClass) or Polyline Geometry? If your result is Polyline Feature then you need to create Polyline Feature from polygon geometry and after that split created feature using EditOperation. If your result is Polyline geometry then you can use GeometryEngine SplitAtPoint method. More info here: ArcGIS Pro 2.9 API Reference Guide - SplitAtPoint Method—ArcGIS Pro
... View more
04-27-2022
12:05 AM
|
1
|
7
|
2930
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a week ago | |
| 1 | a week ago | |
| 2 | 04-24-2026 08:33 AM | |
| 1 | 03-23-2026 11:44 AM | |
| 1 | 05-22-2024 11:48 PM |
| Online Status |
Online
|
| Date Last Visited |
a week ago
|