Mit dem Dezember-Update von ArcGIS Online wurde die Möglichkeit eingeführt, andere Layer mithilfe von Arcade-Ausdrücken in Pop-Ups zu referenzieren. Dieser Blog wird ein kurzes Beispiel darstellen, wie man einen einfachen Schnittmengen-Ausdruck erstellt und die Ergebnisse in einem Pop-Up anzeigt.<\/P>
<\/P>
In diesem Beispiel habe ich 4 Layer verwendet, die als autoritativ in ArcGIS Online von Miami-Dade County, Florida<\/A> gekennzeichnet sind. Ich möchte die Elementary<\/A>, Middle<\/A> und High School <\/A>-Namen anzeigen, die mit building footprints<\/A> in einem einzigen Pop-up schneiden. Ich habe drei Layer von Schulbezirksgrenzen, die einen bestimmten Schulbezirk identifizieren, der sich mit vielen building footprints überschneidet. Der building footprint-Layer enthält Geometrieinformationen, aber keine Informationen über die Infrastruktur oder Zonen, die sich mit dem Gebäude schneiden.<\/P>Diese Web Map<\/A> zeigt Beispiele der in diesen Layern verfügbaren Informationen in 4 separaten Layern.<\/P><\/P><\/P>Mit der neuen Arcade FeatureSet-Funktionalität konnte ich die Elementary-, Middle- und High School-Namen im building footprint-Pop-up in dieser Web Map<\/A> einfügen. <\/P><\/P><\/P><\/P>Hier sind die Schritte, um diesen einfachen Schnittmengen-Arkade-Ausdruck für ein Pop-up einzurichten.<\/P>Fügen Sie alle gewünschten Layer mit Informationen, die Sie sehen möchten, zu einer Web Map<\/A> hinzu.<\/P><\/LI>Wählen Sie den Layer aus, der die Pop-up-Informationen anzeigen soll (Building Footprint)<\/P><\/LI>Untersuchen Sie die Schulbezirksgrenzen-Layer, um die Felder zu identifizieren, die Sie im Building Footprint-Layer-Namen anzeigen möchten)<\/P><\/LI>Wählen Sie "Pop-up konfigurieren" und navigieren Sie zu den Attributausdrücken hinzufügen<\/A><\/P><\/LI>Erstellen Sie den Ausdruck für jeden Layer.<\/P>Erstellen Sie eine Variable, die das FeatureSet der sich schneidenden Feature-Attribute zurückgibt.<\/P>var intersectLayer =Intersects<\/A>(FeatureSetByName($map,"Elementary School Attendance Boundary"), $feature)<\/P><\/BLOCKQUOTE>Erklärung der Ausdruckswerte:<\/P>var intersectLayer<\EM> <\STRONG>– gibt den Variablennamen für die sich schneidenden Features an<\P><\p style=\"margin-left: .25in;\">Intersects <\EM>– gibt an, dass eine Geometriefunktion verwendet wird, bei der ein Feature die Geometrie des anderen angegebenen Layers schneidet.<\p style=\"margin-left: .25in;\">FeatureSetByName – Erstellt ein FeatureSet aus einem Feature-Layer basierend auf dessen Namen innerhalb einer Karte oder eines Feature-Service<\p style=\"margin-left: .25in;\">$map,"Elementary School Attendance Boundary" – Identifiziert, dass das FeatureSet ein Layer namens Elementary School Attendance Boundary innerhalb der Web Map ist.<\p style=\"margin-left: .25in;\">$feature ist das Feature, das im Building Footprint-Layer ausgewählt wird und die anfänglichen räumlichen Informationen liefert.<\p style=\"margin-left: .25in;\"><\p> b. Durchlaufen Sie das erstellte FeatureSet und geben Sie ein bestimmtes Feld aus dem FeatureSet zurück:<\p> for (var f in intersectLayer){ return f.NAME}6. Sobald alle Ausdrücke erstellt sind, fügen Sie sie zur Pop-up-Konfiguration hinzu.7. Deaktivieren Sie die Pop-ups und möglicherweise auch die Sichtbarkeit der Schulbezirksgrenzen-Layer (nicht erforderlich, aber ich denke, es bereinigt die Anzeige).8.Schauen Sie sich Ihr Pop-up mit Informationen aus sich schneidenden Layern an.Es werden in der nächsten Woche weitere Dokumentationen, Blogs und Beispiele veröffentlicht. Probieren Sie dieses schnelle Beispiel mit einfachen sich schneidenden Layern aus und lassen Sie uns wissen, wenn Sie Fragen haben.Gesamter Ausdruck für einen einzelnen High School-Namen:
Diese
Mit der neuen Arcade FeatureSet-Funktionalität konnte ich die Elementary-, Middle- und High School-Namen im building footprint-Pop-up in dieser
Hier sind die Schritte, um diesen einfachen Schnittmengen-Arkade-Ausdruck für ein Pop-up einzurichten.<\/P>
Fügen Sie alle gewünschten Layer mit Informationen, die Sie sehen möchten, zu einer
Wählen Sie den Layer aus, der die Pop-up-Informationen anzeigen soll (Building Footprint)<\/P><\/LI>
Untersuchen Sie die Schulbezirksgrenzen-Layer, um die Felder zu identifizieren, die Sie im Building Footprint-Layer-Namen anzeigen möchten)<\/P><\/LI>
Wählen Sie "Pop-up konfigurieren" und navigieren Sie zu den
Erstellen Sie den Ausdruck für jeden Layer.<\/P>
Erstellen Sie eine Variable, die das FeatureSet der sich schneidenden Feature-Attribute zurückgibt.<\/P>
var intersectLayer =
Erklärung der Ausdruckswerte:<\/P>
var intersectLayer<\EM> <\STRONG>– gibt den Variablennamen für die sich schneidenden Features an<\P><\p style=\"margin-left: .25in;\">Intersects <\EM>– gibt an, dass eine Geometriefunktion verwendet wird, bei der ein Feature die Geometrie des anderen angegebenen Layers schneidet.<\p style=\"margin-left: .25in;\">FeatureSetByName – Erstellt ein FeatureSet aus einem Feature-Layer basierend auf dessen Namen innerhalb einer Karte oder eines Feature-Service<\p style=\"margin-left: .25in;\">$map,"Elementary School Attendance Boundary" – Identifiziert, dass das FeatureSet ein Layer namens Elementary School Attendance Boundary innerhalb der Web Map ist.<\p style=\"margin-left: .25in;\">$feature ist das Feature, das im Building Footprint-Layer ausgewählt wird und die anfänglichen räumlichen Informationen liefert.<\p style=\"margin-left: .25in;\"><\p> b. Durchlaufen Sie das erstellte FeatureSet und geben Sie ein bestimmtes Feld aus dem FeatureSet zurück:<\p> for (var f in intersectLayer){ return f.NAME}
var intersectLayer =Intersects(FeatureSetByName($map,"Elementary School Attendance Boundary"), $feature)for (var f in intersectLayer){ return f.NAME}
Hi Kelly Gerrow ,
Thanks for sharing this blog! Any idea when the online help of ArcGIS Arcade | ArcGIS for Developers will reflect the new features in version 1.5 ? At this moment it is still showing version 1.4 (July):
Hi,
It was just updated. You can find feature set doc here:
Data Functions | ArcGIS for Developers
-Kelly
Great, thank you Kelly!
I'm assuming this isn't available in Portal yet?
John,
That would be No. See this release info link:
About release versions—Portal for ArcGIS | ArcGIS Enterprise
I suspect that this will be included in the March release of ArcGIS 10.7.
Thanks. Just determining a route to proceed with.
Yes, This is planned to be included with the next ArcGIS Enterprise release. (10.7)
Check out this blog by Paul Barker about Feature Sets:
What’s new with Arcade: Taking a stroll through FeatureSets (Part 1)
I just posted another document on these new functions here: https://community.esri.com/docs/DOC-12773-using-featuresetby-functions-in-arcade-to-drill-down-to-other-layers-and-tables
Is it also possible to use the position off the mouseclick instead off $feature within the Intersects function?
I don't think that is possible (at least I haven't seen a functionality exposed in Arcade that does that. Could you explain a little better what you would like to achieve?
Thank you, Xander. I was able to use the negative buffer example you provided in your blog - very helpful! Also, I created an if... else to determine if more than one polygon was intersected and return different expressions.
var buff = Buffer($feature,-10,'feet')var intersectsLayer = Intersects(FeatureSetByName($map,"Zoning"),buff)var intcount = Count(intersectsLayer)var expr = ''if(intcount>1) { expr = 'Multiple regulations apply. Contact appropriate Planning Department.'}else { for(var f in intersectsLayer){ var zone = f.ZONING expr = Proper(zone) }}return expr
You could also return multiple values by iterating and adding to the expression before returning it, but the lack of a new line capability in AGOL makes this unworkable for me.
Hi Heather Widlund ,
Great to hear that you successfully made use of the new Arcade functions! Please post a screenshot of the result.
Actually the "TextFormatting.NewLine" works in the pop-up and you can create a new line for each entry as show below:
The document you referenced Using FeatureSetBy functions in Arcade to drill-down to other layers and tables shows how you can do this.
I was led astray by old documentation, I guess - not the first time. Thanks for the tip! I decided not to do the multiple results for other reasons, but here are my two pop-ups, consisting of two expressions drilling down from one polygon layer to another.
Is it safe to say that this functionality does not work if the web map contains ArcGIS Enterprise "Map Image Layers" (formerly known as ArcGIS Server Dynamic Map Services)? I tried setting it up with those in the web map and I was not able to access the Global "$map" entity. As a result the Arcade Expression does not work. But when I add hosted feature layers from ArcGIS Online to the web map it does work. I also assume this would work with an ArcGIS Enterprise feature layer, but I'll have to wait to test that in the future when we have the on-site Portal set up.
I tried the same thing. It doesn't work with Map Image Layers. I haven't tried it with hosted Enterprise feature layers.
When I attempt to create an expression, similar to the example, I receive this error... Any ideas as to why? AGOL, not portal.
That's the error I got when I tried to use a source that was not a hosted feature layer (it was a map image layer published from ArcGIS Server). It doesn't have an object $map because it's not the right kind of source.
That is also the same error I encountered when I used a map image layer from ArcGIS Server. Error did not happen when using a hosted feature layer from AGOL.
The expression will work for AGS layers if you register the individual layers in your AGS map service as feature layers in AGOL (by their map index number). Then add the registered feature layers to your web map. The globals for $map, $feature, $layer, and $datastore will appear in the expression builder.
Hope that helps
Ned
Hi all,
This is exciting stuff! I'm still fairly new to Arcade. Can anyone tell me if these Arcade Expressions with FeatureSets will work in Collector? If they will work in Collector, will they work in an offline Collector application that has syncing enabled?
I have some end users that could really use some of this functionality to quickly determine some summary info while "disconnected" in the field.
Thanks!
Ken
I just did a small test on Collector (Aurora, iPad) and it seems that there is still not full support for Arcade. I do expect that the new functions will be supported in the future.
I tried this and it did not seem to work for me. Perhaps it is a version issue? I am using a really old AGS stack at the moment (AGS 10.3.1, Enterprise GDB in SQL Server 2008 R2). Out of curiosity what version are you running, Ned?
This is just SUPER! This ability is very much appreciated!
It does not appear that the Near Me widget in Web AppBuilder supports this capability yet. Is this in fact the case? We like to use the Near Me widget to lookup locations and any intersecting features, but it doesn't seem like the Arcade expressions want to print results in the Near Me resulting popup configuration.
Kyle,
My tests confirm your findings. My group uses the Near Me widget in a similar fashion so this is a significant limitation for us too.
Any thoughts or potential work around ideas from ESRI Staff?
Thanks
Due to performance issues I guess this functionality has been limited. You can however do a field calculation and use the Arcade functions to create a new field and that one will be available in all the widgets. The donwside is that the values in the new field will not update when a feature changes or new features are created.
Kyle Wikstrom Ned Cake This is a known issue with Near Me right now. We're planing to include a fix in the next release of WebAppbuilder/ArcGIS Online.
-Allison
Sounds Great Allison!
Thanks for the quick response. Will the fix find its way into the WAB Developer Edition also?
Yes, it will.
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registrieren Sie ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.