|
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
|
3221
|
|
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
|
1498
|
|
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
|
1349
|
|
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
|
1877
|
|
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
|
1920
|
|
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
|
2950
|
|
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
|
1222
|
|
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
|
2963
|
|
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
|
920
|
|
POST
|
Hi,
Activating next tool deactivates previous tool. Why do you use Move tool to select point? You can select it from code
... View more
12-05-2024
06:40 AM
|
0
|
2
|
1454
|
|
POST
|
Hi,
I have remembered my post on another similar thread. There are no changes in layer properties window in ArcGIS Pro. There is possibility to change color for now, but not symbol.
P.s. I am still on ArcGIS Pro 3.3.2
... View more
12-05-2024
05:36 AM
|
0
|
1
|
1727
|
|
POST
|
Hi,
Have you seen these community threads (thread1 and thread2)?
... View more
12-05-2024
04:58 AM
|
0
|
1
|
1239
|
|
POST
|
Hi,
As written in ArcGIS Pro ProConcepts Editing, you cannot use edit operation methods within the context of your call back routine or lambda. You use Delete method of EditOperation.
... View more
12-02-2024
01:32 AM
|
0
|
0
|
1078
|
|
POST
|
Hi,
You can use DGPS (Differential GPS) to improve your accuracy. I think, you could simplify your GPS data as suggested here. ArcGIS geoprocessing tool Simplify Line can help you, but it needs standard or advanced license. Ramer-Douglas-Peucker line simplification code you can find by web search or click on link.
... View more
11-30-2024
12:36 AM
|
1
|
1
|
3626
|
|
POST
|
Hi,
You have global variable _mapViewOverlayControl (with underscore) which is null, I think. So change it to:
MapView.Active.AddOverlayControl(mapViewOverlayControl);
Without underscore it works fine
... View more
11-28-2024
12:28 PM
|
0
|
1
|
1221
|
| 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 |
11 hours ago
|