Hi, we'd like to list all available feature layers that are available in ArcGIS portal. Our assumption was that there exists something like:
val portal = Portal(PORTAL_URL, Portal.Connection.Anonymous)
portal.fetchFeatureLayers()
...
But none of the "fetch..." methods returns the feature layer we created in ArcGIS portal.
Edit: After digging a bit more into the issue, we found out that none of the (vector) basemaps from our portal are fetched. Instead we receive items with names such as:
- 0330_Dark_Gray_Canvas_Title
- 0310_Terrain_Labels_Title
- 0120_Imagery_Hybrid_Title
- ...
Do you have any expaination why our basemaps are not listed by the fetch* command?
Thanks in advance