|
BLOG
|
Yes, This is planned to be included with the next ArcGIS Enterprise release. (10.7)
... View more
12-12-2018
09:27 AM
|
0
|
0
|
35215
|
|
POST
|
Hi Joseph, You can't updated default values after a field has been created. You can set default values for fields when publishing or when adding new fields to a web map. -Kelly
... View more
12-12-2018
08:06 AM
|
1
|
1
|
1310
|
|
POST
|
Hi Katie Cullen and Zorba Conlen, In order to revert to symbology stored at the service level (shared from ArcMap as a Web Service), you must re-add the service to the web map. Once symbology is saved to the web map, it is saved as part of the web map and is used for symbology moving forward. If the layer is re-added, it will resume using service layer symbology as a default until different symbology is stored at the web map.
... View more
12-12-2018
08:05 AM
|
3
|
3
|
5393
|
|
POST
|
Hi Michael, The basemap sets the spatial information for the web map so is a critical part of the web map. IF a basemap is not available, the expected behaviour is that a default basemap is swapped into the existing map so that you can make edits to the webmap, correcting the errors with the initial basemap. If this isn't happening, please get in contact with Tech support. You could also consider using ago assistant to update the basemap layer, but i would recommend looking into why this isn't behaving as expected. -Kelly
... View more
12-12-2018
08:02 AM
|
2
|
0
|
1497
|
|
POST
|
Hi Zorba, Can you share some more information about your specific workflow? Are you able to share the map? Where are the editors updating the data or symbology? in a web map that you created, in a web map they created or in an application?
... View more
12-12-2018
07:58 AM
|
0
|
1
|
4938
|
|
POST
|
Hi Joe, I'd suggest either overwriting the feature layer with the new data like Katie suggested or using the append tool to add the new data to the existing dataset while filtering out your previous years data. Web maps and dashboards read the data and symbology from the item (layer item) and from the services url. If you use either overwrite or append, the itemID and service url remain the same, enabling a seamless transition once the underlying data is updated. The method you choose will really depend on the data that you want to store in ArcGIS Online, one year or multiple years.
... View more
12-11-2018
03:58 PM
|
1
|
0
|
3117
|
|
BLOG
|
Hi, It was just updated. You can find feature set doc here: Data Functions | ArcGIS for Developers -Kelly
... View more
12-11-2018
01:13 PM
|
1
|
0
|
35215
|
|
POST
|
Accessing Web AppBuilder is available if you have an ArcGIS Online account. you don't need anything specific to be enabled on your account from the MyEsri site. Do you know if your account is a member of an organization? My Esri
... View more
12-11-2018
09:26 AM
|
0
|
1
|
3302
|
|
BLOG
|
HI Alex, Thanks for the question and feedback. This functionality didn't make this release with Enterprise Logins, but is planned for an upcoming release. Will post a better timeline in the New Year. -Kelly
... View more
12-11-2018
08:16 AM
|
0
|
0
|
10508
|
|
POST
|
HI Nae Nay, Here is a blog that outlines a simple example of how to populated a pop up with intersecting feature information. https://community.esri.com/community/gis/web-gis/arcgisonline/blog/2018/12/10/overlapping-features-in-pop-ups-quick-introduction-to-using-featuresets-with-arcade -Kelly
... View more
12-10-2018
11:13 AM
|
1
|
1
|
3330
|
|
BLOG
|
With the December update of ArcGIS Online, the ability to reference other layers using Arcade Expressions in Pop-Ups was introduced. This blog is going to outline a quick example about how to create a simple intersect expression and display the results in a Pop-Up. In this example I have used 4 layers marked as authoritative in ArcGIS Online by Miami-Dade County, Florida. I want to display the Elementary, Middle and High School names which intersect with building footprints in a single pop-up. I have three layers of School Attendance Boundaries which identifies a specific school boundary which overlaps with many building footprints. The building footprint layer contains geometry information but no information about the infrastructure or zones that intersect with the building. This Web Map shows examples of the information available in these layers in 4 separate layers. Using the new Arcade FeatureSet functionality, I was able to include the Elementary, Middle and High School names in the building footprint pop up in this web map. Here are the steps to set up this simple intersecting Arcade Expressions to include in a pop-up. Add all the desired layers with information that you would like to see to a web map. Select the layer that should display the pop-up information (Building Footprint) Inspect the School Attendance Boundary layers to identify the fields that you would like to display in the Building Footprint layer Name) Select Configure Pop up and navigate to the Add Attribute Expressions Create the expression for each layer. Create a variable that returns the FeatureSet of intersecting feature attributes. var intersectLayer =Intersects(FeatureSetByName($map,"Elementary School Attendance Boundary"), $feature) Expression Values Explained: var intersectLayer – specifies the intersecting features variable name Intersects – specifies the geometry function one feature intersects the geometry of the other specified layer. FeatureSetByName – Creates a FeatureSet from a Feature Layer based on its name within a map or feature service $map,"Elementary School Attendance Boundary"– identifies that the feature set is a layer named Elementary School Attendance Boundary, within the web map. $featureis the feature that is being selected in the Building Footprint layer that provides the initial spatial information. b. Loop through the feature set created and return a specific field from the feature set: for (var f in intersectLayer){ return f.NAME } 6. Once all expressions are created, add them to the pop up configuration. 7. Disable the pop ups and potentially the visibility from the School Attendance Boundary Layers (Not required, but I think it cleans up the display, 8.Check out your pop up with information from intersecting layers. There will be more documentation, blogs and examples coming out in the next week, but try out this quick sample with simple intersecting layers and let us know if you have questions. Entire expression for a single high school name: var intersectLayer =Intersects(FeatureSetByName($map,"Elementary School Attendance Boundary"), $feature) for (var f in intersectLayer){ return f.NAME }
... View more
12-10-2018
11:08 AM
|
37
|
163
|
104111
|
|
POST
|
Check out this blog which has some instructions on how to join a table (CSV) to a polygon layer. Table to App - Part 1: Create Data You will need an ArcGIS Online subscription to use this tool, but it should get you up and running. Thanks, Kelly
... View more
12-10-2018
10:07 AM
|
1
|
1
|
2529
|
|
POST
|
Hi Daniel, The difference between the serverside implementation of group layers and the 4x JSAPI implementation of group layers is where the layers are grouped. With Dynamic Map Services, group layers are rendered on the serverside and provided to the web application as an image. This type of grouped layer is supported in the current version of ArcGIS Online as the layers are grouped before they are passed to the web application.With the 4X JSAPI, layers are grouped on the client side. If you don't have ArcGIS Server or ArcGIS Enterprise you won't be able to use dynamic services for group layers, that would be the potential issue you would run into. so it sounds like you will need to look into problematically grouping layers for the time being. -Kelly
... View more
12-10-2018
09:29 AM
|
0
|
0
|
5691
|
|
BLOG
|
HI Alex Stevenson You can do this now when inviting new members. Assigning add-on licenses is part of the set members properties workflow when inviting new members: This workflow is fully outlined in this blog article: https://www.esri.com/arcgis-blog/products/arcgis-online/administration/whats-coming-in-arcgis-online-a-fresh-new-look/ Let me know if you have any further questions, Thanks, Kelly
... View more
12-07-2018
02:36 PM
|
1
|
0
|
10508
|
|
POST
|
Hi Eric, I'd suggest getting in contact with technical support to dig into this further. Thanks, Kelly
... View more
12-07-2018
09:07 AM
|
1
|
0
|
3718
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 11-11-2016 10:09 AM | |
| 2 | 02-20-2018 04:07 PM | |
| 1 | 02-22-2018 03:18 PM | |
| 1 | 07-19-2017 09:39 AM | |
| 1 | 03-18-2019 09:32 AM |
| Online Status |
Offline
|
| Date Last Visited |
06-14-2023
06:56 PM
|