Index: trunk/extensions/SemanticMaps/GeoCoords/SM_GeoCoordsValue.php |
— | — | @@ -158,7 +158,8 @@ |
159 | 159 | global $smgUseSpatialExtensions, $smgQPCoodFormat, $smgQPCoodDirectional; |
160 | 160 | |
161 | 161 | if ( $smgUseSpatialExtensions ) { |
162 | | - // TODO |
| 162 | + //die(__METHOD__); |
| 163 | + //var_dump($args);exit; |
163 | 164 | } |
164 | 165 | else { |
165 | 166 | $this->mCoordinateSet['lat'] = $args[0]; |
— | — | @@ -184,6 +185,7 @@ |
185 | 186 | |
186 | 187 | if ( $smgUseSpatialExtensions ) { |
187 | 188 | $point = str_replace( ',', '.', " POINT({$this->mCoordinateSet['lat']} {$this->mCoordinateSet['lon']}) " ); |
| 189 | + //var_dump("GeomFromText( '$point' )");exit; |
188 | 190 | return array( "GeomFromText( '$point' )" ); |
189 | 191 | } |
190 | 192 | else { |
Index: trunk/extensions/SemanticMaps/SM_Settings.php |
— | — | @@ -20,7 +20,6 @@ |
21 | 21 | |
22 | 22 | |
23 | 23 | |
24 | | - |
25 | 24 | # Features configuration |
26 | 25 | |
27 | 26 | # (named) Array of String. This array contains the available features for Maps. |
Index: trunk/extensions/SemanticMaps/Features/QueryPrinters/SM_MapPrinter.php |
— | — | @@ -138,7 +138,6 @@ |
139 | 139 | * @param string $className |
140 | 140 | */ |
141 | 141 | private function setMapProperties( array $mapProperties, $className ) { |
142 | | - // var_dump($mapProperties); exit; |
143 | 142 | foreach ( $mapProperties as $paramName => $paramValue ) { |
144 | 143 | if ( ! property_exists( $className, $paramName ) ) { |
145 | 144 | $this-> { $paramName } = $paramValue; |