[Commits] r1490 - sandbox/cmoullet/ux/StreetViewPanel/ux/widgets

commits at geoext.org commits at geoext.org
Wed Nov 25 20:25:32 CET 2009


Author: cmoullet
Date: 2009-11-25 20:25:32 +0100 (Wed, 25 Nov 2009)
New Revision: 1490

Removed:
   sandbox/cmoullet/ux/StreetViewPanel/ux/widgets/StreetViewPanel.js
Log:
Svn problem. delete file


Deleted: sandbox/cmoullet/ux/StreetViewPanel/ux/widgets/StreetViewPanel.js
===================================================================
--- sandbox/cmoullet/ux/StreetViewPanel/ux/widgets/StreetViewPanel.js	2009-11-25 15:17:30 UTC (rev 1489)
+++ sandbox/cmoullet/ux/StreetViewPanel/ux/widgets/StreetViewPanel.js	2009-11-25 19:25:32 UTC (rev 1490)
@@ -1,69 +0,0 @@
-Ext.namespace('GeoExt.ux');
-
-GeoExt.ux.StreetViewPanel = Ext.extend(Ext.Panel, {
-    initComponent : function() {
-
-        var defConfig = {
-            plain: true,
-            zoomLevel: 3,
-            yaw: 180,
-            pitch: 0,
-            zoom: 0,
-            border: false
-        }
-
-        Ext.applyIf(this, defConfig);
-
-        GeoExt.ux.StreetViewPanel.superclass.initComponent.call(this);
-    },
-    afterRender : function() {
-
-        var wh = this.ownerCt.getSize();
-
-        Ext.applyIf(this, wh);
-
-        GeoExt.ux.StreetViewPanel.superclass.afterRender.call(this);
-
-        this.panorama = new GStreetviewPanorama(this.body.dom);
-
-        var clickControl = new GeoExt.ux.Click({
-            handlerOptions: {
-                "single": true
-            }
-        });
-
-        this.map.addControl(clickControl);
-        clickControl.activate();
-
-
-        this.panorama.setLocationAndPOV(new GLatLng(42.345573, -71.098326));
-    },
-    beforeDestroy: function() {
-        this.panorama.remove();
-        delete this.panorama;
-        GeoExt.ux.StreetViewPanel.superclass.beforeDestroy.apply(this, arguments);
-    },
-    onResize : function(w, h) {
-        GeoExt.ux.StreetViewPanel.superclass.onResize.call(this, w, h);
-        if (typeof this.panorama == 'object') {
-            this.panorama.checkResize();
-        }
-    },
-    setSize : function(width, height, animate) {
-        GeoExt.ux.StreetViewPanel.superclass.setSize.call(this, width, height, animate);
-        if (typeof this.panorama == 'object') {
-            this.panorama.checkResize();
-        }
-    },
-    getMap: function() {
-        return this.panorama;
-    },
-    // http://stackoverflow.com/questions/183214/javascript-callback-scope
-    bind: function(scope, fn) {
-        return function () {
-            fn.apply(scope, arguments);
-        };
-    }
-});
-
-Ext.reg('gxux_streetviewpanel', GeoExt.ux.StreetViewPanel);
\ No newline at end of file



More information about the Commits mailing list