|
IDEA
|
Thank you @TonghuiMing. My HTML is pasted below using psuedo contact information. <div style="max-width:800px; margin:0 auto; padding:16px 14px; text-align:center; font-family:Poppins, Arial, sans-serif; color:#FFFFFF;">
<!-- Generic placeholder logo (fake URL) -->
<img src="https://example.com/assets/logo-placeholder.png" alt="City logo" style="max-width:160px; margin-bottom:12px;">
<div style="font-size:22px; font-weight:700; margin:0 0 10px; font-family:Oswald, Arial, sans-serif; color:#002D56;">
Welcome to the City Interactive Zoning and Future Land Use Plan Map
</div>
<div style="height:2px; background:#E9D8C2; margin:8px auto 12px; max-width:720px;"></div>
<div style="font-size:18px; font-weight:700; color:#C41230; margin:8px 0 6px; font-family:Oswald, Arial, sans-serif;">
Disclaimer
</div>
<div style="font-size:14px; margin:0 auto 8px; max-width:720px; color:#002D56;">
This map is intended for informative and educational purposes only. The data represented has been sourced from multiple entities. While the City has done its due diligence in maintaining accuracy of boundaries to the best of its abilities, it cannot guarantee all boundaries are represented as recorded with the county. Therefore, this zoning map should not be considered a legal record.
</div>
<div style="font-size:14px; margin:0 auto 14px; max-width:720px; color:#002D56;">
Please note the zoning represented and boundaries shown on the map may have changed between map updates. For questions regarding the information displayed, please contact the City Planning & Development Department.
</div>
<div style="font-size:14px; max-width:720px; margin:0 auto; color:#002D56;">
<div style="margin:6px 0;"><strong>Phone:</strong> <a href="tel:+15550100" style="color:#002D56; text-decoration:none;">(555) 0100 x156</a></div>
<div style="margin:6px 0;"><strong>Email:</strong> <a href="mailto:planning@example.org" style="color:#002D56; text-decoration:none;">planning@example.org</a></div>
<div style="margin:6px 0;"><strong>Web:</strong> <a href="https://www.example.org/planning-development" target="_blank" style="color:#002D56; text-decoration:none;">City Planning & Development</a></div>
</div>
</div>
... View more
11-03-2025
07:17 PM
|
0
|
0
|
1188
|
|
IDEA
|
@ShengdiZhang this idea is not fully implemented, the confirmation text does not have an option to change the color.
... View more
10-31-2025
10:21 AM
|
0
|
0
|
1753
|
|
POST
|
Thank you @TimWestern, so @JoshuaSoukkala to answer your post only Developer Edition has the download capability, the AGOL and Enterprise version of EB does not have the download capability.
... View more
10-31-2025
09:00 AM
|
0
|
0
|
1348
|
|
IDEA
|
I had the embed widget in a splash screen on an AGOL EB app. Within this, I had HTML to make the background color transparent. After the recent AGOL update last week, my background is now white. Please allow the option to choose the background color within the Embed widget on the Style tab, which should include a transparent selection. This would be no different than other widgets that offer background selection color.
... View more
10-30-2025
07:11 PM
|
0
|
5
|
1286
|
|
IDEA
|
Hello @Noah-Sager and @bbollin, thank you for the quick response. Updating colors/theme can work in some cases. However in the image below when you have varying symbology on top of a raster basemap, the thinner lines can become muted even though the color is a bright orange. Allowing users to adjust overall thickness of gridlines would allow more contrast against content with high degrees of color. I would like to point the larger gridlines are not hard to see, but the smaller sized grids can be hard to see.
... View more
10-30-2025
09:05 AM
|
0
|
0
|
1253
|
|
IDEA
|
Allow users to update line widths of grids to Grid Controls. Sometimes grid lines can be hard to see against aerial imagery. https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-support-GridControls.html
... View more
10-29-2025
01:16 PM
|
0
|
4
|
1311
|
|
DOC
|
Thank you for the enhancement ideas @CamMiller17 and @JeffreyThompson2 , I will look to add these in a near term update.
... View more
10-29-2025
07:35 AM
|
0
|
0
|
10515
|
|
POST
|
You may have to update the Maximum Number of Coded Domains on the parameters section of the map service. This happened to me and going from 25,000 to 100,000 resolved the issue. I would start in increments maybe by 5,000 and then check.
... View more
10-28-2025
07:15 AM
|
1
|
0
|
766
|
|
BLOG
|
The ZIP has been updated to resolve a BUG: 10/27/2025: Bug fix: When going from Draw to My Drawings with a tool selected, the tool will stay active so you can still draw graphics when on the My Drawings Tab. The ZIP has been updated to resolve this bug. The patch was to private handleTabChange in widget.tsx. If you just want to patch your existing widget and not have to download the entire zip, replace the private handleTabChange with the below code snippet. private handleTabChange = (nextTab: 'draw' | 'mydrawings') => {
if (nextTab === 'mydrawings') {
const drawings = this.snapshotDrawingsFromLayer();
this.myDrawingsRef?.current?.ingestDrawings?.(drawings);
// Stop any active drawing so clicks on My Drawings won't complete a shape
this.setDrawToolBtnState('');
try { this.sketchViewModel?.cancel(); } catch {}
// Turn off edit mode only (keep existing measurement labels visible)
this.measureRef?.current?.disableMeasurementEditing?.();
this.setState({ graphics: drawings, activeTab: 'mydrawings' });
return;
}
// Back to Draw: FIRST disable measurements synchronously
if (this.measureRef?.current) {
// Disable measurements IMMEDIATELY before any state changes
this.measureRef.current.setMeasurementEnabled?.(false);
}
// THEN clear drawing tool and update state
this.setDrawToolBtnState('');
this.setState({
activeTab: nextTab,
measurementCheckboxOn: false,
// Clear all drawing tool states
pointBtnActive: false,
lineBtnActive: false,
flineBtnActive: false,
rectBtnActive: false,
polygonBtnActive: false,
fpolygonBtnActive: false,
circleBtnActive: false,
textBtnActive: false,
currentTool: ''
});
};
... View more
10-27-2025
07:29 AM
|
4
|
0
|
13239
|
|
IDEA
|
Thank you @ShengdiZhang, this is a great addition to the newest release.
... View more
10-24-2025
07:17 AM
|
0
|
0
|
2546
|
|
POST
|
Currently there is not, your options are visible layers or visible layers within map extent like you noted. You would probably need to modify the out of the box widget with Developer Edition.
... View more
10-23-2025
10:30 AM
|
0
|
0
|
736
|
|
POST
|
Glad it worked for you @AdamGebhart, and to clarify the ownership of the widget from your original post, it is far from my creation as it was a collaboration with @JeffreyThompson2 , @RobertScheitlin__GISP and other community members input. Thank you for the notes about npm @JeffreyThompson2
... View more
10-23-2025
10:26 AM
|
0
|
0
|
258
|
|
POST
|
@AdamGebhart I usually run npm fund between npm ci and npm start, but to be honest I don't do it all the time. If I am not doing any custom widget updates, I usually don't use admin and just my regular account and run npm start on only the server folder if I want to go right into updating the Experiences in DE without needing to do any code updates.
... View more
10-23-2025
09:24 AM
|
0
|
0
|
2310
|
|
POST
|
It should not, but I would recommend downloading the ZIPs first to be safe.
... View more
10-23-2025
07:51 AM
|
0
|
0
|
2356
|
|
POST
|
@AdamGebhart you may need to run the commands again such as npm ci, npm fund, npm start on the client/server folder.
... View more
10-23-2025
07:31 AM
|
1
|
0
|
2377
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | yesterday | |
| 1 | 4 hours ago | |
| 2 | yesterday | |
| 3 | yesterday | |
| 5 | Monday |
| Online Status |
Online
|
| Date Last Visited |
14m ago
|