IDEA
|
@Jianxia , in addition to a freehand tool, I REALLY need to have the DD point measurements allow for up to 6 decimal places. There's currently no way to customize this. We have people who need that for reporting purposes. Thanks for your consideration.
... View more
11-01-2024
10:35 AM
|
0
|
0
|
98
|
POST
|
We have hyphenated street names (for example "SMITH-ENKE"). Thank you, @CiaraRowland-Simms and @JeffThomasILM, your scripts have helped me a lot! I've worked out handling the hyphenated streets. I hope this helps out others. var dir = $feature.PRD + " "
var type = Proper($feature.STS)
var post = " " + $feature.POD
var stn = $feature.STN
if (!IsEmpty(stn)) {
var words = Split(stn, " ")
var hyphen = Split(stn, "-")
var street = ""
if (hyphen[0] != stn) {
street += Proper(hyphen[0]) + "-" + Proper(hyphen[1]) + " ";
return concatenate([dir, street, type, post])
} else {
for (var i in words)
if (Left(words[i], 2) == "MC") {
street += upper(words[i][0]) + lower(words[i][1]) + upper(words[i][2]) + lower(right(words[i], count(words[i]) - 3)) + " ";
} else {
street += iif(IsNan(number(words[i][0])), proper(words[i]), lower(words[i])) + " ";
}
return concatenate([dir, street, type, post])
}
} else { return "";
}
... View more
08-07-2024
02:11 PM
|
1
|
0
|
144
|
IDEA
|
Since Arcade is fairly new, I think there needs to be a Community just for Arcade and scripting with Arcade. It's very difficult to figure out the syntax, even with the "playground" and reference.
... View more
08-02-2024
03:10 PM
|
2
|
2
|
419
|
POST
|
@JasminePrater, you may need to install a patch or patches to your portal/enterprise server. Check out this link. https://support.esri.com/en-us/patches-updates . I hope this helps.
... View more
07-31-2024
02:04 PM
|
0
|
1
|
459
|
POST
|
This morning I heard about an upcoming change to Google Chrome and Microsoft Edge browsers that will likely impact ArcGIS Enterprise versions 11.2 and earlier. Here's a URL that goes into a little more detail (https://cloudpointgeo.com/blog/2024/6/25/an-arcgis-enterprise-users-guide-to-the-impact-of-google-chrome-and-microsoft-edge-127-updates). Anyway, have you tried using a different browser to see if that changes anything?
... View more
06-27-2024
12:35 PM
|
1
|
1
|
1359
|
POST
|
Yes, you can enable highlighting in ExB (at least in Enterprise 11.1 and later). On the left panel with the Page tab, and make sure your map is selected. Then on the right side at the very bottom of the Map Content pane, in the Tools portion, make sure the Select is toggled "on". Next in that same pane at the very bottom in the section labeled Options, you can set your highlight colors. I hope this helps.
... View more
06-27-2024
11:25 AM
|
0
|
1
|
782
|
POST
|
@DanCopKac , unfortunately, that functionality isn't available. See https://community.esri.com/t5/arcgis-experience-builder-questions/add-text-to-the-draw-markup-widget/m-p/1247958 Here's a link to the functionality matrix for widgets in ExB vs. WAB https://community.esri.com/t5/arcgis-experience-builder-documents/individual-widget-functionality-matrix-between-web/ta-p/1396880
... View more
06-11-2024
03:59 PM
|
0
|
0
|
526
|
POST
|
@TonghuiMing, I'm using the Button Widget, but when one of my test users clicks on the button, nothing happens, and I have the app/experience shared with everyone, which is everyone behind our firewall. When I, as the developer, clicks on the button, I my Outlook opens up a new email, as expected. We are using Enterprise Experience Builder 11.0. This is the resource that I used for guidance (https://doc.arcgis.com/en/experience-builder/11.0/build-apps/add-widgets.htm#ESRI_SECTION1_0F7788FDC39040CC8B969DB036C354AA) Is it possible that I don't have something set up correctly? Thanks for whatever assistance you can offer.
... View more
05-20-2024
10:03 AM
|
0
|
0
|
375
|
POST
|
My users already had that in our old WAB! Additionally, a side panel for all pop-up results mean that you're able to see the feature below, whereas the actual pop-up covers/obscures the feature.
... View more
05-17-2024
01:44 PM
|
1
|
0
|
1063
|
IDEA
|
I need a similar behavior where all pop-up results show up in a side panel. Is that too much to ask?
... View more
05-17-2024
01:31 PM
|
0
|
0
|
442
|
IDEA
|
My users EXPECT to be able to add text with the draw widget. Additionally, for ease of updating the "experience" app, we can't use developer/custom widgets.
... View more
05-17-2024
10:46 AM
|
0
|
0
|
930
|
IDEA
|
We are running ArcGIS Enterprise version 11.0. I'm working on updating our WAB apps. As I am setting up the Search Widget, I want my users to see 4 display fields ([AddNum] [PreDir] [Stn] [SufType]), but the fields are divided by commas. Is there a way to have the display fields NOT be divided by commas? I would like to be able to format the display results like in WAB where you can see the info as a short sentence or display fields with a choice of separators, such as <space>, <colon>, <comma>, or <tab>.
... View more
05-17-2024
10:44 AM
|
2
|
0
|
248
|
POST
|
We are running ArcGIS Enterprise version 11.0. I'm working on updating our WAB apps. As I am setting up the Search Widget. I want my users to see 3 display fields, but the fields are divided by commas. Is there a way to have the display fields NOT be divided by commas? Am I missing something? Thanks for any help.
... View more
05-15-2024
12:17 PM
|
0
|
1
|
335
|
DOC
|
Hi, @Luke_Pinner. I tried steered to C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\python.exe and did the rest of the settings as noted above. However, PyCharm pointed at whatever ArcGIS Pro uses (3.7 I think). I still get errors with PyCharm. I have not problems using the python window in Pro. So I'm frustrated. I don't use or have a cloned environment, but I'll look into. If I get any success with PyCharm, after the eclipse, I'll leave a comment.
... View more
04-07-2024
12:52 PM
|
0
|
0
|
3664
|
DOC
|
Thanks, @BlakeTerhune . That worked, but PyCharm says "No module named arcpy" on my first line "import arcpy". PyCharm interpreter is set for 2.7 import arcpy
# Set the workspaces
aprx = r"P:\GIS_Workspace\AZ811andPython\AZ811_Task.aprx"
# aprx = arcpy.mp.ArcGISProject("CURRENT")
arcpy.env.overwriteOutput = True
# It would be better if I could just have the email copied into an input field in a task or toolbox.
tbl = r"P:\GIS_Workspace\AZ811andPython\AZ811_Python.gdb\tempEmailText"
field0 = ['Ticket']
field1 = ['Email_txt']
with arcpy.da.SearchCursor(tbl, field0) as tCursor:
for row in tCursor:
myTicket = u'{0}'.format(row[0])
az811txt = "AZ811Ticket" + myTicket + ".txt"
tktPath = "P:\\GIS_Workspace\\AZ811andPython\\AZ811_emails\\"
az811File = tktPath + az811txt
del tCursor
with arcpy.da.SearchCursor(tbl, field1) as eCursor:
for row in eCursor:
email = u'{0}'.format(row[0])
# Write email to a text file
with open(az811File, 'w') as f:
f.writelines(email.replace('\n', ''))
del eCursor .
... View more
04-04-2024
11:36 AM
|
0
|
0
|
3747
|
Title | Kudos | Posted |
---|---|---|
1 | 08-07-2024 02:11 PM | |
2 | 08-02-2024 03:10 PM | |
1 | 06-27-2024 12:35 PM | |
1 | 05-17-2024 01:44 PM | |
2 | 05-17-2024 10:44 AM |
Online Status |
Offline
|
Date Last Visited |
a week ago
|