﻿var conferenceHotelName = "Hilton Prague Old Town";
var hotels = [];

function createHotels() {

    /*****************************************Suggested Hotels****************************************/

    /*Hilton Prague Old Town*/
    add({
        url: "https://www.hilton.com/en/attend-my-event/woods-winter-wonderland-emea-conference/",
        name: conferenceHotelName,
        location: "V Celnici 2079/7, 110 00 Prague",
        phone: "+420 221 822 100",
        //Email: "reservations.prague@radissonblu.com",
        bookStr: createClickableUrl("https://www.hilton.com/en/attend-my-event/woods-winter-wonderland-emea-conference/"),
        price: "",
        distance: "",
        latitude: 50.0887190,
        longtitude: 14.4318347
    });

    /* add({
        url: "https://www.amarilia.gr/",
        name: "Amarilia Hotel",
        location: "13 Agiou Nikolaou Street, 16671 Vouliagmeni",
        phone: "+30 210 8990391",
        //Email: "reservations.prague@radissonblu.com",
        //bookStr: createClickableUrl("http://www.alcron.cz/en/conference/"),
        //price: "&euro;170 Single occupancy<br/>&euro;182 Double occupancy<br/>(incl. breakfast, excl. VAT)",
        //distance: "",
        latitude: 37.8278206,
        longtitude: 23.7719334
    });

    add({
        url: "http://www.arhotel.gr/",
        name: "Athenian Riviera Hotel & Suites",
        location: "Danais 7 & Armonias, 16671 Vouliagmeni",
        phone: "+30 210 8929128",
        //Email: "reservations.prague@radissonblu.com",
        //bookStr: createClickableUrl("http://www.alcron.cz/en/conference/"),
        //price: "&euro;170 Single occupancy<br/>&euro;182 Double occupancy<br/>(incl. breakfast, excl. VAT)",
        //distance: "",
        latitude: 37.8137558,
        longtitude: 23.7740875
    });
	
	add({
        url: "http://www.azurhotel.gr/",
        name: "Azur Boutique Hotel",
        location: "Dekeleias 10 & Danais, Vouliagmeni",
        phone: "+30 210 9673181",
        //Email: "reservations.prague@radissonblu.com",
        //bookStr: createClickableUrl("http://www.alcron.cz/en/conference/"),
        //price: "&euro;170 Single occupancy<br/>&euro;182 Double occupancy<br/>(incl. breakfast, excl. VAT)",
        //distance: "",
        latitude: 37.8150729,
        longtitude: 23.7764418
    }); */

    /*****************************************Other Hotels****************************************/
    return hotels;
}

/**
 * Add new hotel to hotels array
 * @param {} Hotel 
 * @returns {} 
 */
function add(hotel) {
    hotel.content = createHotelContent(hotel);
    hotels = addMapObject(hotels, hotel);
}

/**
 * Create url with link of hotel
 * @param {} url 
 * @returns {} url with link of hotell
 */
function createClickableUrl(url) {
    return 'For a preferential rate,<br/>please click <a href="' + url + '" ' +
        'target="_blank" class="color-orange">here</a>.';
}

/**
 * Template for hotel's info
 * @param {} hotel 
 * @returns {} string
 */
function createHotelContent(hotel) {

    var str = '<div><a href="' + hotel.url + '" target="_blank">' + hotel.name + '</a></div>' +
    '<div><p>' + hotel.location + '<br/>Tel. ' + hotel.phone + '<br/></p></div>' +
    '<div><p>' + hotel.bookStr + '</p></div>' +
    '<div><p>' + hotel.price + hotel.distance + '</p></div>';

    return str;
}
