upgrade bootstrap and js
This commit is contained in:
4
vendor/Shapefile/Geometry/Point.php
vendored
4
vendor/Shapefile/Geometry/Point.php
vendored
@@ -5,7 +5,7 @@
|
||||
*
|
||||
* @package Shapefile
|
||||
* @author Gaspare Sganga
|
||||
* @version 3.3.0
|
||||
* @version 4.0.0dev
|
||||
* @license MIT
|
||||
* @link https://gasparesganga.com/labs/php-shapefile/
|
||||
*/
|
||||
@@ -110,7 +110,7 @@ class Point extends Geometry
|
||||
$this->checkInit();
|
||||
$geojson = $this->geojsonSanitize($geojson);
|
||||
if ($geojson !== null) {
|
||||
$coordinates = $this->geojsonParseCoordinates($geojson['coordinates'], $this->geojsonIsM($geojson['type']));
|
||||
$coordinates = $this->geojsonParseCoordinates($geojson['coordinates'], $geojson['flag_m']);
|
||||
$this->init($coordinates['x'], $coordinates['y'], $coordinates['z'], $coordinates['m']);
|
||||
}
|
||||
return $this;
|
||||
|
||||
Reference in New Issue
Block a user