|
POST
|
I do not see a place to sign up for email alerts when Esri releases a new blog article, particularly about administration blogs. Does anyone know how to sign up for these as email alerts? This would be helpful, especially about the blog posts like SAML updates for AGOL and Security Patch 2 for Portal that recently came out. https://www.esri.com/arcgis-blog/category/administration/
... View more
09-18-2024
07:08 AM
|
1
|
3
|
1541
|
|
IDEA
|
On Experience Builder Developer Edition 1.15, I copied the map layers widget from "path\to\your\ArcGISExperienceBuilder\client\dist\widgets\arcgis\map-layers" and pasted it into "path\to\your\ArcGISExperienceBuilder\client\your-extensions\widgets", followed by renaming to map-layers-custom. In the "path\to\your\ArcGISExperienceBuilder\client\your-extensions\widgets\map-layers-custom\src\runtime\widget.tsx" file starting at line 330, I updated from this: defineLayerListActions = async (event) => {
const listItem = event.item
let actionGroups = {}
listItem.actionsSections = []
if (this.props.config?.useMapWidget && this.props.config?.enableLegend && listItem.layer.legendEnabled) {
listItem.panel = {
content: 'legend',
open: listItem.layer.visible && this.props.config?.showAllLegend
}
} to this: defineLayerListActions = async (event) => {
const listItem = event.item
let actionGroups = {}
listItem.actionsSections = []
listItem.open = true
if (this.props.config?.useMapWidget && this.props.config?.enableLegend && listItem.layer.legendEnabled) {
listItem.panel = {
content: 'legend',
open: true
}
} I then added the custom widget in and the layers were expanded by default. Don't forget to update the manifest.json file on lines 2 and 3. "name": "map-layers-custom",
"label": "Map Layers Custom",
... View more
09-13-2024
01:03 PM
|
0
|
0
|
3504
|
|
POST
|
Instead of running npm ci on the client folder, through a series of searches, I have found that running npm ci --legacy-peer-deps is now required for my install due to legacy dependencies. Before that, I did do a full removal and install of 1.15.
... View more
09-10-2024
09:40 AM
|
1
|
0
|
1504
|
|
POST
|
Hello @TonghuiMing I am currently using Experience Builder Developer Edition 1.15. Currently, the web map is hosted on an internal server only, but I can share screenshots. It does not appear to be a layer visibility range issue. The three layers you see above (Recycle, Commercial, Residential) are two levels in the layer tree. The first level is the Utilities Map, followed by the Trash Services. Somehow the second level Trash Services is picking up the symbology for all 3, while each layer is not showing any symbology. Brian_McLeer_0-1725978338767.png This is the image from the application, which shows that the layers are visible but the legend for each layer stays grayed out. You can see in the portion of the web map that the blue Commercial layer's visible range is enabled. Brian_McLeer_1-1725978484802.png
... View more
09-10-2024
07:28 AM
|
0
|
0
|
2714
|
|
POST
|
I have several nested group layers in my Map Layers widget in Ex Builder DE. On the Map Layers Options, I have the Show legend turned on. When I expand the layers on the widget, the main group layer level containing all the layers has the legend working showing all the layers. Still, the individual layers within the group layer are not in the legend and the legend icon stays grayed out. Has anyone else experienced this or have a workaround? Brian_McLeer_1-1725914474732.png Below you can see all 3 layers in the legend for "Trash Services", but each layer does not show and the legend button is grayed out. Brian_McLeer_0-1725914436075.png
... View more
09-09-2024
01:43 PM
|
2
|
4
|
2775
|
|
POST
|
@FredericPoliart_EsriAU @DavidDas__GISP @ZhujingXia I have worked on David's most recent download above and modified it with the following: Allow hyperlinks to multiple URLs based on coordinates (Pictometry, Google Street View, Google Maps, Copy Lat/Long. Have the user hover and click on the map, then click on buttons to be linked out to the page. Remove Tilt/Rotation For my application, we publish in this WGS 84 / UTM zone 12N. Functionality has been added to convert from that system to Web Mercator or WGS84, which is a similar issue @ZhujingXia posted about on 10/3/23. Changed icon.svg to a map pin. Built on Experience Builder Developer Edition 1.15. Brian_McLeer_0-1725551991031.png @FredericPoliart_EsriAU @DavidDas__GISP I updated the manifest.json to include you both as authors and and updated description. I can post the updated widget to this message thread, but wanted to get your thoughts first.
... View more
09-05-2024
09:08 AM
|
3
|
16
|
7742
|
|
POST
|
The below question assumes you have deployed a custom widget, and ran npm ci, npm fund, and npm start on the client followed by server folders in Deleper Edition. Suppose you update a file within the widget, such as widget.tsx, do you need to run any npm commands on the client and/or server folder? Will refreshing the Developer Edition builder app window work? Mostly asking as it can take 5-10 minutes to run through the commands for both the client and server folders.
... View more
09-04-2024
12:21 PM
|
0
|
2
|
2575
|
|
POST
|
I was wondering the same thing, @ZhujingXia did you ever find a solution?
... View more
09-04-2024
09:40 AM
|
0
|
0
|
3448
|
|
POST
|
@Ke_Xu, I think I found the missing step. Originally, I was trying to correlate a search web map with a separate web map that I was using in the Map Widget. After adding the search layers to the map that is being used in the Map Widget, I was able to construct the steps in Experience Builder to get the pop-up to show the item being searched. 1. Add search layers to the web map, and turn off visibility. Brian_McLeer_0-1725034451859.png 2. Turn off the show in the map legend. Brian_McLeer_1-1725034500289.png 3. Enable and configure pop-ups. Brian_McLeer_2-1725034622586.png 4. In Experience Builder Developer Edition, add the search layer as a new search source from the layer source. Brian_McLeer_3-1725034787858.png 5. Under the Action tab, if needed add a newly added source to Zoom and/or Pan trigger. Brian_McLeer_4-1725034854212.png 6. Add action and framework, Select Data Records, and Select newly added search layer as Trigger data and Action data. Brian_McLeer_5-1725034933688.png 7. If needed in Layer List, uncheck the newly added search layer so it is not visible. Brian_McLeer_6-1725035008439.png Search for a parcel number, map will zoom to and open a pop-up, Brian_McLeer_7-1725035094786.png Brian_McLeer_8-1725035184127.png Reference: https://www.youtube.com/watch?v=eoNje-ZY28k&list=PLeXjHxbU5lmZW2qMTokPl0KOU_E1wrzjA&index=4
... View more
08-30-2024
09:26 AM
|
0
|
0
|
2102
|
|
IDEA
|
When on the map widget, users should be able to enter coordinates on the Initial View Custom. When you click on Modify, you can pan and zoom, but you cannot enter coordinates. This would be helpful to keep default loading extents for multiple applications the same. If an organization has multiple Experience Builder apps, keeping the default extent on all of them would help with consistency. Brian_McLeer_0-1724969639747.png Brian_McLeer_1-1724969750776.png I know that you can edit the extent under the General Settings of the item, but that does not appear to be related to the default map extent when loaded initially. Brian_McLeer_2-1724969861761.png
... View more
08-29-2024
03:18 PM
|
1
|
2
|
865
|
|
POST
|
Hi @Ke_Xu, yes, the Auto select the first result was enabled in the Search widget. Brian_McLeer_0-1724858622622.png
... View more
08-28-2024
08:24 AM
|
0
|
1
|
2151
|
|
POST
|
Thank you @sylvainhotte1, I appreciate you being open to sharing it.
... View more
08-28-2024
07:03 AM
|
0
|
0
|
2672
|
|
POST
|
I think you have to add the "" function to check for if a part is empty. // List the fields to combine
var parts = [$feature.ST_NUM, $feature.DIRPRE, $feature.FEANME, $feature.FEATYP, $feature.DIRSUF, $feature.LV_APT];
// Function to check if a value is null or empty
function IsNullOrEmpty(value) {
return value == null || value == "";
}
// Loop through the address parts, if not null or empty add them to a new array
var filteredparts = [];
for (var i in parts) {
var value = parts[i];
if (IsNullOrEmpty(value)) continue;
filteredparts[Count(filteredparts)] = value;
}
// Concatenate with a space
return Concatenate(filteredparts, " ");
... View more
08-27-2024
01:51 PM
|
0
|
1
|
3606
|
|
POST
|
This question stems from this Esri Community post. The post linked tends to relate to the search widget within the map widget and not the search widget itself. I have a series of map services within a web map that I will use in the search widget (not the Search radio button on the map widget). When a user searches one of the layers, the result they select should have a pop-up equal to how it is set in the web map such as below. Brian_McLeer_0-1724700177788.png With the article linked in this post, has anyone had any success in doing this through actions and triggers on the Search widget? Brian_McLeer_2-1724700336790.png Checklist of things I have done: - Enabled/configured pop-ups in web map. - Enabled pop-up upon feature selection on the web map in Experience Builder Developer. Brian_McLeer_1-1724700275404.png
... View more
08-26-2024
12:28 PM
|
1
|
3
|
2246
|
|
POST
|
I think I answered my own question. You can edit the HTML in the text element, but the OK button gets greyed out. You have to exit the HTML mode then click ok. Brian_McLeer_0-1724450910390.png Brian_McLeer_1-1724450941054.png Brian_McLeer_2-1724450951859.png
... View more
08-23-2024
03:09 PM
|
0
|
0
|
2735
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 2 | 2 weeks ago | |
| 2 | 2 weeks ago |
| Online Status |
Offline
|
| Date Last Visited |
5 hours ago
|