Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / window / gmap.js
index f99f0e9..c20f73b 100644 (file)
@@ -1,25 +1,24 @@
-/*!
- * Ext JS Library 3.3.1
- * Copyright(c) 2006-2010 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.com/license
- */
+Ext.Loader.setConfig({enabled: true});
+Ext.Loader.setPath('Ext.ux', '../ux');
+Ext.require([
+    'Ext.window.*',
+    'Ext.ux.GMapPanel'
+]);
 
 Ext.onReady(function(){
-
     var mapwin;
-    var button = Ext.get('show-btn');
-
-    button.on('click', function(){
+    
+    Ext.get('show-btn').on('click', function() {
         // create the window on the first click and reuse on subsequent clicks
         if(!mapwin){
 
-            mapwin = new Ext.Window({
+            mapwin = Ext.create('Ext.Window', {
                 layout: 'fit',
                 title: 'GMap Window',
                 closeAction: 'hide',
-                width:400,
-                height:400,
+                width:450,
+                height:450,
+                border: false,
                 x: 40,
                 y: 60,
                 items: {
@@ -38,7 +37,7 @@ Ext.onReady(function(){
                         marker: {title: 'Boston Museum of Fine Arts'},
                         listeners: {
                             click: function(e){
-                                Ext.Msg.alert('Its fine', 'and its art.');
+                                Ext.Msg.alert({title: 'Its fine', text: 'and its art.'});
                             }
                         }
                     },{