IDEA
|
I also don't understand why Esri documentation says that Microsoft Azure Database for PostgreSQL (Flexible Server) is supported since it doesn't allow superuser permissions. My understanding is that superuser status is required to drop end user connections to the db for maintenance purposes. Are there extensions that can be enabled that would grant these permissions without requiring superuser status?
... View more
04-28-2023
09:00 AM
|
0
|
0
|
4121
|
POST
|
Is it possible to populate an attribute field with time data taken from a tracking layer? Specifically, can you populate a hydrant flush time field by measuring the time spent standing next to the hydrant?
... View more
02-14-2023
10:35 AM
|
0
|
1
|
916
|
POST
|
I'm also experiencing this problem. I just updated from 2.9.x to 3.0.2 and that's when it started for me.
... View more
10-03-2022
03:22 PM
|
1
|
0
|
10357
|
POST
|
The Bug report linked above says this was fixed in version 2.6 but I'm still having this issue in 2.9. Esri, please fix this!
... View more
09-06-2022
10:47 AM
|
0
|
2
|
4811
|
POST
|
I'm also having this same problem. Making the hub group publicly visible did not work for me. Current Group settings: [Group] Content - Viewable by everyone (public); Membership for my organization only [Group] Core Team - Viewable by all organization members; Membership for my organization only Hub site: https://planning-dept-giffels-webster.hub.arcgis.com/ The apps underlined in red in the attached image are located on other AGO sites and are shared publicly but do not open from my hub. They all display the following error: "Page Not Found. This page may have been moved or deleted. Try searching for it from the homepage."
... View more
06-27-2022
10:23 AM
|
0
|
0
|
3651
|
IDEA
|
It would be really helpful to be able to choose how my text is aligned in the new Story Maps. Right now, all content block text is automatically aligned to the left, with no option to center text or align it to the right. I know that centering is an option for Quote blocks, but that changes the formatting of my text to match the title text, not paragraph text, so it looks out of place. This is not a good enough work around.
... View more
08-05-2021
07:01 AM
|
14
|
4
|
2621
|
IDEA
|
If you are using hosted feature layers on AGO, you can go to the item details page, click Visualization, and edit the pop-up there. This formatting will be preserved for all future maps that the layer is added to. If you're using Enterprise, you can format pop-ups in Pro before publishing as a service. I hope this helps.
... View more
06-11-2021
10:47 AM
|
0
|
0
|
2168
|
POST
|
This seems like a huge oversight to me too. For now, I still open the map in Map Viewer Classic and edit the pop-up HTML there. Then I can reopen the map in the new Map Viewer and finish my formatting.
... View more
06-11-2021
10:39 AM
|
0
|
0
|
1096
|
POST
|
Thank you for continuing to assist with this problem. The relationship with each table is 1:1. How can I send you the data? It is not public data but since you work for Esri, I can probably share it with you for support.
... View more
06-01-2020
08:43 PM
|
0
|
4
|
2571
|
POST
|
Xander Bakker, I'm taking a closer look at your two scripts and they appear the same. How do I get it to return a list of all services == "Y" and not just the first? Also, and this could just be because I'm a n00b and don't understand, but can I really define flds using just ["field_name"] without naming a source when those fields are in a related table? (See lines 8 & 37 above.)
... View more
05-29-2020
12:48 PM
|
0
|
6
|
2571
|
POST
|
That looks good but it's not returning any result for me. When I test the script in the popup configuration, I get this: But when I click on features in the map, the popup is blank - no text at all.
... View more
05-29-2020
09:20 AM
|
0
|
8
|
2571
|
POST
|
Thanks Xander Bakker. But I do need all services to be returned for both Engineering and Planning. Some client communities are clients of both departments.
... View more
05-28-2020
07:02 PM
|
0
|
10
|
2571
|
POST
|
Disclaimer: I'm fairly new to Arcade. Data: I have three data layers in an AGO web map - a polygon layer of municipalities, and two related tables. There's two fields in the municipality table indicating whether or not that municipality is a certain type of client (EngineeringClient and PlanningClient.) There is a corresponding related table for each client type with binary (Y/N) fields for each type of service that could potentially be offered. I currently have the popup configured to read each of those two fields in the polygon layer and return a statement that the community is a client if either returns true. Problem: I want my code to identify municipalities for which a client type is true, then iterate through all of the service fields and return the field name for all that have a Y for that record. I have defined a FeatureSet for each related table to narrow the fields down to just the services. What I would like to do: Code: // define engineering and planning clients var Eclient = $feature.ENGINEERING; var Pclient = $feature.PLANNING; //define a variable var name = $feature.NAME // define a table of engineering services var Eserv = (FeatureSetByRelationshipName($feature,"Engineering_2020", ["PLANREVIEW", "WATER", "SANITARY", "STORM", "ROAD", "WATERTREATMENT", "GIS", "ASNEEDED"], false); // define a table of planning services var Pserv = FeatureSetByRelationshipName($feature,"Planning_2020", ["CodeBook", "DevelopmentGuidebook", "PublicFacilitation", "MasterPlan", "RecPlan_Grants_Other", "DistrictStudies_Plans", "TIFPlan", "RetainerService", "HourlyServices", "Website", "ZoningAmendments", "StreetScapeDesign", "Wayfinding", "FormBasedCodes"], false); // iterate through engineering services and print result if (Eclient == "Y"){ for (var i in eServ){ if (i.PLANREVIEW == "Y"){ return 'Plan Review' } else { return "" } if (i.Field_Name == "Y") { return "Field Name" } else { return "" } } }; With the code repeating IF statements for all service fields. Then it would run through all of the Planning services as well once we get the syntax right on the first part. The problem is that multiple IF statements require using a CONTINUE statement, which breaks the function when I specify a RETURN. So the workaround I'm currently using requires multiple expressions. What I'm actually doing: Code in use: // define variable var name = $feature.NAME //filter to record var eService = Filter(FeatureSetByName($datastore,"Engineering_2020"),"NAME LIKE '%"+name+"%'") // iterate through engineering services and print result for (var i in eService){ if (i.PLANREVIEW == "Y"){ return TextFormatting.NewLine + 'Plan Review' } } This is then repeated as a separate expression for each service type, and concatenated through the custom attribute display. Engineering Services:{expression/expr1}{expression/expr2}{expression/expr3}{expression/expr4}{expression/expr5}{expression/expr6}{expression/expr7}{expression/expr8} Planning Services: {expression/expr10}{expression/expr11}{expression/expr12}{expression/expr13}{expression/expr14}{expression/expr15}{expression/expr16}{expression/expr17}{expression/expr18}{expression/expr19}{expression/expr20}{expression/expr21}{expression/expr22}{expression/expr23}{expression/expr24} Does anyone know how to write this more efficiently? TIA
... View more
05-28-2020
11:37 AM
|
0
|
13
|
3971
|
POST
|
I need to create a custom basemap for use in AGO. It needs to be highly stylized, and I've gotten pretty good with ArcGIS Pro so I created my map there. Data: This is a basemap that I will eventually need to use again, for multiple clients (i.e. multiple municipalities) over a significant span of time. To address that issue, I pulled all of my data layers from open source feature services. They're mostly coming from the State of Michigan, with a couple from SEMCOG (regional entity), and a couple of counties. This way my data layers will stay up to date for a large geographic region. I might have to recreate a tile package on occasion, but the Pro project will not need to be updated. Geoprocessing result 1: I tried running the "Create Map Tile Package" geoprocessing tool in Pro. The tool technically succeeded, but with multiple warnings of "Layer's spatial reference differs from the runtime content's target spatial reference." The resulting tile package can be added to a map, but is extremely grainy and not all layers show up. Upon investigation, the feature services that I'm referencing use a combination of FOUR different reference systems. I did some research to find a solution and came across this information that suggests feature services can be reprojected. However, I'm not a programmer, so I don't totally follow how this would work. And is it only an option for Esri-hosted services from the Living Atlas, or does it apply to all services shared via and enterprise server environment? Geoprocessing result 2: I decided that there could possibly be some complicating factors in my data - I had a visibility range set on some layers and there were additional layers in my table of contents that were turned off. So I removed all extra data layers and removed my visibility restrictions. I ran the Create Map Tile Package tool again and it ran for just over 10 hours before completing with the same warnings. This time the resulting output does not display any visible features. The only difference in the tool settings is that I increased the Compression Quality from 75 to 100. Question 1: Is it really even possible to change the spatial reference of a web feature service hosted by another entity? Question 2: Is the spatial reference really my problem when it comes to display quality, or am I missing something else?
... View more
07-24-2019
05:58 AM
|
1
|
0
|
2085
|
Title | Kudos | Posted |
---|---|---|
1 | 06-11-2025 10:16 AM | |
3 | 03-24-2025 01:26 PM | |
1 | 07-24-2019 05:58 AM | |
1 | 09-25-2023 08:44 AM | |
5 | 09-08-2023 12:12 PM |