|
POST
|
What type of FeatureClass is the Images FC? Are the images just attached to building center point or something? R_
... View more
02-03-2025
04:36 PM
|
0
|
2
|
1010
|
|
POST
|
Suspect the issue is with the .split(";") being incorporated into the qry statement. What happens if you put a print(qry) line in between lines 7 & 8? Didn't test with GetParameter..., but if I set the Station = '276': >>> select_stations = "276"
>>> qry = "{0} IN ({1})".format(arcpy.AddFieldDelimiters(datasource= firestations, field = 'STATIONID'), ', '.join(select_stations))
>>> print(qry)
STATIONID IN (2, 7, 6) Then you can make the modifications to get the proper query statement. R_
... View more
01-29-2025
03:58 PM
|
0
|
0
|
1145
|
|
POST
|
That's what I meant. They appear to be valid attachments. Did you try clicking on other features and/or make sure ROW083.tif is valid in the table as well? If so, not sure what is going on. I would try in a new map viewer and see if it still behaves this way. R_
... View more
01-29-2025
11:24 AM
|
0
|
2
|
2223
|
|
POST
|
I would think that would mean it's valid. (could also examine them in the data tab of the hosted features item details) Do you see the same thing when adding to a new map viewer? R_
... View more
01-29-2025
10:47 AM
|
0
|
4
|
2240
|
|
POST
|
Not sure then, as that is the setting. Are you sure that image is attached and valid? I don't see the broken icon on my attached tiffs in the popup. If so, could be something weird in the map. You could try to add that single layer into a new web map and see if it behaves differently. R_
... View more
01-29-2025
09:17 AM
|
0
|
1
|
2267
|
|
POST
|
Is the layer on AGOL shared to everyone? If so, you can just add the layer by URL in the Portal viewer. R_
... View more
01-29-2025
08:50 AM
|
0
|
1
|
940
|
|
POST
|
not sure it would 'preview' a pdf, would have to test. But, I believe you are looking for the Gallery setting in the Attachments of the popup config. This not only shows the preview in the popup window, but will also let you click through multiple attachments if they exist. R_
... View more
01-29-2025
08:48 AM
|
0
|
0
|
2275
|
|
POST
|
Couldn't you just use: $editcontext.editType == 'INSERT' similar to the checkbox in Pro? See this link for more info and example. R_
... View more
01-29-2025
08:42 AM
|
0
|
1
|
3426
|
|
POST
|
I see this if I attach the IsEmpty() code to fields that have a default value. Do you have a default value set on either of the field(s)? If so, suspect it is getting populated when you open the edit form, so they are not empty, and get hidden. R_
... View more
01-22-2025
08:09 AM
|
0
|
2
|
1504
|
|
POST
|
Since you said a laptop, any chance you are connecting with VPN enabled? If so, you might try to connect without it and see if it helps. My experience with ArcGIS enterprise data is that it does not play well with VPN. (or at least, plays very slowly). R_
... View more
01-21-2025
11:07 AM
|
0
|
0
|
1470
|
|
POST
|
You didn't show what code you are using for this, but a quick test shows it working for me with IsEmpty(). IsEmpty($feature.Description) I put this on the MUTCDcode field. and IsEmpty($feature.MUTCDcode) on the Description field. This way, when one of them is populated, the other is hidden from the form. working in both Field Maps app and Map Viewer in AGOL. R_
... View more
01-21-2025
09:01 AM
|
0
|
4
|
1524
|
|
POST
|
I have seen in the past where ArcMap (especially earlier versions) will NOT let go of previous data connections. Even Defrag and Mxd Doctor will not 'fix' the issue. The only 'fix' for this I've seen in the past is to copy ALL the layers in the Data Frame and paste into a new Dataframe in a new ArcMap document. R_
... View more
01-21-2025
08:47 AM
|
1
|
1
|
1768
|
|
POST
|
You will need to add the image(s) you want to a new map, then you can share that map as a tiled service. R_
... View more
01-14-2025
08:09 AM
|
0
|
0
|
1018
|
|
POST
|
One way is to Share > Web Layer > Publish Web Layer and share as a Tile feature. R_
... View more
01-10-2025
09:49 AM
|
1
|
2
|
1079
|
|
POST
|
Not sure it will help in your situation, but I regularly run some update scripts on a Hosted Feature Service in our Portal, and do not want the editor tracking info to get updated each time. So, I run a bit of API python to disable tracking, do my calculations, then re-enable tracking on the HFS. def FeatureEditorTracking(enabledisable,item_id):
search_result= portal.content.search(item_id)
ssa_item = search_result[0]
ssa_flc = FeatureLayerCollection.fromitem(ssa_item)
enable = {"editorTrackingInfo": {
"allowOthersToUpdate": True,
"allowAnonymousToUpdate": True,
"enableEditorTracking": True,
"allowOthersToDelete": True,
"allowOthersToQuery": True,
"enableOwnershipAccessControl": False,
"allowAnonymousToDelete": True
}}
disable = { "editorTrackingInfo": {
"allowOthersToUpdate": True,
"allowAnonymousToUpdate": True,
"enableEditorTracking": False,
"allowOthersToDelete": True,
"allowOthersToQuery": True,
"enableOwnershipAccessControl": False,
"allowAnonymousToDelete": True
}}
if enabledisable == 'enable':
print("enableing tracking")
ssa_flc.manager.update_definition(enable)
if enabledisable == 'disable':
print("disableing tracking")
ssa_flc.manager.update_definition(disable)
FeatureEditorTracking(disable,item_id)
Do Work Here....
FeatureEditorTracking(enable,item_id) R_
... View more
01-08-2025
09:48 AM
|
0
|
1
|
2746
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Thursday | |
| 1 | 2 weeks ago | |
| 1 | 04-02-2026 09:50 AM | |
| 1 | 04-01-2026 01:21 PM | |
| 1 | 10-08-2025 11:59 AM |
| Online Status |
Online
|
| Date Last Visited |
2 hours ago
|