/**
 * config.js 
 * config file of mapped contact form
 * a professional google maps contact form from autobahn81.com
 */

/**
 * The initial map center.
 * Expects a latitude and a longitude value.
 * You can use ../help/index.html to find out this values for a specific place.
 */
mappedContactForm.mapCenter = [9.909553006854154, -84.05957687989041]

/**
 * The initial Map zoom level.
 */
mappedContactForm.mapZoom = 16;

/**
 * Data for the markers consisting of a name, a latitude, longitude, a building picture and an email adress.
 * You can use ../help/index.html to find out latitude and longitude values for a specific place.
 * These building pictures are available:
 * camper_blue, camper_green, camper_orange, camper_red, camper_violet,
 * castle_blue, castle_green, castle_orange, castle_red, castle_violet,
 * church_blue, church_green, church_orange, church_red, church_violet,
 * circus_blue, circus_green, circus_orange, circus_red, circus_violet,
 * factory_blue, factory_green, factory_orange, factory_red, factory_violet,
 * house-garage_blue, house-garage_green, house-garage_orange, house-garage_red, house-garage_violet,
 * house_blue, house_green, house_orange, house_red, house_violet
 * industry_blue, industry_green, industry_orange, industry_red, industry_violet, 
 * lighthouse_blue, lighthouse_green, lighthouse_orange, lighthouse_red, lighthouse_violet, 
 * office_blue, office_green, office_orange, office_red, office_violet, 
 * temple_blue, temple_green, temple_orange, temple_red, temple_violet, 
 * tent_blue, tent_green, tent_orange, tent_red, tent_violet
 *
 * If only on location is in the list the infoWindow with the contact form will open when the documents loads.
 */
mappedContactForm.locations = [

  ['La Maison Spa', 9.909553006854154, -84.05957687989041, 'house_green', "info@maison-spa.com"],

];

/**
 * Configure when the info window opens use 'mouseover' or 'click'.
 */
mappedContactForm.listener = 'click';
