Changeset 328
- Timestamp:
- 04/10/08 10:55:41 (5 years ago)
- Location:
- sandbox/elemoine/MapFish02
- Files:
-
- 5 modified
- 5 copied
-
client/examples/map/window.html (modified) (3 diffs)
-
client/examples/search/c2corg_ext.html (modified) (1 diff)
-
client/examples/tree/tree_reorder.html (modified) (2 diffs)
-
client/examples/tree/tree_user_model_complex.html (modified) (2 diffs)
-
client/mfbase/mapfish/widgets/edition/FeatureList.js (modified) (1 diff)
-
doc (copied) (copied from trunk/MapFish/doc)
-
doc/architecture_schemas (copied) (copied from trunk/MapFish/doc/architecture_schemas)
-
doc/architecture_schemas/mapfish.svg (copied) (copied from trunk/MapFish/doc/architecture_schemas/mapfish.svg)
-
doc/architecture_schemas/mapfish_client.svg (copied) (copied from trunk/MapFish/doc/architecture_schemas/mapfish_client.svg)
-
doc/architecture_schemas/mapfish_server.svg (copied) (copied from trunk/MapFish/doc/architecture_schemas/mapfish_server.svg)
Legend:
- Unmodified
- Added
- Removed
-
sandbox/elemoine/MapFish02/client/examples/map/window.html
r290 r328 70 70 ['AS', 'Asia', new OpenLayers.Bounds(15.59375, -21.90625, 173.796875, 83.5625)]] 71 71 }); 72 /* 73 var shortcuts = new mapfish.widgets.Shortcuts({ 74 map: map, 75 store: store, 76 templates: { 77 header: new Ext.Template("Choose a continent in the list"), 78 footer: new Ext.Template("The map will automatically center to this location") 79 } 80 }); 81 */ 72 82 73 var window = new Ext.Window({ 83 74 title: 'Shortcuts', … … 99 90 }] 100 91 }); 101 window.setPagePosition(20, 20);92 window.setPagePosition(20, 40); 102 93 103 94 window.show(); … … 106 97 </head> 107 98 <body> 99 <!-- 100 body element must not start with text to prevent IE bug 101 http://extjs.com/forum/showthread.php?t=7912&highlight=createRange 102 --> 103 <h1>MapFish example</h1> 108 104 This example shows how to use the MapComponent class to integrate a OL map into a window layout. 109 105 <div id="olmap"> -
sandbox/elemoine/MapFish02/client/examples/search/c2corg_ext.html
r290 r328 47 47 var options = { 48 48 projection: "EPSG:4326", 49 controls: [new OpenLayers.Control. MouseDefaults()] ,49 controls: [new OpenLayers.Control.Navigation()] , 50 50 maxExtent: new OpenLayers.Bounds(-180, -90, 180, 90), 51 51 scales: scales -
sandbox/elemoine/MapFish02/client/examples/tree/tree_reorder.html
r290 r328 18 18 <script type="text/javascript" src="../examples.js"></script> 19 19 20 <script type="text/javascript" src="c2corgCreateMap.js"></script>21 22 20 <script type="text/javascript"><!-- 23 21 … … 26 24 var options = { 27 25 projection: "EPSG:4326", 28 controls: [new OpenLayers.Control. MouseDefaults()],26 controls: [new OpenLayers.Control.Navigation()], 29 27 'numZoomLevels': 20 30 28 }; -
sandbox/elemoine/MapFish02/client/examples/tree/tree_user_model_complex.html
r290 r328 18 18 <script type="text/javascript" src="../examples.js"></script> 19 19 20 <script type="text/javascript" src="c2corgCreateMap.js"></script>21 22 20 <script type="text/javascript"><!-- 23 21 … … 26 24 var options = { 27 25 projection: "EPSG:4326", 28 controls: [new OpenLayers.Control. MouseDefaults()],26 controls: [new OpenLayers.Control.Navigation()], 29 27 'numZoomLevels': 20 30 28 }; -
sandbox/elemoine/MapFish02/client/mfbase/mapfish/widgets/edition/FeatureList.js
r225 r328 633 633 col.convert = function(v) { 634 634 return v; 635 } 635 }; 636 636 } 637 637 if (!col.sortType) {
