
    (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-' + 40,
    title: 'Standorte USA eng',
    width: '100%',
    height: '600px',
    zoom: 0,
    minZoom: 0,
    maxZoom: 0,
    lat: 0,
    lng: 0,
    geolocation: 0,
    kmlUrl: '',
    kmlPreserveViewport: false,
    kmlLocal: 0,
    scrollZoom: 1,
    draggable: 1,
    doubleClickZoom: 0,
    markerCluster: 1,
    markerClusterZoom: null,
    markerClusterSize: null,
    
            markerClusterStyle: '',
        
    markerSearch: 0,
    defaultType: 0,
    panControl: 1,
    scaleControl: 1,
    streetviewControl: 0,
    fullscreenControl: 1,
    zoomControl: 1,
    zoomControlType: 0,
    mapTypeControl: 1,
    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: 114,
        title: 'Binderholz Live Oak LLC',
        latitude: 30.363086,
        longitude: -83.105574,
        address: '17152 46th trce',
        
                
                        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/Vorl%C3%A4ufiges_Standortbild_Live_Oak_USA_RETUSCHIERT_150px.jpg" width="225" height="150" alt="" />                        <p><strong>Binderholz Live Oak LLC</strong><br> Sawmill<br> 17152 46th Trce<br> Live Oak, FL 32060</p>',
        infoWindowLink: 0,
        
                openByClick: 1,
            
        
                closeByClick: 1,
            
        opened: 0,
        categories: ''
        }
    
        gme.addresses[1]  = {
        uid: 115,
        title: 'Binderholz Timber LLC | Binderholz Mass Timber LLC',
        latitude: 33.868777,
        longitude: -84.469262,
        address: '2859 Paces Ferry Road, 30339 Atlanta',
        
                
                        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/Vorl%C3%A4ufiges_Standortbild_Atlanta_USA_2_ba_150px.jpg" width="261" height="150" alt="" />                        <p><strong>Binderholz Timber LLC<br> Binderholz Mass </strong><strong>Timber LLC</strong><br> Sales department<br> 2859 Paces Ferry Road, Suite 1170<br> Atlanta, GA 30339</p>',
        infoWindowLink: 0,
        
                openByClick: 1,
            
        
                closeByClick: 1,
            
        opened: 0,
        categories: ''
        }
    
        gme.addresses[2]  = {
        uid: 172,
        title: 'Binderholz Enfield LLC',
        latitude: 36.217533,
        longitude: -77.633707,
        address: '260 Piper Ln, Enfield, NC 27823',
        
                
                        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/standortbild_enfield-USA_150px.jpg" width="273" height="150" alt="" />                        <p><strong>Binderholz Enfield LLC</strong><br> Sawmill<br> 260 Piper Lane<br> Enfield, NC 27823</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);
