|
POST
|
Thank you!! We are going to test these changes in our development version.
... View more
01-07-2020
11:42 AM
|
0
|
0
|
2472
|
|
POST
|
Thanks, I found the name of the layer: MyGroup_4686_0 https://.../Projects/index.html?query=MyGroup_4686_0,PROJECTID='22209' It does not work. We are using Web AppBuilder 2.0, is there any need to update any of the config files https://...../iWASDProjects/index.html?query=MyWasdDeveloperAgreements_4686_0,AGMID='22209' thanks
... View more
01-07-2020
10:08 AM
|
0
|
2
|
2472
|
|
POST
|
Hello everyone, I want to query a layer that is inside a group in a Web Map. I tried to follow the samples to query the first layer in the group, in ths case id="0". This s the link I am following to build the URL query: -https://doc.arcgis.com/en/web-appbuilder/manage-apps/app-url-parameters.htm- but because the layer is in a group I am not able to make the query work. Samples I have done: https://myarcgisonline.com/Projects/index.html?webmap=.......&query=MyGroup_4686, PROJECTID='22209' or https://myarcgisonline.com/Projects/index.html?webmap=.......&query=MyWasdDeveloperAgreements_4686_0https://myarcgisonline.com/Projects/index.html?webmap=.......&query=0https://myarcgisonline.com/Projects/index.html?webmap=.......&query=0https://myarcgisonline.com/Projects/index.html?webmap=.......&query=0, PROJECTID='22209' I do not know how to correctly build an url string with query parameters when the layer is in a group. In this case the layer has "id": 0, This is how the config,json file has the layers listed. Config file. { "id": "MyGroup_4686", ******************************************** THIS IS THE GROUP "layerType": "ArcGISMapServiceLayer", "url": "https://................../MapServe", "visibility": true, "visibleLayers": [ 0, 1 ], "opacity": 1, "title": "Projects", "layers": [ { "id": 0, ********************************************* THIS IS THE LAYER I WANT TO SEARCH ...... }, { "id": 1, "popupInfo": { "title": "Future Projects",
... View more
01-07-2020
08:49 AM
|
0
|
6
|
2560
|
|
POST
|
Hello everyone, I am looking for a way to list all layers for a feature dataset to disconnect Topology layers from their corresponding Feature Class ( arcpy.RemoveFeatureClassFromTopology_management) update FC structure and then add FC to topology (arcpy.AddFeatureClassToTopology_management) This source code does not find any topology in Feature datasets with topology datasets = arcpy.ListDatasets("*", "Topology") for dataset in datasets: print(dataset)
... View more
12-10-2019
06:43 AM
|
0
|
0
|
487
|
|
POST
|
IRESTRequestHandler http://rexdotnet.blogspot.com/2009/11/using-arcgis-server-rest-api-in-net.html https://gis.stackexchange.com/questions/109342/create-layer-from-arcgis-rest-url-in-arcobjects-using-c
... View more
11-25-2019
11:47 AM
|
0
|
0
|
2100
|
|
POST
|
Hello everyone, When I call the method Query in a rest service, how do I get the results in my program (C#, Vb.Net, Python) https://myServer/arcgis/rest/services/MyService/MapServer/10/query I am only interested in getting Return Extents Only Query: Layer (ID: 10) XMin: 921645.9030000009 YMin: 522328.49475000054 XMax: 922000.1799999997 YMax: 522464.26775000244 Spatial Reference: 102658 (2236) Thanks
... View more
11-25-2019
10:16 AM
|
0
|
1
|
2349
|
|
POST
|
https://community.esri.com/message/443594?q=rest%20api%20get%20extent
... View more
11-23-2019
04:41 AM
|
0
|
1
|
987
|
|
POST
|
Hello everyone, This is what I want to do: 1) Query a map service searching for project ID = 12345, the result is a polygon. https://developers.arcgis.com/rest/services-reference/query-feature-service-layer-.htm 2) Zoom out the polygon shape 500 feet or more 3) Get map extension coordinates to build a Bounding Box: 4) Call Export Map method from this same map service, passing map extension coordinates to get a picture of the area Questions: I was able to do step number 1) running something like: https://[arcgisserver]/arcgis/rest/services/Projects/Proj/MapServer/27/query?where=PROJID='12345' How can I do step number 2, and 3. Thanks https://[arcgisserver]/arcgis/rest/services/Projects/Proj/MapServer/27/query?where=PROJID='12345' https://[arcgisserver]/arcgis/rest/services/Projects/Proj/MapServer/27/query?where=PROJID='12345' https://[arcgisserver]/arcgis/rest/services/Projects/Proj/MapServer/27/query?where=PROJID='12345' https://[arcgisserver]/arcgis/rest/services/Projects/Proj/MapServer/27/query?where=PROJID='12345' https://[arcgisserver]/arcgis/rest/services/Projects/Proj/MapServer/27/query?where=PROJID='12345' https://[arcgisserver]/arcgis/rest/services/Projects/Proj/MapServer/27/query?where=PROJID='12345' https://[arcgisserver]/arcgis/rest/services/Projects/Proj/MapServer/27/query?where=PROJID='12345'
... View more
11-22-2019
12:04 PM
|
0
|
2
|
1046
|
|
POST
|
Hello everyone, I am running a .Net console application where I read a feature class, get the ID (project number) and create a report to be sent by email. I would like to add an image showing the project location and other layers such as streets, properties, service areas, etc. Anyone has a sample on how to call ArcGIS REST API Export Map Export Map—ArcGIS REST API: Services Directory | ArcGIS for Developers Thanks
... View more
11-21-2019
08:54 AM
|
0
|
0
|
652
|
|
POST
|
Hi Asrijut, Thanks for your answer. And concerning your question, the answer is. No, I am not going to create any link using the GlobalID. Thanks
... View more
11-13-2019
06:48 AM
|
0
|
0
|
818
|
|
POST
|
Helo everyone, How can I remove fields SHAPE.STArea() and SHAPE.STLength() from SDE feature classes ad keep only the field SHAPE?
... View more
11-12-2019
11:34 AM
|
0
|
1
|
1053
|
|
POST
|
Hello everyone, Can I create an SDE view joining a FC and a table including the field GlobalID from FC? Will it work? thanks
... View more
11-12-2019
10:01 AM
|
0
|
2
|
865
|
|
POST
|
Hello everyone, This is how I did it myDatasetString = dataset if ( myDatasetString.find(prefixOutputOwner) != -1):
... View more
11-12-2019
08:24 AM
|
1
|
0
|
1351
|
|
POST
|
Hello everyone, I am looking for a map on the web may be an ArcGIS online map that will allow an user to enter an address and return lat,long coordinates for this address. Any suggestions?
... View more
11-08-2019
11:09 AM
|
0
|
1
|
2733
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 05-01-2026 12:34 PM | |
| 1 | 12-02-2022 08:17 AM | |
| 1 | 12-26-2025 05:02 AM | |
| 1 | 08-05-2025 04:28 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|