~shikharkohli/sahana-eden/gsoc1

« back to all changes in this revision

Viewing changes to views/gis/unused/unused_mf_shortcuts.js

  • Committer: Shikhar Kohli
  • Date: 2010-08-11 18:40:09 UTC
  • mfrom: (802.1.156 eden)
  • Revision ID: shikharkohli@gmail.com-20100811184009-yy8zag5dowlam0ip
Merge trunk and update (a bit) of JS

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// These should be retrieved from the database (can be static via Web2Py, not dynamic via AJAX)
2
 
// Also need to be transformed for the current projection
3
 
//latlon.transform(map.getProjectionObject(), proj4326);
4
 
function createShortcutsStore() {
5
 
    return new Ext.data.SimpleStore({
6
 
                fields: ["value", "text", "bbox"],
7
 
                data: [['OC', 'Oceania', new OpenLayers.Bounds(56.0234375, -72.53125, 214.2265625, 32.9375)],
8
 
                        ['NA', 'North America', new OpenLayers.Bounds(-186.37890625, -2.21875, -28.17578125, 103.25)],
9
 
                        ['SA', 'South America', new OpenLayers.Bounds(-146.828125, -71.828125, 11.375, 33.640625)],
10
 
                        ['AF', 'Africa', new OpenLayers.Bounds(-58.9375, -51.7890625, 99.265625, 53.6796875)],
11
 
                        ['EU', 'Europe', new OpenLayers.Bounds(-23.078125, 26.2578125, 56.0234375, 78.9921875)],
12
 
                        ['AS', 'Asia', new OpenLayers.Bounds(15.59375, -21.90625, 173.796875, 83.5625)]]
13
 
        });
14
 
}