|
POST
|
Hi Allison, Thanks for working on this! I noticed the release notes say you can point directly to a specific report. Does this mean that you must point to an editable layer in the webmap? Our reports, once assigned, are resymbolized on an uneditable layer and I was wondering if I can still point the URL to them. If not, I can rework our setup.
... View more
12-18-2018
10:34 AM
|
0
|
3
|
4692
|
|
POST
|
This has been included in the December 2018 release: Configure Crowdsource Reporter app - Crowdsource Reporter | ArcGIS Solutions for Local Government Share Application View Use the option on the Options tab to add a Share widget to the application header. This widget will generate a URL that points to the specific report, layer, and map that are currently visible in the application. To create your own link that will open Crowdsource Reporter to a specific report, build a URL that points to a specific map, layer, and feature for that report. Construct this URL following this pattern: appURL &webmap= mapGUID &layer= layerID &oid= OIDvalue with the following substitutions: appURL should be the URL for your application, for example https://myorg.maps.arcgis.com/apps/CrowdsourceReporter/index.html?appid=ab12c3d4e5f678ghijk9l0m1n234o567 mapGUID is the GUID of the map that contains the layer that holds the incoming reports. You can find this GUID in the URL of the map. layerID is the ID value of the layer in this map that contains the reports. You can find this ID in the webmap JSON which can be viewed at a URL such as https://myorgs.maps.arcgis.com/sharing/content/items/z09y876x5d6a4cae915162283e85dc46/data?f=pjson. OIDvalue is the OBJECTID of a feature in that layer. For example, use the URL https://myorgs.maps.arcgis.com/home/item.html?id=ab12c3d4e5f678ghijk9l0m1n234o567&webmap=z09y876x5d6a4cae915162283e85dc46&layer=LayerName_1234&oid=5.
... View more
12-18-2018
10:08 AM
|
1
|
4
|
4692
|
|
POST
|
Yup, we use that functionality for our election map. We host it ourselves so the url is https://webmapssecure.ewashtenaw.org/ElectionRedirect/WebMap/nov2018/results.html?entry=2 to get to the second tab. Just add ?entry=TABNUMBERHERE to the end of your url. If it's hosted in ArcGIS Online, use '&' since there's already a parameter for appid: https://washtenaw.maps.arcgis.com/apps/MapSeries/index.html?appid=ac6567d73f7c4039bbc9667bea9b4458&entry=2 Here's more information: https://developerscorner.storymaps.arcgis.com/using-story-map-url-parameters-93b80bc6b306
... View more
12-13-2018
11:11 AM
|
3
|
2
|
2826
|
|
POST
|
Hi Meghan, If you have access to ArcMap and the building names are standardized in your list, I wrote some Python that you could use to update the Latitude and Longitude of your features. You would need to fill out the bldglocation dictionary with the proper values for each building, which would be a one time pain. I would use Google Maps and right click>What's Here? to get the latitude and longitude of each building. I ran this on a table in a geodatabase, I'm not sure what format your crime data is in. I brought the table into ArcMap, right clicked>Display XY Data in WKID 4326 so it would display the features as points once they got lat/long. On my crime table, I had fields of LATITUDE, LONGITUDE, and BUILDINGNAME, so you would need to replace those with yours. Let me know if you have any questions or if this doesn't work with your situation. crimetable = r'C:\Users\me\Desktop\crimes.gdb\CrimesOriginal'
bldglocation = {
"White House": "38.897693, -77.036583",
"Statue of Liberty": "40.689323, -74.044567"
}
fields = ['LATITUDE', 'LONGITUDE', 'BUILDINGNAME']
#-------------0----------1-------------2
with arcpy.da.UpdateCursor(crimetable,fields,"LATITUDE IS NULL AND LONGITUDE IS NULL") as cursor:
for row in cursor:
row[0] = bldglocation[row[2]].split(", ")[0]
row[1] = bldglocation[row[2]].split(", ")[1]
cursor.updateRow(row)
... View more
12-11-2018
01:20 PM
|
0
|
0
|
2657
|
|
POST
|
Thanks for sharing the bug info, good to know they're aware of it
... View more
12-11-2018
07:24 AM
|
0
|
0
|
5260
|
|
POST
|
I'm seeing the same issue. Using ArcMap 10.6.1 on a 10.6.1 enterprise geodatabase on SQL Server 2017. Can't right click, Data>Export Data to shapefile or feature class on my local desktop (just get error messages). If I select all features and then export, it works, so thanks for mentioning that Rob! Exporting via right click in ArcCatalog uses the Feature Class to Feature Class gp tool, which I haven't had any issues with in ArcCatalog or ArcMap.
... View more
12-11-2018
07:06 AM
|
0
|
2
|
5260
|
|
POST
|
ESRI Support ended up directing us to reimage our 32-bit PCs to 64-bit. Whether or not that was the actual issue is still debated, but the reimaging fixed their connection issues.
... View more
12-07-2018
05:51 AM
|
0
|
0
|
3333
|
|
POST
|
Hi Tom, did you find a solution to this? I'm experiencing the same issue (deleted item still appears in open data portal).
... View more
12-04-2018
07:47 AM
|
0
|
2
|
3027
|
|
IDEA
|
Is this happening even after verifying your organization?
... View more
11-30-2018
10:06 AM
|
0
|
0
|
937
|
|
POST
|
Really excited about the latest Python API update. Would like to be able to export survey responses as reports with Python. I'm currently stuck at this part. I can see that the reports get generated and I can download them (image below from Survey123 website), but I receive an error in the code: KeyError: 'results' (see attachment). I'm also curious if you can access the generated reports directly with Python after making them.
... View more
11-28-2018
09:56 AM
|
0
|
35
|
26525
|
|
IDEA
|
Can the option to zoom to the district AND related point extent be built into the District Lookup widget? I'm using the widget for polling locations and sometimes the location is outside the precinct and not visible when the widget zooms to the precinct. A workaround was created here: Change District Lookup Widget's zoom extent? but this issue is important to the basic functionality of this widget so I'm hoping it can be built into it.
... View more
11-13-2018
09:33 AM
|
3
|
2
|
1365
|
|
IDEA
|
Can the option to zoom to the district AND related point extent be built into the District Lookup widget? I'm using the widget for polling locations and sometimes the location is outside the precinct and not visible when the widget zooms to the precinct. A workaround was created here: Change District Lookup Widget's zoom extent? but this issue is important to the basic functionality of this widget so I'm hoping it can be built into it.
... View more
11-13-2018
09:33 AM
|
3
|
2
|
1134
|
|
IDEA
|
It would be nice to be able to have the option in WAB widget configs to turn on one or more of the relevant layers when the widget opens. For example, I'd like to use multiple District Lookup widgets in an app, but having all the point layers turned on at once is very messy. I'd like the point layers to turn on when its particular widget is opened. There are various threads out there where people have made edits to the code to get this functionality, however this is confusing to implement with all the different widgets available.
... View more
11-13-2018
09:24 AM
|
1
|
0
|
476
|
|
IDEA
|
Yup, you'll need to create a project. Here's some more information: FAQs for project owners—Workforce for ArcGIS | ArcGIS The project I used in this case was super simple, just added the AGO users who were doing the surveys without adding actual workforce assignments for them. They needed to be signed into the Workforce app on their tablet/smartphone for their location to show up. Workforce Location Tracking Tip: Tips for project owners—Workforce for ArcGIS | ArcGIS
... View more
11-08-2018
06:07 AM
|
0
|
1
|
2271
|
|
POST
|
Here's my work around for the spacing issue in IE. I slimmed down my popups to only 3 activities. The 2/3 park is missing swimming and 3/3 has all 3 activities. Instead of leaving img_blank = '' in my arcade, I changed it to a transparent 1x1 pixel '....blank.png'. So an image actually renders in IE, but it's pretty much invisible. Before (issue seen in IE): Chrome: 2/3 = 3/3 = IE: 2/3 = 3/3 = After: IE: 2/3 = 3/3 = Chrome (still fine)
... View more
10-30-2018
10:02 AM
|
3
|
1
|
3290
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 09-23-2025 06:30 AM | |
| 1 | 03-10-2026 10:37 AM | |
| 3 | 03-05-2026 01:21 PM | |
| 2 | 02-12-2026 07:21 AM | |
| 2 | 09-04-2025 12:24 PM |
| Online Status |
Offline
|
| Date Last Visited |
Thursday
|