/* integrace Google map pres knihovnu gmap3 */
$(document).ready(function() {
    $('#google-contact-map').gmap3({
        action: 'addMarker',
        latLng: [ 50.0988043, 14.397396 ],
        map:{
            mapTypeId: google.maps.MapTypeId.ROADMAP,
            rotateControl : true,
            panControl: true,
            streetViewControl: true,
            center: true,
            zoom: 16
        },
        marker:{
            options:{
                draggable: false,
                clickable: true
            },
            events:{
                click: function(marker) {
                    var map = $(this).gmap3('get'),
                        infowindow = $(this).gmap3({action:'get', name:'infowindow'});
                    if (infowindow) {
                        infowindow.open(map, marker);
                    }
                }
            },
            callback: function(result) {
                if (result) {
                    map = $(this).gmap3('get');
                    map.panBy(0,-80);
                }
            }

        },
        infowindow:{
            options:{
                content: '<table width="200" class="bubble-layout"><tr><td valign="top"><a class="bubble-logo" href="http://www.ivitera.com" target="_blank"><img src="http://www.skoleni-kurzy-educity.cz/images/ivitera-logo.gif" /></a></td><td><div class="bubble-header">IVITERA a.s.</div><p class="bubble-text">Kafkova 16,<br/>160 00 Praha 6,<br/>Česká republika</p></td></tr></table>',
                maxWidth: 300
            }
        }
    },{
        action:'setStreetView',
        id: 'google-contact-street-map',
        options:{
            position: [ 50.0988043, 14.397396 ],
            pov: {
                heading: 47.85,
                pitch: -4.86,
                zoom: 2
            }
        }
    });
});

