/*
 * Ext JS Library 2.2
 * Copyright(c) 2006-2008, Ext JS, LLC.
 * licensing@extjs.com
 * 
 * http://extjs.com/license
 */


Ext.onReady(function(){

    var mapwin;
    var button = Ext.get('show-btn');

    button.on('click', function(){
        // create the window on the first click and reuse on subsequent clicks
        if(!mapwin){

            mapwin = new Ext.Window({
                layout: 'fit',
                title: 'GMap Window',
                closeAction: 'hide',
                width:600,
                height:350,
                x: 60,
                y: 70,
				items: {
                    xtype: 'gmappanel',
                    region: 'center',
                    zoomLevel: 16,
                    gmapType: 'map',
                    mapConfOpts: ['enableScrollWheelZoom','enableDoubleClickZoom','enableDragging'],
                    mapControls: ['GSmallMapControl','GMapTypeControl','NonExistantControl'],
                    setCenter: {
							lat: -15.87587, 
							lng:-48.017271,
							marker: {title: 'Hote Pousada Įguas Claras'}
                    }
                }                
            });
            
        }
        
        mapwin.show();
        
    });
    
 });
