mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-07 10:08:27 +01:00
* add extrafield point * wip * wip * wip * input * input * output values * update values * update values * update values * update values * update values * wip * add geomapeditor * add geomapeditor * add linestring and polygon * add linestring and polygon * add linestring and polygon * add linestring and polygon * wip * wip * can store and retrieve linestring * can store and retrieve linestring * coordinates are inverted * coordinates are inverted * add multipoints * use text instead binary * auto center map * wip wip * doc * fix * wip * wip * translation dynamic --------- Co-authored-by: Laurent Destailleur <eldy@destailleur.fr>
20 lines
361 B
PHP
20 lines
361 B
PHP
<?php
|
|
/**
|
|
* MultiLineString: A collection of LineStrings
|
|
*/
|
|
class MultiLineString extends Collection
|
|
{
|
|
protected $geom_type = 'MultiLineString';
|
|
|
|
// MultiLineString is closed if all it's components are closed
|
|
public function isClosed()
|
|
{
|
|
foreach ($this->components as $line) {
|
|
if (!$line->isClosed()) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
}
|