|
POST
|
Hi, You can open "New WEB layer" using ID (esri_sharing_SharingAsWEBLayerCXMUBtn) var commandId = "esri_sharing_SharingAsWEBLayerCXMUBtn";
IPlugInWrapper wrapper = FrameworkApplication.GetPlugInWrapper(commandId);
var command = wrapper as ICommand;
if ((command != null) && command.CanExecute(null))
command.Execute(null); Another way is to open geoprocessing tool dialog using Geoprocessing.OpenToolDialog
... View more
01-20-2025
10:57 PM
|
0
|
3
|
1372
|
|
POST
|
Hi, You can use Alter Field geoprocessing tool: Alter Field (Data Management)—ArcGIS Pro | Documentation How to call geoprocessing tool here: ExecuteToolAsync(String,IEnumerable<String>,IEnumerable<KeyValuePair<String,String>>,CancelableProgressor,GPExecuteToolFlags) Method—ArcGIS Pro
... View more
01-20-2025
10:39 PM
|
1
|
1
|
1989
|
|
POST
|
Sorry. it was commented out in daml. Maybe it was implemented in earlier versions. To handle cursor in stereo mapping you need to use keyboard key '~'. Tilde (~) Temporarily turn off fixed pointer mode. This turns off the fixed pointer mode to allow you to perform other tasks. To return to the fixed pointer mode, press the Tilde key again. Note: There is no need to press the Shift key. This shortcut applies to United States standard keyboards. Other types of keyboards may have a different character on the key. For detailed information, verify which key the VK_OEM_3 (Microsoft virtual key code) is mapped to for your keyboard. So, you can try to simulate keyboard pressing. Stereo map—ArcGIS Pro | Documentation
... View more
01-08-2025
01:05 AM
|
1
|
0
|
1439
|
|
POST
|
Hi, Try "esri_datasourcesraster_stereoCursorModeFixed". Module id="esri_datasourcesraster".
... View more
01-07-2025
06:05 AM
|
0
|
0
|
1452
|
|
POST
|
Hi, I think you can use logic from that thread. Instead of Distance you can check minimum difference in time between points. You can get both value (time and distance) on the same cycle. Here is how to obtain the difference in time.
... View more
01-02-2025
06:08 AM
|
1
|
0
|
2272
|
|
POST
|
Hi, Have you seen that ideas thread? There are helpful settings here. Author recommends output_as_image set to False and set other parameters for smaller size.
... View more
01-02-2025
05:14 AM
|
0
|
1
|
3275
|
|
POST
|
Hi, I have downloaded the solution from here. Link is used from your page ("Download solution"). Replaced API key with my own and it works on Windows.
... View more
01-02-2025
12:22 AM
|
0
|
0
|
1555
|
|
POST
|
Hi, As stated in the documentation EventTableConfiguration class is available in ArcGIS Pro 3.4 or higher.
... View more
12-18-2024
10:29 PM
|
2
|
1
|
1424
|
|
POST
|
You need to compile core host application for each ArcGIS Pro SDK which use newest .NET version:
ArcGIS Pro SDK 2.9.x - .NET Framework 4.8
ArcGIS Pro SDK 3.0.x - ArcGIS Pro SDK 3.2.x - .NET 6.0
ArcGIS Pro SDK 3.3.x - ArcGIS Pro SDK 3.4.x - .NET 8.0
... View more
12-15-2024
10:29 PM
|
0
|
0
|
1992
|
|
POST
|
Hi,
Are you trying to open geodatabase from core host application? Same error is here.
Check project .NET version. For 3.1.x was .NET 6.
... View more
12-12-2024
07:21 AM
|
0
|
2
|
2035
|
|
POST
|
You can make your own library of images and then you can access them from daml as Esri images
... View more
12-12-2024
07:13 AM
|
0
|
3
|
3063
|
|
POST
|
Hi,
Are you trying to run ArcGIS Pro SDK 3.4.x on ArcGIS Pro 3.3?
Your SDK version must be less or equal ArcGIS Pro version. You can run code compiled with ArcGIS Pro SDK 3.3 on ArcGIS Pro 3.4, but not otherwise.
... View more
12-11-2024
01:09 PM
|
0
|
0
|
1275
|
|
POST
|
Hi,
You can set xaml for smallImage, largeImage, overlaySmallImage and overlayLargeImage:
<button id="DockpaneSimple_Button1" caption="Button 1" className="Button1" loadOnClick="true"
smallImage="Images/ImageSmall.xaml"
largeImage="Images/ImageLarge.xaml">
<tooltip heading="Tooltip Heading">Tooltip text<disabledText /></tooltip>
Build action for project items ImageSmall.xaml and ImageLarge.xaml must be 'Content'.
My sample xaml:
<DrawingImage xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<DrawingImage.Drawing>
<DrawingGroup>
<GeometryDrawing Brush="#00FFFFFF"
Geometry="M 0,0L 32,0L 32,32L 0,32L 0,0 Z " />
<GeometryDrawing Brush="#FFFF0000"
Geometry="F1 M 6.25,3.97918L 23.125,3.97918L 23.125,16.1458L 6.25,16.1458L 6.25,3.97918 Z ">
<GeometryDrawing.Pen>
<Pen LineJoin="Round"
Brush="#FF000000" />
</GeometryDrawing.Pen>
</GeometryDrawing>
<GeometryDrawing Brush="#FF00C800"
Geometry="F1 M 21.8542,11.0625C 26.399,11.0625 30.0833,14.7468 30.0833,19.2917C 30.0833,23.8365 26.399,27.5208 21.8542,27.5208C 17.3093,27.5208 13.625,23.8365 13.625,19.2917C 13.625,14.7468 17.3093,11.0625 21.8542,11.0625 Z ">
<GeometryDrawing.Pen>
<Pen LineJoin="Round"
Brush="#FF000000" />
</GeometryDrawing.Pen>
</GeometryDrawing>
<GeometryDrawing Brush="#FFFFFF00"
Geometry="F1 M 16.8731,14.9035L 11.9668,16.2498L 8.58953,12.5761L 8.25831,17.6042L 3.62852,19.7405L 8.33013,21.5017L 8.84603,26.4958L 12.083,22.5562L 17.0316,23.5064L 14.3306,19.3103L 16.8731,14.9035 Z ">
<GeometryDrawing.Pen>
<Pen LineJoin="Round"
Brush="#FF000000" />
</GeometryDrawing.Pen>
</GeometryDrawing>
</DrawingGroup>
</DrawingImage.Drawing>
</DrawingImage>
Resulting view :
For local resources you don't need prefix "pack:application:,,,/".
... View more
12-09-2024
11:18 AM
|
0
|
5
|
3076
|
|
POST
|
Hi,
You can listen for MapMemberPropertiesChangedEvent event to check when user changes a layer name.
... View more
12-06-2024
12:22 AM
|
1
|
0
|
967
|
| 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
|