POST
|
More Clarity: We are trying to build Our application is based on ArcGIS Maps SDK for Javascript, where we want to add same tools that's exists in ArcGISMap/ArcGIS Pro. For example, "go to XY" , "Find" (with binacular symbol), "Select layer by location/ attributes" etc etc. Additional Question: Could you please tell, Do we have components for all the existing ArcGIS Pro tools or do we need to build using Core API? Thank you.
... View more
03-10-2025
06:53 AM
|
0
|
0
|
264
|
POST
|
Hi All, I want to consume the ArcGIS Pro tools in the application and i tried to get the corresponding tool icons from the https://developers.arcgis.com/calcite-design-system/icons/?query= But i am not able to find the exact icons. For example, "go to XY" , "Find" (with binacular symbol), "Select layer by location/ attributes" etc etc. Could you please help me - where can we get this mapping document. I am sure we may not be having components for all the existing ArcGIS Pro/Map tools. But whatever components we have - for those, information is sufficient for now. Thank you.
... View more
03-10-2025
02:47 AM
|
0
|
2
|
305
|
POST
|
Hi All, Looks like OpenID is not allowing this kind of facility and We followed SAML approach and completed this activity. Marking this as resolved. Thank you all.
... View more
10-20-2024
08:51 AM
|
0
|
0
|
984
|
POST
|
Thank you DennisSmith for your reply. I understand that you’re suggesting we should map all new users into a single default group initially. However, our intention is to keep users like userA linked to groupA and userB linked to groupB. If we implement these default settings (i.e., groupDefault and roleDefault), all users will be assigned to groupDefault, leaving no option for them to be easily reassigned to their specific groups or roles without manual intervention. Please correct me if I’ve misunderstood your perspective. Thank you.
... View more
10-14-2024
04:55 AM
|
0
|
1
|
1032
|
POST
|
Hi All, I hope this message finds you well. We’re currently integrating Okta with our ArcGIS Enterprise v11.0 hosted in AWS. We’ve successfully created groups in SailPoint and configured Okta as our OpenID store, enabling users in the SailPoint groups to log in seamlessly through the organizational login process. Now, we aim to automatically assign portal groups to users during login. For instance, we have a group in SailPoint named "app_administrators" and a corresponding group in the portal called "app_administrators" We would like all users in the SailPoint group to be automatically assigned to the corresponding portal group upon login. While there is an option to sync with SAML-based logins, I haven’t found a similar option in the OpenID configuration GUI. Could anyone provide guidance on how to achieve this? Thank you in advance for your help!
... View more
10-03-2024
01:49 AM
|
0
|
4
|
1130
|
POST
|
Hi , Anyone has any thoughts on this. Please share. Thank you.
... View more
03-05-2024
02:03 AM
|
0
|
1
|
947
|
POST
|
Hi @Wolf and @UmaHarano - can you please help me here. Apologies for tagging you both directly. since this is something product level inside logic, I thought you both will help me quickly. Thanks in advance.
... View more
02-14-2024
07:52 AM
|
0
|
2
|
1060
|
POST
|
Hi Team, We are using GetTable().GetDefinition().GetObjectIDField() method to get the ObjectID fieldname and which is working well on Featureclasses having ST_Geometry field. But for the feature class having SDO_Geometry as shape field, this function is returning empty value. FYI: I am using ArcGIS Pro SDK v2.9. Can you please help me to understand - 1. is it correct behaviour? 2. In case if we need to use SDO_Geometry as shape, do we need to take any additional care? 3. What is the table internally this method relies on? 4. Any other related details while working with SDO_Geometry. Thank you in advance.
... View more
02-13-2024
02:49 AM
|
0
|
5
|
1148
|
POST
|
Hi All, I am trying to setup ArcGIS 10.9.1 enterprise system on AWS environment. As part of this, we are using AWS ALB to route traffic towards portal (both portal and server is federated). Initial user request using FQDN --> AWS ALB --> Portal URL redirection. While using ALB, i getting below gateway timeout error message. When i checked in the ALB error logs - we are getting this 'Gateway Timeout' (504) errors when request is coming one of the random port to port 6443. For this - i allowed ALL inbound traffic. Still no luck. Rather than ALB, if i use server IP address to point to FQDN - site is working as expected, but only issue is coming from SSL certificate validation failure. Followed the information mentioned in https://community.esri.com/t5/arcgis-enterprise-questions/aws-application-load-balancer-alb-in-place-of/td-p/55624 - no luck for me. @GirishYadav1 @JonathanQuinn Can you please help me if i am missing anything while using ALB for ArcGIS Enterprise Thanks In advance.
... View more
01-09-2023
03:39 AM
|
0
|
0
|
1081
|
POST
|
Hi All, Once I closed the ArcGIS Pro (version 2.8) - getting below error message. Managed Debugging Assistant 'DisconnectedContext' : 'Transition into COM context 0xdaa009c0 for this RuntimeCallableWrapper failed with the following error: The object invoked has disconnected from its clients. (Exception from HRESULT: 0x80010108 (RPC_E_DISCONNECTED)). This is typically because the COM context 0xdaa009c0 where this RuntimeCallableWrapper was created has been disconnected or it is busy doing something else. Releasing the interfaces from the current COM context (COM context 0xdaa002d0). This may cause corruption or data loss. To avoid this problem, please ensure that all COM contexts/apartments/threads stay alive and are available for context transition, until the application is completely done with the RuntimeCallableWrappers that represents COM components that live inside them.' I have cross-checked my code and there are no threads created without await and we are coming out from the process after completion of these await statement. For ex, await QueuedTask.Run(() => { activateSelectToolAsync(); }); return false; Is there any way - we can see which process is creating issue? Appreciate your help on this.
... View more
06-01-2021
03:29 AM
|
0
|
2
|
7588
|
POST
|
Hi, I hope this will help. 1. create project using MapTool. 2. in the constructor, public CaptureContainer() { IsSketchTool = true; SketchType = SketchGeometryType.Point; //.Point; //UseSnapping = true; SketchOutputMode = SketchOutputMode.Screen; var systemCursor = System.Windows.Input.Cursors.Arrow; Cursor = systemCursor; } 3. protected async override Task<bool> OnSketchCompleteAsync(Geometry geometry) { await QueuedTask.Run(() => { var sourceSelection = ActiveMapView.SelectFeatures(geometry, SelectionCombinationMethod.New); foreach (KeyValuePair<BasicFeatureLayer, List<long>> eachSel in sourceSelection) { CIMDataConnection currentDataConnection = eachSel.Key.GetDataConnection(); var objsting= currentDataConnection.ToJson(); JObject jsonObject = JObject.Parse(objsting); MessageBox.Show("connection string is from : "+(string)jsonObject["workspaceFactory"]); } }); return true; } Hope this helps. Thanks, Sreeni.
... View more
05-11-2021
01:27 AM
|
0
|
0
|
1755
|
POST
|
Hi, 1. Select 'Map Tool' project template to create the add-in. 2. Changed the cursor as normal cursor in the constructor(), public CaptureCoordinates() { IsSketchTool = true; SketchType = SketchGeometryType.Point; //.Point; //UseSnapping = true; SketchOutputMode = SketchOutputMode.Screen; var systemCursor = System.Windows.Input.Cursors.Arrow; Cursor = systemCursor; } 3. This will give us "onsketchcompleteasync" functionality. This will return the selected geometry as Geometry object. within this method, use protected async override Task<bool> OnSketchCompleteAsync(Geometry geometry) { long targetID=0; string strTargetLayerName = null; await QueuedTask.Run(() => { var sourceSelection = ActiveMapView.SelectFeatures(geometry, SelectionCombinationMethod.New); foreach (KeyValuePair<BasicFeatureLayer, List<long>> eachSel in sourceSelection) { targetID = eachSel.Value[0]; strTargetLayerName = eachSel.Key.Name; } var inspTargetInspector = new Inspector(); var selectedTargetFeatures = ArcGIS.Desktop.Mapping.MapView.Active.Map.GetSelection(); inspTargetInspector.Load(selectedTargetFeatures.Keys.First(), targetID); if (inspTargetInspector.Shape.GeometryType == GeometryType.Polyline) { var objpolyline = inspTargetInspector.Shape as Polyline; //Below logic will change based on the logic. For now, we are just printing X, Y coordinates of each point in the polyline. for (int i = 0; i < objpolyline.PointCount; i++) { MessageBox.Show("Points are : " + objpolyline.Points[i].X.ToString() + " " + objpolyline.Points[i].Y.ToString()); } } }); return true; } After running application --> click on the add-in --> select the feature which we want to get coordinates. I hope, This will help you to get started as a draft. I am sure we can tweak this code further. Thanks. Sreeni.
... View more
05-11-2021
12:08 AM
|
0
|
1
|
2993
|
Title | Kudos | Posted |
---|---|---|
1 | 04-08-2020 09:39 PM |
Online Status |
Offline
|
Date Last Visited |
03-10-2025
03:29 PM
|