Home
last modified time | relevance | path

Searched refs:geometryType (Results 1 – 25 of 25) sorted by relevance

/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DWKB.php121 $geometryType = null;
124 $geometryType = $wkbType - 1000;
127 $geometryType = $wkbType - 2000;
131 $geometryType = $wkbType - 3000;
142 if (!$geometryType) {
143 $geometryType = $wkbType & 0xF; // remove any masks from type
146 switch ($geometryType) {
170 'Geometry type ' . $geometryType .
171 ' (' . (array_search($geometryType, self::$typeMap) ?: 'unknown') . ') not supported'
294 switch ($geometry->geometryType()) {
[all...]
H A DWKT.php98 $geometryType = $this->isWktType($m['type']);
104 if ($geometryType) {
105 $method = 'parse' . $geometryType;
288 return strtoupper($geometry->geometryType()) . ' EMPTY';
299 return strtoupper($geometry->geometryType()) . ($extension ? ' ' . $extension : '') . ' (' . $data . ')';
314 switch ($geometry->geometryType()) {
356 $parts[] = strtoupper($component->geometryType())
H A DTWKB.php110 $geometryType = $type & 0x0F;
170 switch ($geometryType) {
194 'Geometry type ' . $geometryType .
195 ' (' . (array_search($geometryType, self::$typeMap) ?: 'unknown') . ') not supported'
369 $type = self::$typeMap[$geometry->geometryType()] +
391 switch ($geometry->geometryType()) {
518 if ($geometry->geometryType() !== Geometry::GEOMETRY_COLLECTION) {
519 $func = 'write' . $component->geometryType();
H A DGPX.php342 switch ($geometry->geometryType()) {
406 $components = $geom->geometryType() === 'LineString' ? [$geom] : $geom->getComponents();
443 if (strpos($component->geometryType(), 'Point') !== false) {
446 if (strpos($component->geometryType(), 'LineString') !== false && $component->getData('gpxType') === 'route') {
449 if (strpos($component->geometryType(), 'LineString') !== false && $component->getData('gpxType') !== 'route') {
452 if (strpos($component->geometryType(), 'Point') === false && strpos($component->geometryType(), 'LineString') === false) {
H A DGeoJSON.php245 if ($geometry->geometryType() === Geometry::GEOMETRY_COLLECTION) {
280 'type' => $geometry->geometryType(),
286 'type' => $geometry->geometryType(),
H A DKML.php259 $type = $geometry->geometryType();
303 $type = $geometry->geometryType();
H A DGeoHash.php121 if ($geometry->geometryType() === Geometry::POINT) {
H A DGeoRSS.php200 $type = $geometry->geometryType();
/plugin/geophp/vendor/funiq/geophp/src/Geometry/
H A DGeometryCollection.php24 public function geometryType() function in geoPHP\\Geometry\\GeometryCollection
93 if ($reducedGeometry->geometryType() === Geometry::GEOMETRY_COLLECTION) {
114 'type' => $component->geometryType(),
128 if ($component->geometryType() === Geometry::GEOMETRY_COLLECTION) {
H A DMultiSurface.php19 public function geometryType() function in geoPHP\\Geometry\\MultiSurface
H A DMultiCurve.php19 public function geometryType() function in geoPHP\\Geometry\\MultiCurve
H A DPoint.php76 public function geometryType() function in geoPHP\\Geometry\\Point
232 return $geometry->geometryType() === Geometry::POINT
266 if ($geometry->geometryType() == Geometry::POINT) {
H A DPolygon.php55 public function geometryType() function in geoPHP\\Geometry\\Polygon
349 if ($geometry->geometryType() == Geometry::LINE_STRING) {
350 } elseif ($geometry->geometryType() == Geometry::POLYGON) {
H A DSurface.php24 public function geometryType() function in geoPHP\\Geometry\\Surface
H A DGeometry.php94 abstract public function geometryType(); function in geoPHP\\Geometry\\Geometry
336 $type = geoPHP::CLASS_NAMESPACE . 'Geometry\\' . $this->geometryType();
339 if ($this->geometryType() === Geometry::POINT) {
475 return $this->geometryType();
H A DMultiLineString.php26 public function geometryType() function in geoPHP\\Geometry\\MultiLineString
H A DMultiPolygon.php21 public function geometryType() function in geoPHP\\Geometry\\MultiPolygon
H A DMultiPoint.php28 public function geometryType() function in geoPHP\\Geometry\\MultiPoint
H A DCurve.php30 public function geometryType() function in geoPHP\\Geometry\\Curve
H A DLineString.php19 public function geometryType() function in geoPHP\\Geometry\\LineString
486 if ($geometry->geometryType() == Geometry::POINT) {
490 if ($geometry->geometryType() == Geometry::LINE_STRING) {
H A DCollection.php45 $components[$i]->geometryType() . 's (' . ($i + 1) . '. component)'
/plugin/geophp/vendor/funiq/geophp/src/
H A DgeoPHP.php199 if (in_array($geometries->geometryType(), $singleGeometries)) {
205 if (strpos($geometries->geometryType(), 'Multi') === 0) {
255 if ($item->geometryType() == 'GeometryCollection' || strpos($item->geometryType(), 'Multi') === 0) {
259 $types[] = $item->geometryType();
299 $geometryTypes[] = $item->geometryType();
/plugin/authgooglesheets/vendor/google/apiclient-services/src/SemanticTile/
H A DFeature.php24 protected $geometryType = Geometry::class; variable in Google\\Service\\SemanticTile\\Feature
/plugin/openlayersmap/
H A DStaticMap.php637 switch ($geom->geometryType()) {
/plugin/openlayersmap/ol7/
H A Dol.js.map