|
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
yesterday
|
0
|
1
|
26
|
|
POST
|
This might be of interest National Park Service Official Style - Overview
... View more
03-09-2026
01:14 PM
|
1
|
0
|
337
|
|
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
|
255
|
|
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
|
555
|
|
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
|
560
|
|
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
|
746
|
|
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
|
628
|
|
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
|
784
|
|
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
|
815
|
|
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
|
815
|
|
POST
|
Field Maps designer also has a new Map Template option I reference it in the comments of this similar community post Re: Create templates from configured Field Maps fo... - Page 2 - Esri Community
... View more
08-12-2025
02:38 PM
|
0
|
0
|
1687
|
|
POST
|
For an html popup I have found that using an arcade popup element to create the popup content works quite well. One thing to note: I have the best outcomes starting with an open <div> and finishing with closing </div>.
... View more
08-12-2025
08:57 AM
|
0
|
1
|
1152
|
|
POST
|
Update: This is working in the latest online release. Using the steps above, you can use any feature layer as a template for a new feature layer, retaining the layer definition (popup, forms, symbols, and more) in the newly created feature layer. Also, with Field Maps Designer you can create a map template from an existing map. Then create a new map using the template.
... View more
07-31-2025
05:51 AM
|
1
|
1
|
1341
|
|
POST
|
I took a look, it does work for existing features that are taken offline. The count does not update as attachments are added or removed. It only returns the count of existing attachments when one starts editing the feature. I also noticed It is not working for new features that are created whether online or offline. I see an error using the MapViewer while connected for calculating a field equal to Count(attachment($feature)) Potentially in the feature creation process the "attachment info" is not fully there until the new feature edit is finished? One difference, MapViewer will let you create the feature (submit), when there is an Arcade error. Field maps will not let you submit the feature with this error. If you can log an issue with Tech Support for this, it will help. thanks, Mark
... View more
07-21-2025
10:01 AM
|
1
|
1
|
870
|
|
POST
|
If you would like to go the HTML route using an Arcade popup element. This maps popup configuration shows a way of using Arcade to generate the HTML. Some things to note: 1. The URL access to feature attachments only works if the service is publicly accessible (shared with everyone). Privately accessible attachments require a token in the URL and currently there is not a good way to provide a token (its a security thing). 2. The Title and various text are using specific field names this is in the 'arcade html' as $feature.fieldname 3. when creating the html it should all be inside a <div> <-- this just works best. 4. If you have multiple image attachments they are stacked in the popup.
... View more
06-16-2025
11:14 AM
|
1
|
0
|
1074
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-09-2026 01:14 PM | |
| 1 | 07-31-2025 05:51 AM | |
| 1 | 09-08-2025 03:16 PM | |
| 2 | 09-03-2025 12:41 PM | |
| 1 | 03-03-2025 11:17 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|