|
IDEA
|
@Stephanie_F, this looks to have been partially applied in the June 2025 update to AGOL. It is applied to the top buttons for distance/area, but not to the New Measurement or Clear Measurement buttons.
... View more
07-02-2025
03:14 PM
|
0
|
0
|
580
|
|
BLOG
|
Thank you @JasonBOCQUET. It may be possible, but I think for the intention of this widget it is meant to be kept simple by taking some aspects of the custom draw, measurement, and custom external map coordinate custom widgets and having in a context menu and putting less on the user. The option to modify how the symbology looks for text, coordinate points, and marker points is available in the settings panel of Developer Edition, so the person creating the application can change how points and text appear for the end user.
... View more
07-02-2025
09:07 AM
|
2
|
0
|
10965
|
|
BLOG
|
Thank you for export to shapefile, file geodatabase, and KML!
... View more
06-27-2025
03:37 PM
|
1
|
0
|
3851
|
|
BLOG
|
Thank you @ZachBodenner, if you watch the second video right above Developer Configuration in the main blog post this will show you where I have it deployed to my applications.
... View more
06-27-2025
12:04 PM
|
0
|
0
|
11078
|
|
POST
|
I think I found a workaround for you: 1. You cannot delete the title element, but you can set it to blank so it will hide it. 2. Use HTML text element to customize styling for title and field. Sample Code: <div style="font-family:sans-serif;">
<h3 style="color:blue;">
<strong>Title: {DISTRICT}</strong>
</h3>
<p>
The city is <span>{DISTRICT}</span> and website is <a href="" target="_blank">{URL}</a>
</p>
</div>
... View more
06-20-2025
02:27 PM
|
0
|
1
|
2344
|
|
POST
|
To get custom styling, you may need to remove the fields and rely on the HTML within the text element completely. This may also be possible with some advanced arcade using the arcade element. For the title, it looks like you cannot use HTML but you could look into advanced Arcade with some custom styling.
... View more
06-20-2025
02:15 PM
|
0
|
0
|
2345
|
|
BLOG
|
Update on 6/20/25: Add enhanced marker styling with 7 different shape options (circle, square, cross, x, diamond, triangle, pin) Add marker rotation, opacity, and X/Y offset positioning controls Add text graphics functionality with custom font controls, outlines, and background options Add support for custom coordinate systems via WKID input Add coordinate format options (decimal degrees vs degrees/minutes/seconds) Add simple marker plotting separate from coordinate markers Add comprehensive field selection for feature layers with automatic field loading Add popup display customization options (width, height, grouping, field aliases) Add real-time graphics counting in clear all option Add marker preview functionality in settings interface Add enhanced coordinate label positioning and formatting Add separate styling controls for coordinate markers vs simple markers
... View more
06-20-2025
02:06 PM
|
1
|
0
|
11154
|
|
BLOG
|
Thank you @Marshal for the feedback, I sent you a direct message to get more information.
... View more
06-20-2025
01:36 PM
|
0
|
0
|
15869
|
|
POST
|
It is in the map viewer, click on the layer you want to update pop ups for and then on the right click on pop ups. Make sure they are enabled to access the ability to add elements.
... View more
06-20-2025
12:06 PM
|
0
|
1
|
2370
|
|
POST
|
I would use HTML styling via the text element approach for styling your pop up.
... View more
06-20-2025
10:30 AM
|
0
|
3
|
2414
|
|
POST
|
Hello @YuvnaApajee_8, the widget is at the top of this thread, I reply to myself for each changelog event. If you go to page 1 of this community post and look towards the bottom, you will see it there.
... View more
06-20-2025
09:03 AM
|
0
|
4
|
1916
|
|
BLOG
|
Thank you @PierreloupDucroix, we can make a note to look into this, but my time to spend on this widget is limited now. Thank you for the eDraw widget, that was motivation to create this widget as users in my organization did not like that import/export/save function went away with default EB draw widget. Used that as motivation and a framework to work with @JeffreyThompson2 to build upon the custom draw widget.
... View more
06-17-2025
07:18 AM
|
3
|
0
|
15950
|
|
IDEA
|
Thank you @ZhenZhang22, that is a very useful feature. I think where adding a grid element would stand out vs this function is that someone creating an application would be able to snap elements/widgets to a set line vs a temporary line for the tool above.
... View more
06-16-2025
10:18 AM
|
0
|
0
|
782
|
|
POST
|
I get issues in the console log when looking at your URL, it seems like there may be sharing settings that need updated beyond the print widget.
... View more
06-16-2025
10:06 AM
|
1
|
3
|
1251
|
|
POST
|
I had to migrate some code from WAB to EB, and below is a snippet of my Arcade (most may not be relevant to you, but the last else may be). The workflow I use is is to add an Arcade element to the pop-up. // Function to format URL fields
function formatURL(label, value) {
var lowerValue = Lower(Text(value));
// Handle Trimview and other special cases
if (Left(lowerValue, 4) == "map/" || Left(lowerValue, 4) == "poa/" || Left(lowerValue, 4) == "ord/" || Left(lowerValue, 4) == "phot" || Left(lowerValue, 4) == "fldr" || Left(lowerValue, 4) == "ldoc") {
return "<b>" + label + ":</b> <a target='_blank' href='http://your.org.com/?=" + value + "'>Click here for more info.</a><br/>";
} else if (Left(lowerValue, 7) == "http://" || Left(lowerValue, 8) == "https://") {
return "<b>" + label + ":</b> <a target='_blank' href='" + value + "'>Click here for more info.</a><br/>";
} else if (Right(lowerValue, 4) == ".pdf" || Right(lowerValue, 5) == ".xlsx") {
// Handle PDF and Excel (.xlsx) files
return "<b>" + label + ":</b> <a target='_blank' href='http://your.org.com/" + value + "'>Click here for more info.</a><br/>";
} else if (Find("pavement\\", lowerValue) != -1) {
// Handle cases where URL is like "pavement\pavement2022\..."
return "<b>" + label + ":</b> <a target='_blank' href='https://your.org.com/" + value + "'>Click here for more info.</a><br/>";
} else if (Find("resdoc/", lowerValue) != -1) {
// Handle cases where URL is like "resdoc/6200"
return "<b>" + label + ":</b> <a target='_blank' href='https://your.org.com/" + value + "'>Click here for more info.</a><br/>";
} else {
// Fallback to URL format for any other URL-like fields
return "<b>" + label + ":</b> <a target='_blank' href='http://your.org.com/" + value + "'>Click here for more info.</a><br/>";
}
}
... View more
06-12-2025
08:12 AM
|
0
|
1
|
1164
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 7 hours ago | |
| 1 | Tuesday | |
| 1 | yesterday | |
| 2 | Tuesday | |
| 3 | Tuesday |
| Online Status |
Online
|
| Date Last Visited |
an hour ago
|