
    (function ($, window, document, undefined) {
    $(function () {
    var gme = new Object();

    gme.zoomTypes = new Array(0,1,2);
    gme.defaultMapTypes = new Array("roadmap", "satellite", "hybrid", "terrain", "");

    gme.mapSettings = {
    id: 'gme-' + 6,
    title: 'Standorte Finnland eng',
    width: '100%',
    height: '600px',
    zoom: 0,
    minZoom: 0,
    maxZoom: 0,
    lat: 0,
    lng: 0,
    geolocation: 0,
    kmlUrl: '',
    kmlPreserveViewport: false,
    kmlLocal: 0,
    scrollZoom: 0,
    draggable: 1,
    doubleClickZoom: 0,
    markerCluster: 0,
    markerClusterZoom: null,
    markerClusterSize: null,
    
            markerClusterStyle: '',
        
    markerSearch: 0,
    defaultType: 0,
    panControl: 0,
    scaleControl: 1,
    streetviewControl: 0,
    fullscreenControl: 0,
    zoomControl: 1,
    zoomControlType: 0,
    mapTypeControl: 0,
    showRoute: 0,
    calcRoute: 0,
    travelMode: 0,
    unitSystem: 2,
    showForm: 0,
    showCategories: 0,
    logicalAnd: 0,
    styledMapName: '',
    
            styledMapCode: '',
        
    defaultZoom: 11
    }

    gme.mapSettings.mapTypes = new Array();
    
        gme.mapSettings.mapTypes[0] = gme.defaultMapTypes[0];
    
        gme.mapSettings.mapTypes[1] = gme.defaultMapTypes[1];
    
        gme.mapSettings.mapTypes[2] = gme.defaultMapTypes[2];
    

    gme.request = new Array();

    

    gme.addresses = new Array();
    
        gme.addresses[0]  = {
        uid: 19,
        title: 'Binderholz Nordic Oy · Timber Industry Lieksa',
        latitude: 63.324200,
        longitude: 29.988893,
        address: 'Kevätniementie 7, 81700 Lieksa, Finnland',
        
                
                        marker: 'https://www.binderholz.com/fileadmin/_processed_/e/3/csm_pin_9f73eb4403.png',
                        imageSize: 1,
                    
            

        imageWidth: 32,
        imageHeight: 50,
        infoWindowContent: '                        <img src="https://www.binderholz.com/fileadmin/user_upload/unternehmen/standorte/google_Maps_150px/lieksa_150px.jpg" width="225" height="150" alt="" />                        <p><strong>Binderholz Nordic Oy<br> Timber Industry Lieksa</strong><br> Kevätniementie 7<br> FI-81700 Lieksa</p>',
        infoWindowLink: 0,
        
                openByClick: 1,
            
        
                closeByClick: 1,
            
        opened: 0,
        categories: ''
        }
    
        gme.addresses[1]  = {
        uid: 20,
        title: 'Binderholz Nordic Oy · Timber Industry Nurmes',
        latitude: 63.539823,
        longitude: 29.161210,
        address: 'Sahanportti 1, 75500 Nurmes, Finnland',
        
                
                        marker: 'https://www.binderholz.com/fileadmin/_processed_/e/3/csm_pin_9f73eb4403.png',
                        imageSize: 1,
                    
            

        imageWidth: 32,
        imageHeight: 50,
        infoWindowContent: '                        <img src="https://www.binderholz.com/fileadmin/user_upload/unternehmen/standorte/google_Maps_150px/nurmes_150px.jpg" width="225" height="150" alt="" />                        <p><strong>Binderholz Nordic Oy<br> Timber Industry Nurmes</strong><br> Sahanportti 1<br> FI-75500 Nurmes</p>',
        infoWindowLink: 0,
        
                openByClick: 1,
            
        
                closeByClick: 1,
            
        opened: 0,
        categories: ''
        }
    
        gme.addresses[2]  = {
        uid: 18,
        title: 'Binderholz Nordic Oy · Administration Joensuu',
        latitude: 62.598135,
        longitude: 29.743857,
        address: 'Länsikatu 15, 80110 Joensuu, Finnland',
        
                
                        marker: 'https://www.binderholz.com/fileadmin/_processed_/f/7/csm_pin_grey_ca7b9b33d8.png',
                        imageSize: 1,
                    
            

        imageWidth: 32,
        imageHeight: 50,
        infoWindowContent: '                        <img src="https://www.binderholz.com/fileadmin/user_upload/unternehmen/standorte/google_Maps_150px/Joensuu_Office_150px.jpeg" width="224" height="150" alt="" />                        <p><strong>Binderholz Nordic Oy<br> Administration Joensuu</strong><br> Joensuun Tiedepuisto<br> Building 4A, Office 533, Länsikatu 15<br> FI-80110 Joensuu</p>',
        infoWindowLink: 0,
        
                openByClick: 1,
            
        
                closeByClick: 1,
            
        opened: 0,
        categories: ''
        }
    

    gme.ll = {};
    gme.ll.alert = "Please enter a valid address.";
    gme.ll.submit = "Calculate Route";
    gme.ll.noSearchResults = "No results found.";
    gme.ll.infoWindowLinkText = "Calculate Route";
    var $element = jQuery("#" + gme.mapSettings.id);
    $element.gomapsext(gme);
    if(gme.mapSettings.width.indexOf('%') != -1) {
        jQuery(window).resize(function() {
            $element.trigger('mapresize');
        });
    }

    }); // end of closure
    })(jQuery, window, document);
