IDEA
|
Hi, this doesn't require JS and is built on the available templates and widgets. Here's a description for the steps required to build a basic Web AppBuilder app, if you're having trouble with one of the items let me know.
... View more
01-05-2019
09:00 PM
|
1
|
0
|
258
|
POST
|
You can create a new layer view, then create a different editing template for that new view. Within the editing template, you can then define a different default value.
... View more
01-03-2019
01:31 PM
|
0
|
0
|
93
|
POST
|
Thank you Xander Bakker, I eventually got it to work. Some background - I was trying to have a collector url open the same map in collector, and create a new feature while passing both a location and a specific attribute from a selected feature in one feature layer, to a new feature in a different feature layer. One problem was that for some reason my arcade script for Lat/Long conversion, which worked fine for survey123, and was also successfully running using the arcade "test", was not working for collector, not sure why, so I used your lat/lon conversion expression which worked great, thank you! The other problem was that I didn't correctly build the HTML URL encoding which is required for the collector URL (unlike the survey123 scheme) which was a little bit tricky. The following arcade expression works for me in the "new" (aurora) collector, hope it's helpful to someone out there because I was not able to find allot of documentation for the collector URL: function MetersToLatLon ( x , y ) { // Converts XY point from Spherical Mercator EPSG:900913 to lat/lon in WGS84 Datum // Fuente: http://www.maptiler.org/google-maps-coordinates-tile-bounds-projection/ var originShift = 2.0 * PI * 6378137.0 / 2.0 ; var lon = ( x / originShift ) * 180.0 ; var lat = ( y / originShift ) * 180.0 ; lat = 180.0 / PI * ( 2.0 * Atan ( Exp ( lat * PI / 180.0 ) ) - PI / 2.0 ) ; return text ( lat + "," + lon ) ; } var latlon = MetersToLatLon ( Geometry ( $feature ) . X , Geometry ( $feature ) . Y ) ; var url = "arcgis-collector://?itemID=07d4865e6dfa433f8a6507fca71e94e6¢er=" + latlon url = url + "&featureSourceURL= https://services.arcgis.com/pGoeHmYZOCXOU5IQ/arcgis/rest/services/Water_Utility_Map_Change_Request/FeatureServer/3 " url = url + "&featureAttributes=%7B%22assetID%22:%22" + $feature . assetID + "%22%7D" return url
... View more
12-27-2018
09:00 PM
|
1
|
2
|
301
|
POST
|
The following URL successfully invokes the Collector app to create a new point in my map with a fixed pair of coordinates: arcgis-collector://?itemID=07d4865e6dfa433f8a6507fca71e94e6¢er=35.666666,-120.66666 Does anyone know how I can have this URL built so that it passes the coordinates based on an existing (selected) feature? The following two don't seem to work and I can't find documentation for this (Found this and this) arcgis-collector://?itemID=07d4865e6dfa433f8a6507fca71e94e6¢er=%22{lat}%22,%22{lon}%22 arcgis-collector://?itemID=07d4865e6dfa433f8a6507fca71e94e6¢er=%22${lat}%22,%22${lon}%22
... View more
12-24-2018
08:19 PM
|
0
|
5
|
1528
|
IDEA
|
Agreed, problem manager is limited in other ways as well, I too turned back to WAB. The following worked best for me: Adding smart editing and batch editing widgets, in a web AppBuilder using the dashboard theme. That way they can be docked in the side panel, providing improved accessibility. But direct editing in the table widget would still be much preferred.
... View more
11-02-2018
06:08 AM
|
3
|
0
|
258
|
POST
|
You can enter the required information for the dispatch (such as the workerID, status, due date etc.) and it would create and dispatch the assignments for your worker to use through the workforce field app, basically bypassing the dispatcher's app, however you would need to make sure that you understand the workforce schema (link below) and how the status and assignments are defined. If there's no good reason to do so, I think there's benefit in doing this part through the workforce dispatcher app, which is built for this and provides the dispatcher with the interface he requires. Automate and script Workforce—Workforce for ArcGIS | ArcGIS
... View more
10-23-2018
08:39 AM
|
0
|
0
|
3
|
POST
|
Simplest way would be to build your survey based on the assignments layer that was created for you workforce project - see link below. That way any submitted survey record directly creates a new assignment within workforce. Use Survey123 with existing feature services—Survey123 for ArcGIS | ArcGIS
... View more
10-23-2018
06:00 AM
|
0
|
2
|
14
|
POST
|
Another code-free workflow for batch creating assignments based on an existing feature service, would build on the "Identify features" tool (screencap below). However, since right now this feature supports only rectangular selection, the workaround would be to first filter the dispatcher's map (say, to show all assets in a specific zone), and then select them all and batch create the assignments.
... View more
10-16-2018
07:06 AM
|
0
|
0
|
27
|
POST
|
Thanks for confirming. Yes, changing the target tag didn't help me either.
... View more
10-09-2018
02:42 AM
|
0
|
0
|
75
|
POST
|
When adding a Survey123 URL scheme for a native Survey123 app (not webform), in a pop up window of a AGOL webmap, the hyperlink first opens a blank web page, before opening the survey123 app and corresponding survey. Is there a way to get rid of that blank page opening first...? Here's the href I'm using: <a href="arcgis-survey123://?itemID=2dcb6f0f041f4b64be71fb993d4731e4" target="_blank">Open survey</a>
... View more
10-05-2018
06:19 AM
|
0
|
3
|
303
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:25 AM
|