IDEA
|
just an FYI. As a workaround for now, you can add a button to the context menu on the Contents pane. Please see the help here: https://github.com/Esri/arcgis-pro-sdk/wiki/ProSnippets-DAML#menu-insert-a-new-button-to-the-map-content-context-menu for how to customize the map context menu here is the code that needs to be in the code behind. private void ExpandedEverything(Map map, bool expand)
{
var layers = map?.GetLayersAsFlattenedList() ?? new List<Layer>();
foreach (var layer in layers) layer.SetExpanded(true);
}
QueuedTask.Run(()=> ExpandEverything(MapView.Active.Map, true));//expand
//QueuedTask.Run(()=> ExpandEverything(MapView.Active.Map, false));//collapse
... View more
a week ago
|
0
|
0
|
70
|
POST
|
@SanchezNuñez Adding a reference to another discussion on same/similar topic. I hope if this might help https://community.esri.com/t5/arcgis-pro-questions/arcgis-pro-definition-query-to-select-a-group-of/m-p/1300418
... View more
2 weeks ago
|
0
|
0
|
115
|
POST
|
@User35487 if you look at the layer resources, you will find those information inside relationships array. here is an example: https://sampleserver6.arcgisonline.com/arcgis/rest/services/ServiceRequest/MapServer/0?f=pjson hope this helps
... View more
2 weeks ago
|
1
|
0
|
122
|
POST
|
understand this is an old post that I just happened to stumble upon... just in case folks come here in future, I'm adding the following two resources to help: https://enterprise.arcgis.com/en/server/latest/manage-data/windows/registering-your-data-with-arcgis-server-using-manager.htm#ESRI_SECTION1_01665D7E33384062B6A57DE89A52C2FA https://support.esri.com/en-us/knowledge-base/how-to-programmatically-update-a-password-change-in-an--000022551 Also, I'd to make it clear the above resources are only for the workflow when passwords are updated for existing account. That would not help when a new account is used.
... View more
3 weeks ago
|
0
|
0
|
129
|
POST
|
@davidson does the default (out of the box) print service work? or your print service work to print only map/layout basically you are not asking for any reports? Just want to figure out if the crash is specific to report generation or in general?
... View more
3 weeks ago
|
0
|
2
|
215
|
POST
|
@Bud, As @JoshuaBixby pointed out above, spatial clauses are stored as binary geometry objects with a layer's definition query. And they do not get translated into a sql queries at run time. At a very high level, to make the query runs efficiently, we have taken a hybrid approach. If you trace calls made to enterprise databases, you will notice a sql with spatial search component (this is not the geometry that you picked as the spatial clause geometry). In many cases, that call would return some false positives. That is why we apply a secondary spatial filter in ArcObjects level to weed those out. I'm not going to get into details here as I might not have all correct information in my hands. We might look into some possibilities of writing some posts at a later time with details. Thanks for your interest in this new enhancement. We are hoping this will help with your workflows. Please keep us posted with your feedback and ideas.
... View more
3 weeks ago
|
1
|
0
|
260
|
POST
|
you folks are right that we tried to reuse the same user experience/UI from Clip Layers functionality. And that is where the similarity ends, the implementation is completely different.
... View more
3 weeks ago
|
0
|
0
|
264
|
POST
|
@Bud Thanks for pointing that out. We will work on updating our help doc to make it clear. Attribute clauses are written in SQL syntax. Spatial clauses are as you suspected complicated!
... View more
3 weeks ago
|
0
|
0
|
264
|
IDEA
|
Starting ArcGIS Pro 3.5, you can modify symbology for sub layers inside a map image layer. map services must be running on 10.9.1 server or above and must be published from ArcGIS Pro. limited to feature layers only. Modifying symbology for raster layers is not supported as map services don't allow that. you need to get into dynamic layers mode by clicking on 'Modify symbology' command on the Symbology pane to reset to the symbology defined in the source map service, go to the burger menu on the Symbology pane and click 'Reset symbology to service defaults' command supported renderers: Single Symbol, Unique Values, Graduated Colors, Graduated Symbols and Proportional Symbols
... View more
3 weeks ago
|
0
|
0
|
127
|
IDEA
|
Thank you for your suggestion @Bud. We are glad as we were able to resolve this issue in ArcGIS Pro 3.5
... View more
3 weeks ago
|
0
|
0
|
82
|
IDEA
|
Implemented in ArcGIS Pro 3.5 Binning option is available for point, line and polygon layers. Currently the computation happens on the client side. Allowing feature binning at the database level is not supported as of 3.5.
... View more
3 weeks ago
|
0
|
0
|
96
|
IDEA
|
@MarcoBoeringa yes, it is implemented in 3.5. please check out the option in the backstage settings. I have added a screenshot in my last comment above. thank you
... View more
3 weeks ago
|
0
|
0
|
90
|
Title | Kudos | Posted |
---|---|---|
1 | 2 weeks ago | |
1 | 3 weeks ago | |
1 | 04-08-2025 05:06 PM | |
1 | 02-11-2025 05:35 PM | |
1 | 04-05-2023 12:19 PM |
Online Status |
Offline
|
Date Last Visited |
yesterday
|