﻿$(function () {
    var location = new google.maps.LatLng(55.7084168, 9.535951599999976);

    var options = {
        zoom: 16,
        center: location,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    };

    var map = new google.maps.Map(document.getElementById("google-map"), options);

    var label = new ELabel({
        latlng: location,
        label: "<div>Restaurant Remouladen<br />Restaurant The Lodge<br />Vejle Bryghus</div>",
        classname: "e-label",
        offset: new google.maps.Size(-5, -39),
        opacity: 80,
        overlap: true,
        clicktarget: false
    });

    label.setMap(map);
});
