|
POST
|
I saw another thread with your comment about one second for animation. I could say that car already passed crossroad, but current location symbol is about 5-10 meters before crossroad on speed 50 km/h. Driver will always miss required crossroad to change direction if look to map. Current location symbol moves like a frog trying to catch real car position: gap, no gap, gap and so on. On asynchronous LocationChanged event we make redrawing of rest route, checking of speed limit, rerouting needs and etc. I would like to see at first moved current location symbol then get LocationChanged event (like WYSIWYG). To see real car position is more important thing than others.
... View more
02-23-2026
11:52 AM
|
0
|
0
|
444
|
|
POST
|
Hi, We are trying to implement navigation in our application (Runtime 200.8.1). We have noticed that current location symbol significantly behind the position from LocationChanged event. Position from LocationChanged event shows real situation where is car at the moment (red dot). The indigo line shows the rest of the route. This prevents the driver from making the right decisions.
... View more
02-23-2026
12:35 AM
|
0
|
2
|
481
|
|
POST
|
Hi, When you trying to publish web tool code, ArcGIS makes revision of your code and makes some changes in it. The mangling happens because ArcGIS is trying to do some kind of validation of "path-like strings" against what data sources are registered on ArcGIS Server. Check for differences with your original code. It is recommended all paths make as parameters for tool. Then you can setup these parameters as constants and don't need to specify each time you run tool.
... View more
02-20-2026
04:58 AM
|
0
|
2
|
982
|
|
POST
|
"An ArcGIS Pro configuration is similar to add-ins but offers additional ways to extend the application. It can help you design a version of ArcGIS Pro that more closely reflects your organization’s brand and workflows." You don't need to do anything extra. Registration of configuration must register all your tools. I have added links regarding configuration to ProConcepts and ProGuide which contains step by step instructions for creating configuration with custom tabs, groups and buttons inside.
... View more
02-15-2026
10:16 AM
|
0
|
0
|
491
|
|
POST
|
Hi, Configurations provide add-in capabilities: https://www.esri.com/arcgis-blog/products/3d-gis/3d-gis/introducing-arcgis-pro-sdk-configurations Configurations provide: Solution branding of the Pro UI – you can create a highly customized UI and start-up user experience for Pro, with a custom splash screen, start up page, application icon, and more Conditional / role-based customization – allows you to build logic into the Pro start-up experience and tailor the Pro UI ribbon based on conditions, logins, etc. Add-in capabilities – configurations provide all of the standard customization capabilities of add-ins Control over add-ins – you can choose how and which add-ins are loaded in Pro
... View more
02-14-2026
12:14 PM
|
0
|
1
|
500
|
|
POST
|
I think issue isn't with small image properties. It could be with large image properties
... View more
01-29-2026
07:03 AM
|
0
|
0
|
500
|
|
POST
|
Hi, Try to check "Build Action" of both images: CloudError16.png and CloudError32.png. Maybe build action for CloudError32.png is wrong.
... View more
01-29-2026
06:04 AM
|
0
|
2
|
507
|
|
POST
|
Hi, I think you use invalid url to connect to your portal. Your url must look like: "<url.Scheme>://<url.Host>/portal/" Try at first with Esri Community sample PortalInfoListAllFedServers
... View more
01-26-2026
10:23 PM
|
0
|
0
|
321
|
|
POST
|
I have added sample data to group layer and GetTemplates works on all layers. Have you installed SP1 on ArcGIS Pro 3.6?
... View more
01-25-2026
11:10 PM
|
0
|
0
|
489
|
|
POST
|
Hi, I have made a test with ArcGIS Pro 3.6 SP1 and Esri ArcGIS Pro SDK sample RowEventTest code and Esri sample data C:\Data\FeatureTest\FeatureTest.aprx. It works fine.
... View more
01-24-2026
03:23 AM
|
0
|
2
|
501
|
|
POST
|
Hi, There are similar threads: IPlugInWrapper Tab Caption won't change! - Esri Community How to change the caption of my tab and group thro... - Esri Community
... View more
01-11-2026
10:20 PM
|
0
|
1
|
405
|
|
POST
|
Hi, What do you want to do with references from GitHub? You can use latest ArcGIS Pro SKD reference. Make search for your interest and then switch to version you want.
... View more
01-09-2026
05:00 AM
|
0
|
2
|
1270
|
|
POST
|
Hi, Take a look at the ArcGIS Pro SDK API reference. Code from reference below: protected override async void OnClick()
{
await QueuedTask.Run(() =>
{
var unit_formats = Enum.GetValues(typeof(UnitFormatType))
.OfType<UnitFormatType>().ToList();
System.Diagnostics.Debug.WriteLine("Default project units\r\n");
foreach (var unit_format in unit_formats)
{
var default_unit = DisplayUnitFormats.Instance.GetDefaultProjectUnitFormat(unit_format);
var line = $"{unit_format.ToString()}: {default_unit.DisplayName}, {default_unit.UnitCode}";
System.Diagnostics.Debug.WriteLine(line);
}
System.Diagnostics.Debug.WriteLine("");
});
}
... View more
01-07-2026
10:44 AM
|
1
|
0
|
632
|
|
POST
|
Hi, Each ArcGIS Runtime version has requirements for physical device operation system. For 200.8 and iOS there are requirements: iOS deployment requirements Operating systems iOS/iPadOS 18 iOS/iPadOS 17 If your device operation system doesn't match, application crashes. Your need to edit Visual Studio project file to meet these requirements: <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">17.0</SupportedOSPlatformVersion> Our application with ArcGIS Runtime 200.8 crashes on devices with iOS 15, but doesn't on iOS 16.
... View more
12-21-2025
11:49 PM
|
0
|
0
|
558
|
| 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 |
Wednesday
|