|
POST
|
In my experience, web maps are a bit of a nightmare for accessibility compliance, but admittedly my experience is limited. I recommend maybe posting on this board as well if you haven't already 🙂 https://community.esri.com/t5/accessibility/ct-p/accessibility
... View more
02-16-2026
09:10 AM
|
2
|
0
|
352
|
|
POST
|
@TannerHarris ACTUALLY.....maybe the Imagery Viewer instant app would work? I was reading documentation and it seemed at first it wouldn't work for multiple layers the way you wanted, but I just created a quick test app, using this public web map, and looks like it might work for what you need??
... View more
02-13-2026
07:03 AM
|
1
|
0
|
314
|
|
POST
|
Unfortunately, not that I know of outside of the cumbersome workflow you described. I found this post that describes a situation very similar to yours, but it doesn't look like they found an acceptable workaround either...
... View more
02-13-2026
06:44 AM
|
0
|
0
|
318
|
|
POST
|
Have you looked into the ArcGIS Instant App "Compare" layout? You can have three maps side-by-side, and choose to synchronize the maps so that panning one controls all maps, or leave them independent.
... View more
02-12-2026
12:51 PM
|
0
|
3
|
360
|
|
POST
|
Your 2022 map ("11") contains feature layers, but your new map ("MUNIC_AO") only contains KML and GeoJSON. If you can configure your MUNIC_AO map in the same way you did your older map, you might have better luck. @DebapriyaPaul Can you help explain the "feature layer" vs "hosted feature layer" nuance here, and how those layers might have been published?
... View more
02-11-2026
10:27 AM
|
0
|
1
|
466
|
|
POST
|
That's great to hear! If there are any details from your troubleshooting process that might help someone else facing a similar issue, please post them here if you want 🙂 Glad things worked out for you
... View more
02-11-2026
06:14 AM
|
0
|
0
|
182
|
|
POST
|
What is your role and user type in your organization? Looks like you don't have the permissions to create hosted feature layers.
... View more
02-10-2026
08:35 AM
|
0
|
0
|
234
|
|
POST
|
Ah, yes that's just a GeoJSON layer. You will need to add it as a hosted feature layer. Select this option when you add "New Item" from your Content page and select the geojson file: Once that hosted feature layer is in your web map, you should see the Enable Search option and you can select that layer from the dropdown.
... View more
02-10-2026
08:15 AM
|
0
|
2
|
238
|
|
POST
|
Hi @StuA , If your only option is using the out-of-the-box print widget/service, you could maybe get away with adding some text to the "copyright" field, which will print on the page. However, it does cut off at a certain character limit, and you can't change the formatting, so it's really not a great workaround, I admit. On the other hand, have you looked into this option? I think it's still in Beta and only available for certain user types, so not sure if it's an option for you. I don't have personal experience working with it so don't have much insight on it. https://www.esri.com/arcgis-blog/products/arcgis-online/mapping/print-from-layout-items
... View more
02-10-2026
07:52 AM
|
0
|
0
|
92
|
|
POST
|
@lilliamgomez If you aren't seeing the option to Enable Search in the web map settings, it is likely that the web map does not contain any layers that are searchable. As @DebapriyaPaul already pointed out, enabling Search by Layer can only be done for Hosted feature layers and ArcGIS Server feature and map service layers with Query enabled. Can you please confirm if this setting is enabled on the layer you want to search by in your web map? If the layer is public, could you share here?
... View more
02-10-2026
07:25 AM
|
0
|
0
|
242
|
|
POST
|
Some additional information would be helpful for troubleshooting this. Has this workflow worked for you in the past, or has it always resulted in an error? What settings are you using when creating a new map? (i.e. start with new layers, start with map template, etc.) Are there any other errors that show up in the developer console or elsewhere on the page? What is your user type and role in your AGOL account?
... View more
02-10-2026
06:49 AM
|
0
|
2
|
209
|
|
POST
|
My understanding of the term "Update Shared Content" for a group is that it allows Creator user types to do "Save" instead of only "Save As" on web maps, apps, etc., that other people own. Otherwise, you'd need to be an admin to be able to do that for content owned by someone else. With this in mind, it makes sense that Mobile Workers can't utilize this privilege, since they can't own content in AGOL. Editing data vs. editing content are different things, within the context of AGOL. Hope that helps clarify!
... View more
02-10-2026
06:45 AM
|
1
|
0
|
666
|
|
POST
|
I think you could accomplish something like this using the ArcGIS REST API within an ArcGIS Notebook. I tried this in a Notebook and it worked for me - does this accomplish what you need? You could just run this notebook any time you create a new group, updating the groupID variable as needed. from arcgis.gis import GIS
import json
gis = GIS("home")
groupID = "your-group-id-string-here"
# Standard category template to assign to new groups
category_schema = {
"categorySchema": [
{
"title": "Main Categories",
"categories": [
{"title": "New Category 1"},
{"title": "New Category 2"},
{"title": "New Category 3"}
]
}
]
}
# Convert schema to JSON string
category_schema_str = json.dumps(category_schema)
# Construct full REST URL
url = f"{gis._portal.resturl}community/groups/{groupID}/assignCategorySchema"
# POST to REST
res = gis._con.post(
url,
{
"categorySchema": category_schema_str,
"f": "json"
}
)
print(res)
... View more
02-03-2026
08:47 AM
|
0
|
1
|
186
|
|
POST
|
@JonM32 If you modify the tool/script and search for the term "Web Experience", does it work for you? For example, the dropdown value in your python tool can still say "Experience Builder", but the item_type is 'Web Experience' exb = gis.content.search('', item_type='Web Experience', max_items=-1) Here is some esri documentation on the item types that you should be able to search for: https://developers.arcgis.com/rest/users-groups-and-items/items-and-item-types/
... View more
01-05-2026
11:12 AM
|
1
|
1
|
1021
|
|
POST
|
This post helped me a lot and so I wanted to add to it, with a link to specific Esri documentation. It basically says the same thing in the GeoJobe link, but also provides other information that might be useful for other user properties: userType determines if new members will have Esri access (both) or if Esri access will be disabled (arcgisonly). The default value is arcgisonly. ArcGIS REST API https://developers.arcgis.com/rest/users-groups-and-items/set-user-default-settings/ ArcGIS API for Python (arcgis.gis.User.user_types) https://developers.arcgis.com/python/latest/api-reference/arcgis.gis.toc.html#arcgis.gis.User.user_types For me, what I really needed was the userLicenseType value from the REST API, which is what you get with the User.user_types()["id"] call mentioned by @RHmapping
... View more
12-18-2025
01:14 PM
|
0
|
0
|
636
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 1 | 3 weeks ago | |
| 1 | 4 weeks ago | |
| 2 | 3 weeks ago |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|