|
POST
|
In 4.19 the buttons for the sketch widget css were .esri-sketch__button. Now in 4.21 they are just buttons. This is making it really hard to resize the sketch buttons. I can resize the panel(.esri-sketch__panel), but the buttons remain the same. I might be missing something. Can someone tell me how to resize just the sketch buttons in 4.21?
... View more
12-02-2021
09:01 AM
|
0
|
1
|
1613
|
|
POST
|
Thanks. This is a simplified problem, I have many attributes I need to query. ESRI is logging it as an enhancement instead of a bug, even though it is a basic very simple sql statement, so it might be a long time until it gets fixed. They need to update their documentation that supportsOutFieldSQLExpression is not supported currently with rest endpoints.
... View more
11-19-2021
11:35 AM
|
0
|
1
|
2527
|
|
POST
|
According to the documentation as of 10.9, hosted feature services support SQL statements. https://developers.arcgis.com/rest/services-reference/enterprise/query-feature-service-layer-.html Hosted feature services on a relational data store support SQL expression for the outFields parameter when supportsOutFieldSqlExpression, under advancedQueryCapabilities, is true. Hosted feature services in ArcGIS Online already support this functionality. https://developers.arcgis.com/javascript/latest/api-reference/esri-rest-support-Query.html If specifying outFields as expressions on a feature service-based FeatureLayer, the service capabilities advancedQueryCapabilities.supportsOutFieldSQLExpression and useStandardizedQueries must both be true. But a very simply expression does not work. PartyName LIKE '%driscoll%', on this layer: https://www.jfksgis.us/server/rest/services/Hosted/Parcel_hosted/FeatureServer/0/ The SQL query works fine in Pro and for Online services: https://services1.arcgis.com/tpr1e2h7Rmn9C5oc/ArcGIS/rest/services/JFKS_GIS_ParcelOrion_Public_V4/FeatureServer/0 So is this not actually supported in server 10.9?
... View more
11-19-2021
09:12 AM
|
0
|
3
|
2576
|
|
POST
|
I believe they are Sony cameras, but I am not sure what type. If it is not on the list, find one similar, figure out the specs of the camera, and enter them manually.
... View more
07-15-2021
01:40 PM
|
0
|
2
|
3046
|
|
POST
|
Thanks. I guess they have not gotten around to changing the help topic yet.
... View more
06-03-2021
09:24 AM
|
0
|
0
|
1761
|
|
POST
|
I need help figuring out which Map Viewer to use. The help states: "Caution: If you're using ArcGIS Enterprise to configure the map with the Field Maps web app, you must use Map Viewer Beta when editing the map. If you use Map Viewer to edit the map, the changes you make in the Field Maps web app will be lost. If you're using ArcGIS Enterprise 10.8 or earlier, see Configure the form in Map Viewer Classic." But Map Viewer Beta is no longer Beta and now just Map Viewer. So I cannot use Beta and this states changes to the Field Maps will be lost if not using Beta. Our Enterprise is 10.8 and moving to 10.9 so Classic is a no go for us. Can anyone enlighten me on which to use please? https://doc.arcgis.com/en/field-maps/android/help/configure-the-form.htm
... View more
06-03-2021
09:01 AM
|
0
|
2
|
1786
|
|
POST
|
You write one script with all of your folders needed and you will have them all automatedly created quickly with a single click or two.
... View more
04-14-2021
09:52 AM
|
1
|
0
|
1853
|
|
POST
|
You could write a python script that you could run after creating the new project. https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/create-folder.htm
... View more
04-14-2021
09:38 AM
|
0
|
3
|
1860
|
|
POST
|
I agree. It's usually incorrect units when I come across this type of thing.
... View more
04-07-2021
09:02 AM
|
0
|
0
|
3827
|
|
POST
|
Not that I can figure out. When I run into situations like this in Pro I will use Tasks. You can have the python script run but don't include the importDocument in a step, make a new step to Import Map (noting exactly how/where to get the map file), ect. You can have each step run automatically one right after another. Not ideal, but if you need a bit of handholding for those less familiar with the software it works great. Also, you might be able to do this with the Pro SDK within IProjectItem then AddItem.
... View more
03-23-2021
07:53 AM
|
0
|
0
|
6383
|
|
POST
|
https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/charts/profile-graph.htm https://pro.arcgis.com/en/pro-app/latest/help/mapping/navigation/profile-viewing.htm https://pro.arcgis.com/en/pro-app/latest/tool-reference/3d-analyst/stack-profile.htm
... View more
03-22-2021
11:00 AM
|
3
|
0
|
3254
|
|
POST
|
Use variables. It's also a good practice to use Feature layers. # Create Buffer Layer
buff = arcpy.Buffer_analysis(Centroid_Map_XYTableToPoint, buffer, "200 kilometers")
buffFeatureLayer = arcpy.MakeFeatureLayer_management(buff, "buff_layer")
print("Buffer Layer Created")
# arcpy.management.SelectLayerByAttribute(in_layer_or_view, {selection_type}, {where_clause}, {invert_where_clause})
selectLayer = arcpy.SelectLayerByAttribute_management("Lakehead_Forest_Processing", "NEW_SELECTION", "FMU_NAME = 'Lakehead Forest' ")
print("Layer Selected")
# arcpy.analysis.Clip(in_features, clip_features, out_feature_class, {cluster_tolerance})
arcpy.analysis.Clip(selectLayer, buffFeatureLayer, "Clipped_Layer")
print("clip successful")
... View more
03-22-2021
10:42 AM
|
2
|
0
|
4148
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-23-2026 09:28 AM | |
| 2 | 05-21-2026 09:21 AM | |
| 1 | 05-19-2026 02:25 PM | |
| 1 | 05-19-2026 08:11 AM | |
| 1 | 04-17-2026 01:08 PM |
| Online Status |
Offline
|
| Date Last Visited |
05-28-2026
06:06 AM
|