|
BLOG
|
Great function. Just wondering if it is possible to be able to take a photo and then use that photo within the same survey to annotate? Regards, Craig
... View more
04-14-2019
09:29 PM
|
0
|
0
|
18897
|
|
POST
|
Hi Elias, I had something similar to you. I had a point file with locations of points that would have repeat measurements taken over time. I designed a survey form that had a common field (ID) to join to the point file. Once I created a few records in the survey form, I joined the two sets of data together using the Analysis > Summarize data > Join Features option available in ArcGIS Online. I used the 'Choose the fields to match' option with a One-to-Many relationship and 'Create results as hosted feature layer view'. This created a new feature layer, with my records as they updated using the new survey form. Alternatively, you might be able to create your survey based on your existing Feature Service. Regards, Craig
... View more
04-14-2019
04:01 PM
|
0
|
0
|
3034
|
|
POST
|
Thank you Xander, Code example you have provided worked excellent. Regards, Craig
... View more
04-08-2019
05:01 PM
|
1
|
0
|
22873
|
|
POST
|
Hi, I have a field that I wish to assign classes too (e.g. ABC123 - W - 201930 - 4/03/2019 to 21/06/2019 - D). I wish to search the text string using Arcade, so that I can classify my data into three unique classes. I have found the 'Find' function, but unsure about how to use it correctly. var placement = When( Find('ABC123', $feature["USER_Unit_Offering_Display_Text"]),'Field 1', Find('DEF456', $feature["USER_Unit_Offering_Display_Text"]),'Field 1', Find('GHI789', $feature["USER_Unit_Offering_Display_Text"]),'Field 2', Find('JKL012', $feature["USER_Unit_Offering_Display_Text"]),'Field 2', Find('MNO345', $feature["USER_Unit_Offering_Display_Text"]),'Field 2 (Ongoing)', ' ' ) return placement; Any ideas please? Regards, Craig
... View more
04-07-2019
10:18 PM
|
0
|
4
|
24462
|
|
BLOG
|
Hi Gary, Please send attachment to [email protected]. I still cant see it attached here. Regards, Craig
... View more
01-22-2019
02:03 PM
|
0
|
0
|
24107
|
|
BLOG
|
Hi Gary, Could you send the attachment you mention here please or outline your process. Interested in using Bar Codes to auto-populate forms. Craig
... View more
01-21-2019
08:52 PM
|
0
|
0
|
24107
|
|
IDEA
|
Hi, It would be handy if the Arcade Expression window could be moved or resized in ArcGIS Online to be able to reference underlying data within the map to compile code. Regards, Craig
... View more
11-14-2018
06:02 PM
|
3
|
0
|
487
|
|
POST
|
Hi All, I have read several different blogs and postings to try and achieve a task in ArcGIS Online. I would like too, based on two fields provide a custom image for a symbol for my webmap. I want users to nominate an issue (i.e. snake sighting), and then calculate a period of time for when the webmap is viewed, to have the symbol change with age from a 'High' (<12 hours) indicent to 'Low' (> 48 hours) incident. So over the course of 2 days the symbol might change from a red snake to a green one. The following code is my attempt so far to at least show the correct image within a pop-up. var startDate = Date($feature.date);
var endDate = Now();
var age = DateDiff(endDate, startDate, 'hours');
When (
age <= 12,'High',
age > 12 && age <= 24, 'Medium',
age > 24 && age <= 48, 'Low','Historical');
var issue = ($feature.issue)
if (issue == 'Snake' && age == 'High'){
return "snake1.png"
} else
if (issue == 'Snake' && age == 'Medium'){
return "snake2.png"
} else
if (issue == 'Snake' && age == 'Low'){
return "snake3.png"
} else
{
return "bird1.png"
} I am finding that the bird1.png is showing, even though I only have snake events in my data. What I ultimately want is a custom symbol using my PNG file, and then go one step further to place a buffer of set distance around point locations and color those with incident level (red/amber/green). I am hoping this is something Arcade might be able to do. Regards, Craig
... View more
11-11-2018
08:51 PM
|
0
|
1
|
3090
|
|
POST
|
So I found a new template in ArcGIS Online called Map Styles which has a Compass widget in-built to rotate the map. Great!!! But still wondering when Compass widget will be coming to WebApp Builder. Craig
... View more
11-07-2018
08:57 PM
|
4
|
2
|
1910
|
|
IDEA
|
Hi All, For use with picking any colour (basemap or otherwise) try using ColorPix (ColorPix - Download). Same function as eye dropper tool and can store your colours for reference. But I agree, this needs adding back into Pro. Craig
... View more
09-10-2018
06:54 PM
|
0
|
0
|
8611
|
|
POST
|
Found this great app today by accident. Made a simple test dataset and loved the result. Just wondering how without using AppStudio can I: use a custom basemap do a search on my point dataset/s get symbolised pop-ups for data categories switch point datasets on/off
... View more
09-25-2017
10:50 PM
|
0
|
0
|
1581
|
|
IDEA
|
Would love to see the Summary Widget added as well, as it can provide stats that are a bit harder to determine from charts.
... View more
08-31-2017
09:48 PM
|
0
|
0
|
897
|
|
POST
|
Hi Stephen, Not related to my original post (unsure where to post), but could the Story Map team consider adding some form of calendar to the Crowdsource beta to allow for when submissions will be suspended instead of requiring submissions to be manually turned off? Regards, Craig
... View more
07-23-2017
04:57 PM
|
0
|
1
|
1271
|
|
POST
|
Moving home address to either suburb or city centroid would be perfect. How would this work in more remote areas though where a rural home address (farm)may be a large distance from a city location?
... View more
07-18-2017
03:42 PM
|
0
|
0
|
1271
|
|
POST
|
Hi, I am using the standard template for the Crowdsource (beta) story map. Would like to see enhancement to enable 'Locate Me' and 'Find on Map' to be disabled as an option to protect the privacy of submissions (ie. address location). Ideally a check box in configuration or within JSON to set True/False to disable these functions. I have been advised downloading the underlying code and customising and hosting myself would enable this ability, but I don't currently have a server to host content, so relying on ArcGIS Online standard templates. Regards, Craig
... View more
07-17-2017
07:02 PM
|
0
|
4
|
1564
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-22-2014 03:26 PM | |
| 1 | 11-03-2022 03:28 PM | |
| 1 | 05-24-2021 05:01 PM | |
| 1 | 12-02-2019 02:46 PM | |
| 3 | 11-01-2020 07:20 PM |
| Online Status |
Offline
|
| Date Last Visited |
06-04-2025
09:55 PM
|