|
POST
|
@AaronKoelker yes, you should be able to search by type, 'Map Area' and delete the item. This delete will cascade and delete the related packages (tpks, vtpks and or mobile geodatabases) for the area. Something like: from arcgis.gis import GIS
gis = GIS("home")
#checkout the Search doc for more query options
#https://developers.arcgis.com/python/guide/accessing-and-creating-content/#about-search
#https://developers.arcgis.com/python/api-reference/arcgis.gis.toc.html#arcgis.gis.ContentManager.search
#https://support.esri.com/en-us/knowledge-base/how-to-find-specific-items-using-queries-in-the-arcgis-000024383
items = gis.content.search(query='owner:<SOME_USERNAME>', item_type='Map Area')
for item in items:
print(item)
item.delete()
... View more
01-12-2024
10:21 AM
|
1
|
1
|
2239
|
|
POST
|
Yes, the Python API can be used to remove map areas. The example code below, removes all map areas for a specific map. from arcgis.gis import GIS
from arcgis.mapping import WebMap
gis = GIS('home')
#The item id of the webmap that you want to delete areas for
offline_map_item_id = '<MAP_ITEM_ID>'
offline_map_item = gis.content.get(offline_map_item_id)
offline_map = WebMap(offline_map_item)
#Remove all existing areas for a map.
for ids in offline_map.offline_areas.list():
print('Removing map area: ' + ids.title)
ids.delete()
... View more
01-11-2024
04:08 PM
|
1
|
3
|
2260
|
|
POST
|
Hello, at this time when you sync a map area it is just syncing operational layers (ie uploading changes to editable feature layers and downloading changes from feature layers). The properties of the map itself, like bookmarks, are not updated. Right now to get these changes on the mobile device you would need to redownload the map area. This is a feature we have looked at adding, but it is not currently planned for a release. You could add an Idea or comments to an existing one like - Update complete webmap including form definitions during regular sync (and not only the data) to help us better understand what behavior you would expect (like would you expect/want other map properties to "sync" as well).
... View more
10-12-2023
12:16 PM
|
0
|
1
|
754
|
|
IDEA
|
Hello @AbiDhakal I am interested to know more about your workflow and what you are trying to do. Today in Field Maps, Location sharing works if you are online or offline. You do not have to add any "location sharing layer" to your maps, this just works as part of the app if you are licensed for location sharing. You can view your tracks offline as well, either from the location sharing map card on the browse screen or on any map, including offline, from the layers tool. Our doc has a section called View tracks in the mobile app which has more information. You are correct, "location sharing layers" do not support the sync, but this is not needed for location sharing to work offline. You can collect tracks will offline and they will be uploaded to the server when you have a connection. Is there something missing from these current capabilities preventing your workflow? Regards, Justin
... View more
09-20-2023
09:32 AM
|
0
|
0
|
1458
|
|
POST
|
Thanks for the additional info @LeviCecil . In your Gmail module for the subject I notice you make a reference back to the Watch Feature module output rather than the iterator. I think you might want it to look like As well you probably want to change the references in the Content section as well. I dont know for sure if this is the cause of your issue, but it would be good to make the change and test again to see if the problem still happens
... View more
09-14-2023
04:50 PM
|
0
|
1
|
1899
|
|
POST
|
Hello @LeviCecil , sorry to hear that you are running into problems. I looked at our tests and created a new scenario to give this a try and I dont see any issues so far. Are you able to share more info about your scenario (screenshot or Exporting the blueprint if possible)? Has the source layer changed at all? Have you tried testing this in a new scenario with just a Watch Features module to see if it returns the correct data?
... View more
09-14-2023
03:56 PM
|
0
|
1
|
1904
|
|
POST
|
Hello @YS2388 , after a quick test it looks like the ArcGIS API for Python has a bug when there are tables in a map and you try to access the FormCollection. Depending on what you are looking to accomplish you can iterate through the layers and tables in the map and access the form. wmItem = gis.content.get(itemID) # Fetch webmap item
wm = WebMap(wmItem) # Create wm object
for layer in wm.layers:
if 'formInfo' in layer:
print(layer.formInfo)
for table in wm.tables:
if 'formInfo' in table:
print(table.formInfo)
... View more
09-01-2023
01:28 PM
|
1
|
1
|
1365
|
|
POST
|
@vaishalikulkarni00 there is no way to directly copy offline areas from one map to another at this time. However, if you are familiar with Python, you can create map areas with the ArcGIS API for Python. We have an example script that might help you get started - Create Offline Areas from Feature Layer. This script uses feature geometries from a feature layer to create map areas, but could be modified to use map areas from one map as the input geometries/extents to recreate these areas for other maps.
... View more
08-30-2023
12:44 PM
|
1
|
0
|
852
|
|
POST
|
@John_Codd_LearnThenShare Unfortunately, this issues has not been addressed. We are working with the Maps SDK team to try to address it, but I do not have a timeline of when this will be fixed.
... View more
08-30-2023
12:36 PM
|
0
|
0
|
1930
|
|
IDEA
|
Support for geofences using buffered points and lines was released in the November 2022 release (and in Enterprise 11.1 earlier this year). https://www.esri.com/arcgis-blog/products/field-maps/field-mobility/whats-new-in-arcgis-field-maps-november-2022/
... View more
05-25-2023
09:36 AM
|
0
|
0
|
3563
|
|
POST
|
Yes, the "Make an API Call" uses the connection to generate tokens that it needs. "the token in the payload from the survey submission expires. I guess this avoids all of this?" Yes, this would be different, as the "Make an API Call" is not relying on using the token from a previous response.
... View more
05-23-2023
10:18 AM
|
0
|
0
|
2199
|
|
POST
|
Using the Survey 123 Make module is a similar process to Field Maps, but there are a few small differences. You can use the Field Maps Make an API Call module, to queryAttachments. The module will take care of generating the token for the connection. For a connection similar to below, where a sub-domain has been specified, you can then use a Make an API Call similar to the second image. This will return a list of attachments for the specified feature, which you can then iterate through and make a second API call to retrieve the attachment data (screenshot 3 below) which you can then use.
... View more
05-19-2023
03:16 PM
|
1
|
3
|
2209
|
|
POST
|
Yes, that is the URL. Since your data is not public, I cant access that URL. Are you able to (you will need to generate a token to do so)? You can message me directly, if you would prefer to talk about this out of the forums.
... View more
05-15-2023
03:13 PM
|
0
|
0
|
2188
|
|
POST
|
Hello, Are you still seeing issues? If you are still seeing issues are you able to look at the details of the webhook you are using and see if you can access the changesURL from the body? It should be an extractChanges REST API call.
... View more
05-15-2023
11:36 AM
|
0
|
2
|
2193
|
|
POST
|
Hello, A few questions to help try to determine what might be happening. Does the Microsoft 365 Email module work in any other scenario you have? Is the ArcGIS Field Maps watch feature module running after a point is added to the layer? In the scenario editor when you are testing, can you see the returned data? What does your scenario look like? Do you have other modules other than the Watch Features and MS 365 Email? In the scenario below, I am sending an email for each feature that is deleted from a layer The iterator, loops over the deleted features And the MS 365 Email module is configured like below
... View more
04-20-2023
01:09 PM
|
0
|
0
|
668
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 04-01-2025 11:40 AM | |
| 1 | 01-11-2024 04:08 PM | |
| 1 | 06-27-2024 03:06 PM | |
| 5 | 07-09-2024 01:13 PM | |
| 3 | 07-03-2024 03:58 PM |
| Online Status |
Offline
|
| Date Last Visited |
a month ago
|