/**
 * @author toby
 */

/* Googlemap init variables */

/* the name of the config folder for this site*/
var configfolder = "1632_beach";

/* the initial Latitude and Longitude, Zoom and Map Type values */
var initLat = 38.27268853598095;
var initLng = 10.546875;
var initZoom = 1;
var initMapType = G_SATELLITE_MAP;

/* set the copy here for various messages given to the user while using the interactive*/
var uploadLinkMsg = "Is this the location you wish to add your art to? If so, click the button below. If not, please close this window and return to the map.";
var noResultsMsg = "Sorry, your search has returned no results.";
var multiResultsMsg = "Please select from the following results:";
var singleResultsMsg = "Your search has returned the following result:";

/* this sets the text for various elements of the interface */
var addStoryButtonText = "ADD YOUR BEACH ART";
var viewStoryButtonText = "BACK TO ALL BEACH ART";
var addStoryInstruction = "<h3>CLICK ANYWHERE ON THE MAP TO ADD YOUR BEACH ART</h3>";
var categoriesText = "<h3>Continents:</h3>";

/* a flag to show or hide the search tool */
var useGeocodeSearch = 0; /* if map is not centred on US or Canada, disable this (0); else (1)*/

/* number of markers per zoom level */
var zoomlevel1 = 1;
var zoomlevel1markers = 9;
var zoomlevel2 = 3;
var zoomlevel2markers = 25;
var zoomlevel3 = 5;

