Index: trunk/extensions/SemanticMaps/Services/YahooMaps/SM_YahooMapsQP.php |
— | — | @@ -59,7 +59,7 @@ |
60 | 60 | 'div', |
61 | 61 | array( |
62 | 62 | 'id' => $this->mapName, |
63 | | - 'style' => "width: $this->width; height: $this->height; background-color: #cccccc;", |
| 63 | + 'style' => "width: $this->width; height: $this->height; background-color: #cccccc; overflow: hidden;", |
64 | 64 | ), |
65 | 65 | wfMsg( 'maps-loading-map' ) |
66 | 66 | ); |
Index: trunk/extensions/SemanticMaps/Services/YahooMaps/SM_YahooMapsFormInput.php |
— | — | @@ -74,7 +74,7 @@ |
75 | 75 | 'div', |
76 | 76 | array( |
77 | 77 | 'id' => $this->mapName, |
78 | | - 'style' => "width: $this->width; height: $this->height; background-color: #cccccc;", |
| 78 | + 'style' => "width: $this->width; height: $this->height; background-color: #cccccc; overflow: hidden;", |
79 | 79 | ), |
80 | 80 | wfMsg( 'maps-loading-map' ) |
81 | 81 | ); |
Index: trunk/extensions/SemanticMaps/Services/OpenLayers/SM_OpenLayersQP.php |
— | — | @@ -62,7 +62,7 @@ |
63 | 63 | 'div', |
64 | 64 | array( |
65 | 65 | 'id' => $this->mapName, |
66 | | - 'style' => "width: $this->width; height: $this->height; background-color: #cccccc;", |
| 66 | + 'style' => "width: $this->width; height: $this->height; background-color: #cccccc; overflow: hidden;", |
67 | 67 | ), |
68 | 68 | wfMsg( 'maps-loading-map' ) |
69 | 69 | ); |
Index: trunk/extensions/SemanticMaps/Services/OpenLayers/SM_OpenLayersFormInput.php |
— | — | @@ -73,7 +73,7 @@ |
74 | 74 | 'div', |
75 | 75 | array( |
76 | 76 | 'id' => $this->mapName, |
77 | | - 'style' => "width: $this->width; height: $this->height; background-color: #cccccc;", |
| 77 | + 'style' => "width: $this->width; height: $this->height; background-color: #cccccc; overflow: hidden;", |
78 | 78 | ), |
79 | 79 | wfMsg( 'maps-loading-map' ) |
80 | 80 | ); |
Index: trunk/extensions/SemanticMaps/Services/GoogleMaps/SM_GoogleMapsQP.php |
— | — | @@ -78,7 +78,7 @@ |
79 | 79 | 'div', |
80 | 80 | array( |
81 | 81 | 'id' => $this->mapName, |
82 | | - 'style' => "width: $this->width; height: $this->height; background-color: #cccccc;", |
| 82 | + 'style' => "width: $this->width; height: $this->height; background-color: #cccccc; overflow: hidden;", |
83 | 83 | ), |
84 | 84 | wfMsg( 'maps-loading-map' ) |
85 | 85 | ); |
Index: trunk/extensions/SemanticMaps/Services/GoogleMaps/SM_GoogleMapsFormInput.php |
— | — | @@ -82,7 +82,7 @@ |
83 | 83 | 'div', |
84 | 84 | array( |
85 | 85 | 'id' => $this->mapName, |
86 | | - 'style' => "width: $this->width; height: $this->height; background-color: #cccccc;", |
| 86 | + 'style' => "width: $this->width; height: $this->height; background-color: #cccccc; overflow: hidden;", |
87 | 87 | ), |
88 | 88 | wfMsg( 'maps-loading-map' ) |
89 | 89 | ); |
Index: trunk/extensions/SemanticMaps/GeoCoords/SM_GeoCoordsValue.php |
— | — | @@ -161,7 +161,7 @@ |
162 | 162 | } |
163 | 163 | else { |
164 | 164 | $this->mCoordinateSet['lat'] = $args[0]; |
165 | | - $this->mCoordinateSet['lon'] = $args[1]; |
| 165 | + $this->mCoordinateSet['lon'] = $args[1]; |
166 | 166 | } |
167 | 167 | |
168 | 168 | $this->m_caption = MapsCoordinateParser::formatCoordinates( |