|
POST
|
When you publish a copy of your map is copied into the server directory. It is not the aprx, just the map you published from it. After you published you can delete the aprx you used but it is a good idea to keep it so if you need small changes you can use it to overwrite the service. Have fun
... View more
2 weeks ago
|
1
|
0
|
127
|
|
POST
|
The way Pro 3.5 export layout that contain cached raster to jpeg (or pdf) changed in 3.5 from 3.1 or ArcMap With the old version when you set the dpi to 300 Pro “know” to ask the raster for better resolution. So when you zoom into the result jpeg you will see more details. With 3.5 the scale define what level will be exported from the raster. This is described in this blog: https://gis.utah.gov/blog/2025-01-30-better-resolution-discover-exports/ This is a good idea when you need to print but it is not so good when you need digital file that you can zoom into. The blog describes some solution but I wonder is there a simple way to solve it (some checkbox to return to the old way maybe?) Thanks
... View more
3 weeks ago
|
0
|
0
|
142
|
|
POST
|
Hi Upgrade to VS2022 17.14 solved the problem. The docs say 17.8 is supported (that is what I had before upgrade). Many thanks
... View more
11-25-2025
04:46 AM
|
0
|
1
|
543
|
|
POST
|
Hi It is working great - thanks. There should be a sample or a snippet or at least a line in the help for Viewshed class or ExploratoryAnalysis class. Thanks again Mody
... View more
11-25-2025
01:30 AM
|
0
|
0
|
246
|
|
POST
|
Checking my dependencies in the project and Frameworks you can see the the two lines under SDK.NET.Ref point to NET 6 All entries in the NETCore and App.WPF are pointing to NET 8
... View more
11-25-2025
12:51 AM
|
0
|
1
|
586
|
|
POST
|
Thanks for the quick response. See my screen shot, it looks like I have all the versions. I do not see anywhere an option to select .NET version when I create a new project. I select the template from the list and get my project. When I edit the project file I see the line: <TargetFramework>net8.0-windows10.0.19041.0</TargetFramework> Thanks again
... View more
11-25-2025
12:46 AM
|
0
|
2
|
586
|
|
POST
|
I just started to use 200.8 I have VS 17.8 Started a project with the template and just compile it (no changes) I get the error: Severity Code Description Project File Line Suppression State Error MC1000 Unknown build error, 'Could not find type 'WinRT.WinRTRuntimeClassNameAttribute' in assembly 'C:\Users\mody\.nuget\packages\microsoft.windows.sdk.net.ref\10.0.19041.31\lib\net6.0\WinRT.Runtime.dll'. Line 14 Position 23.' WpfMapApp1 C:\Projects\WpfMapApp1\WpfMapApp1\MainWindow.xaml 14 As far as I understand I have everything installed. Any idea?
... View more
11-24-2025
10:18 PM
|
0
|
6
|
626
|
|
POST
|
I would like to create with code something similar to this: https://pro.arcgis.com/en/pro-app/latest/help/mapping/exploratory-analysis/interactive-viewshed.htm Using code I can read parameters from file and control the process beter. I found the Viewshed class that looks like the class I need. There are no examples I could find. I could set the Camera properties and the Viewshed properties, but I cannot connect it to any MapView. The MapView property is read-only. It is null when I run my code and no viewshed is created on screen. There should be a way to define it but I cannot find it. I connect my camera into the map (Camera camera = MapView.Active.Camera) then I just updated the properties (x,y, etc) but it did not help. Thanks
... View more
11-24-2025
01:33 AM
|
0
|
2
|
306
|
|
IDEA
|
Hello all It will also be nice to be able to control the target offset
... View more
11-16-2025
05:10 AM
|
0
|
0
|
231
|
|
POST
|
Two GP tools aginset one very dynamic tool in ArcMap. I think Pro can do better here!
... View more
11-15-2025
09:23 PM
|
0
|
0
|
171
|
|
POST
|
I would like to have the same functionality as ArcMap described here: https://desktop.arcgis.com/en/arcmap/latest/extensions/3d-analyst/creating-a-profile-graph-from-line-of-sight-results.htm Creating profile from interactive line of sight in one click. The profile should include the line of sight itself as a line on the profile. It was nice functionality, it should exists in Pro too
... View more
11-13-2025
06:11 AM
|
0
|
2
|
258
|
|
POST
|
In your code the var outfc have a feature dataset named Results. Does it exists?
... View more
10-19-2025
09:12 PM
|
0
|
0
|
284
|
|
POST
|
We have a map with external (non esri) WMS service that show high resolution raster. We created an A0 layout and try to export it to pdf. After about 20 seconds we get small (1Mb) pdf with blank map. If we export to JPEG even on 500DPI it takes time but give us over 50M JPEG file with the raster. If we try to lower the DPI or export A1 layout the pdf is created fine. When the export pdf works the Pro takes less the 1.5Gb of memory and very little CPU. The machine have no resource problem. Our guess is that when you export to JPEG you have a few requests for the service and it works while pdf request one big request that the wms service reject. Anybody have and idea or run into this?
... View more
09-29-2025
06:45 AM
|
0
|
0
|
229
|
|
POST
|
What is changing is that the Pro license will not be "local" (float or single) any more. You can have the Pro license in esri cloud or on local Enterprise only.
... View more
09-20-2025
09:55 PM
|
0
|
0
|
738
|
|
POST
|
After playing a lot (and consult AI) this is my solution XML <ComboBox x:Name="types" DisplayMemberPath="Name" ItemsSource="{Binding TypesItems}" SelectedItem="{Binding SelectedType, Mode=TwoWay}"/> Helper class: public class MyItemClass
{
public string Name { get; set; }
} Fill the list private ObservableCollection<MyItemClass> _TypesItems;
// fill the list in ctor
TypesItems = new ObservableCollection<MyItemClass>
{
new MyItemClass { Name = "Item 1" },
new MyItemClass { Name = "Item 2" },
new MyItemClass { Name = "Item 3" },
};
public ObservableCollection<MyItemClass> TypesItems
{
get => _TypesItems;
set => SetProperty(ref _TypesItems, value);
}
and finally get the selected private MyItemClass _selectedType;
public MyItemClass SelectedType
{
get => _selectedType;
set => SetProperty(ref _selectedType, value);
}
... View more
09-17-2025
06:35 AM
|
1
|
0
|
676
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 1 | 09-17-2025 06:35 AM | |
| 2 | 07-21-2025 10:13 PM | |
| 2 | 06-15-2025 12:55 AM | |
| 1 | 01-22-2018 02:51 AM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|