Index: trunk/extensions/Maps/Maps_Mapper.php |
— | — | @@ -270,14 +270,12 @@ |
271 | 271 | 'criteria' => array( |
272 | 272 | 'is_map_dimension' => array( 'width' ), |
273 | 273 | ), |
274 | | - 'default' => $egMapsMapWidth, |
275 | 274 | 'output-type' => array( 'mapdimension', 'width', $egMapsMapWidth ) |
276 | 275 | ), |
277 | 276 | 'height' => array( |
278 | 277 | 'criteria' => array( |
279 | 278 | 'is_map_dimension' => array( 'height' ), |
280 | 279 | ), |
281 | | - 'default' => $egMapsMapHeight, |
282 | 280 | 'output-type' => array( 'mapdimension', 'height', $egMapsMapHeight ) |
283 | 281 | ), |
284 | 282 | ); |
Index: trunk/extensions/Maps/Features/DisplayPoint/Maps_BasePointMap.php |
— | — | @@ -67,6 +67,12 @@ |
68 | 68 | global $egMapsDefaultServices, $egMapsDefaultTitle, $egMapsDefaultLabel; |
69 | 69 | |
70 | 70 | return array( |
| 71 | + 'width' => array( |
| 72 | + 'default' => $egMapsMapWidth |
| 73 | + ), |
| 74 | + 'height' => array( |
| 75 | + 'default' => $egMapsMapHeight |
| 76 | + ), |
71 | 77 | 'service' => array( |
72 | 78 | 'default' => $egMapsDefaultServices['display_point'] |
73 | 79 | ), |
Index: trunk/extensions/Maps/Features/DisplayMap/Maps_BaseMap.php |
— | — | @@ -66,6 +66,12 @@ |
67 | 67 | global $egMapsDefaultServices; |
68 | 68 | |
69 | 69 | return array( |
| 70 | + 'width' => array( |
| 71 | + 'default' => $egMapsMapWidth |
| 72 | + ), |
| 73 | + 'height' => array( |
| 74 | + 'default' => $egMapsMapHeight |
| 75 | + ), |
70 | 76 | 'service' => array( |
71 | 77 | 'default' => $egMapsDefaultServices['display_map'] |
72 | 78 | ), |