Hello guys,
Using ArcGIS API for python, I'm trying to add layer that contain standalone table to a list of webmap in my organization programmatically but don't work.
When I execute the method to add a mapservice layer to webmap, just add normal feature class layer, not standalone table.
There are any way to avoid that behavior or some workaround ?
maintenance_webmap = "webmap id"
mapa_consultas = gis.content.get(maintenance_webmap)
web_map_obj = WebMap(mapa_consultas)
maintenance_layer = gis.content.get(maintenance_layer_id)
web_map_obj.add_layer(maintenance_layer, options={'title':maintenance_layer_title})