Additional configuration

Application settings

Use the configuration.json to configure the Photo Survey application to your organization's needs. Photo randomization, guest access, thumbnail image display, and twitter credentials can all be configured by modifying the following parameters:

Parameter Description
randomizeSelection Controls how the Photo Survey application will display photos.
  • true for random photo display (default)
  • false for ordered photo display
allowGuestSubmissions Specifies if the Photo Survey application will allow guest or anonymous survey submissions.
  • true to allow guest (anonymously) submit survey submissions
  • false to disallow guest (anonymously) submit survey submissions
showGuest Specifies if the Photo Survey application will allow guest or anonymous access.
  • true to allow guest (anonymous) access
  • false to disallow guest (anonymous) access
thumbnailLimit Set the maximum number of thumbnails displayed in the Photo Survey carousel. If the number of photos for a given property exceeds this number, the photo carousel will not be displayed in the application.
includeOverviewMap Specifies if the Photo Survey application will include an overview map.
  • true to show overview map
  • false to remove overview map

Survey Settings

There are several options available regarding the types of survey responses that can be presented on the survey panel. Choose from the options below based on the structure of your data as well as the desired user experience.

Once you have determined which response type to use, include its corresponding tag in the pop-up configuration of your map.

Type Description pop-up Tag
Button Presents survey responses in the form of rectangular buttons. Use this option if you have a domain of values applied to a field. {button}
List Presents survey responses in the form of radio buttons. Use this option if you have a domain of values applied to a field. {list}
Drop-down Presents survey responses in the form of a drop-down menu. Use this option if you have a domain of values applied to a field. {dropdown}
Text Allows users to manually type in their response. Use this option if you have a text field in your data, without a domain applied. Length settings on the field will be enforced in the application. {text}
Number Allows users to manually type in a number response, or use arrows to incrementally set a number value. Use this option if you have a number field in your data, without a domain applied. {number}

Image Display

To display images on the survey panel, add an {image} tag in the pop-up configuration in the map. Images must be associated with a question in order to display on the panel.

Add the image tag before the response type tag to display the image above the response on the survey panel.

        
    Please describe the behavior you see:{BEHAVIOR}{image=<URL to image>}{button}
            

Alternately, add the image tag after the response type tag to display it below the response on the survey panel.

        
    Please describe the behavior you see:{BEHAVIOR}{button}{image=<URL to image>}
                   
Top