|
POST
|
It is possible to remove the fields from the data in field maps designer.
... View more
10 hours ago
|
2
|
0
|
48
|
|
POST
|
For the new attachment form elements (such as media), all attachments with the same 'keywords' as defined in the form will be displayed. The keyword is used to match the attachment to the form element. It is possible to update keywords for existing attachments, but this can be challenging to automate if there is nothing in the existing data to determine whether the keyword should be 'inlet' or 'outlet'. Attachments are stored in a related service table, and the approach (I think) would be to update the table using python or the rest api. For file geodatabase data the table can be updated in ArcGIS Pro via standard table editing.
... View more
Monday
|
0
|
0
|
37
|
|
POST
|
There is a new attachment fields setting that goes along with the feature attachment elements in the form authoring. Take a look at it. When enabled the feature attachment elements in the form should work offline.
... View more
Thursday
|
2
|
3
|
133
|
|
POST
|
Could you store the previous days "Photographer Name" and filter it out of the list for the current day?
... View more
05-28-2026
06:20 AM
|
0
|
0
|
450
|
|
IDEA
|
You can remove the whole Windows group in the View Tab, then add a New Tab group ex. "My Windows" and add only the commands you want to it. I agree it would be nice if it were easy to remove from the existing ribbon, but it is possible to set things up the way you want it.
... View more
05-14-2026
01:48 PM
|
0
|
0
|
299
|
|
POST
|
I have experienced similar behavior. When working on the same portal item in multiple tabs or browsers, things can get out of sync if the browser cache for the specific tab is not refreshed to the currently saved state. I see this most often when I have Field Maps Designer open and the Map open in Map Viewer at the same time. If I forget to save a change or forget to reload / refresh after making a change, it's very easy to get the map (browser cache) out of sync between the two browser tabs. For example: 1. I have the same map open in Map Viewer and Field Map Designer. 2. In Field Maps Designer add a New Form Element. 3. Save the Change in Field Map Designer. 4. In Map Viewer, Zoom map to new location, Change Symbols to new colors 5. Save the Map in Map Viewer. 6. In Field Map Designer refresh / reload the web page. The form element previously added disappears. The form element was removed because I made my cartographic edits in Map Viewer using a cached, older version of the map. When I saved in Map Viewer, it overwrote the map that I had previously saved in Field Maps Designer, effectively reverting it to an older state. Had I reloaded the Map Viewer tab (web page) first, it would have picked up the changes made in Field Maps Designer. Then my cartographic edits would have been saved against the current version of the map. Working in multiple tabs with the same map or portal items can be done, but you really need to make sure you’re working with the current version of the data by ensuring the browser cache for that tab is up to date. It’s possible that you’re experiencing something different, but this really does seem like a browser caching issue. Your steps 3 and 4 don’t read like a browser cache problem, but steps 6, 7, and 8 do seem consistent with the browser cache being out of sync.
... View more
05-06-2026
09:02 AM
|
0
|
1
|
707
|
|
POST
|
This might be of interest National Park Service Official Style - Overview
... View more
03-09-2026
01:14 PM
|
1
|
0
|
632
|
|
IDEA
|
There are a couple way to do this, mentioned in the post the feature layer template approach being one you are familiar with, but also Map Templates (they were new as of June 2025). https://community.esri.com/t5/arcgis-field-maps-questions/create-templates-from-configured-field-maps-forms/td-p/1298479/page/2 ...and this blog article has a pretty good introduction to Map Templates https://www.esri.com/arcgis-blog/products/field-maps/field-mobility/whats-new-in-arcgis-field-maps-june-2025 I think they are just what you are looking for. If there is something more you want from them, let us know. thanks, mark
... View more
03-06-2026
07:47 AM
|
0
|
0
|
516
|
|
POST
|
It is possible to load Maps SDK supported data (ex. feature layers) from the layer package, but there is not a straightforward way to get the rendering information from the lyrx file and apply it, that I am aware of. Definitely a challenging situation.
... View more
01-28-2026
01:38 PM
|
0
|
0
|
1024
|
|
POST
|
One thing you could do is open the layer package in ArcGIS Pro --> create a mobile map package --> and use the mobile map package in your native app.
... View more
01-28-2026
11:15 AM
|
0
|
2
|
1029
|
|
POST
|
Perhaps you could use an Arcade popup element and use HTML tags. Something like Var Fields = [
"ID: " + $feature.COID + '<br>',
"Damage Present: " + $feature.DAMAGE
];
var vTitle = ''
If (DomainName($feature, 'FLOW') == 'No') {
vTitle = '<u>Title</u><br>' + Concatenate(Fields)
}else {
vTitle = $feature.WEATHER24
}
return {
type : 'text',
text : vTitle //this property supports html tags
}
... View more
10-08-2025
03:08 PM
|
0
|
1
|
1017
|
|
POST
|
If you have a lot of photos to add and are able to use ArcGIS Pro. The Add Attachments geoprocessing tool with a match table that contains the file path to your attachment would be an efficient way to do this. Especially if the names of your photos are easily matched to an attribute of your tree features. Attachments tools workflows—ArcGIS Pro | Documentation Generate an attachment match table—ArcGIS Pro | Documentation Add Attachments (Data Management)—ArcGIS Pro | Documentation
... View more
09-08-2025
03:16 PM
|
1
|
0
|
923
|
|
POST
|
Ah.. that explains it. Yes, you can modify the editing experience using a form. Click the configure editing button, drag the fields that you want users to edit into the form area. For single line text fields you can change it to multiline.
... View more
09-03-2025
12:41 PM
|
2
|
0
|
1086
|
|
POST
|
Hello @JasperRomero , Are you using a popup text element? I tried a simple test with Arcade popup element and Text popup element and I see that returns are accounted for in the text popup element. The Arcade popup element looks to be processed as html perhaps? if I put html tags in the string (ex. br) they are honored. Anyway, does the popup text element work for you? And this is what I typed in the form. For the Text element popup definition I have this: Mark
... View more
09-03-2025
05:51 AM
|
0
|
2
|
1117
|
|
IDEA
|
Hello @CarolineLindhe , If the editable feature layer used in multiple maps always has the same form, you could save the form to the layer using Field Maps Designer, instead of saving to the map. Keep in mind that if there is FormInfo (the definition for the form) saved in the Map and Saved in the layer. The form definition saved in the map will be the one that gets used when the Map is opened. The form information in the layer will be used when creating a new map with that layer, or creating a new layer when used as a template. Additionally, Field Maps provides a new option that will allow you to use the entire map as a template for a new map. I updated this post https://community.esri.com/t5/arcgis-field-maps-questions/create-templates-from-configured-field-maps-forms/m-p/1637952#M11209 with the basic steps. This blog announcement also explains it. https://www.esri.com/arcgis-blog/products/field-maps/field-mobility/whats-new-in-arcgis-field-maps-june-2025 -Mark
... View more
08-25-2025
09:48 AM
|
0
|
0
|
1124
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 10 hours ago | |
| 2 | Thursday | |
| 1 | 09-30-2024 01:06 PM | |
| 1 | 03-09-2026 01:14 PM | |
| 1 | 07-31-2025 05:51 AM |
| Online Status |
Offline
|
| Date Last Visited |
10 hours ago
|