MultiLineString
class MultiLineString extends Polygon (View source)
OGC MultiLineString type.
Properties
protected string | $type | OGC type. | |
int | $srid | Spatial Reference System Identifier (SRID). | from OGCObject |
LineString[] | $linestrings | LineString collection. | from Polygon |
Methods
Create an OGCObject instance from parsed WKB/WKT.
Create an OGCObject instance from WKT.
Create an OGCObject instance from WKB.
MultiLineString constructor.
A Polygon could be instantiated with an array like this:.
A Polygon could be instantiated using a string containing linestrings.
Details
static OGCObject
buildOGCObject(array $parsed)
Create an OGCObject instance from parsed WKB/WKT.
static OGCObject
fromWKT(string $wkt, int|null $srid = null)
Create an OGCObject instance from WKT.
static OGCObject
fromWKB($wkb, int|null $srid = null)
Create an OGCObject instance from WKB.
at line 24
void
__construct(array $linestrings, int $srid = null)
MultiLineString constructor.
static Polygon
fromArray(array $linestrings)
A Polygon could be instantiated with an array like this:.
[ [[x,y],[x,y],[x,y]], [[x,y],[x,y],[x,y]], ..., [[x,y],[x,y],[x,y]] ]
static Polygon
fromString(string $linestrings, string $linestrings_separator = ';', string $points_separator = ',', string $coords_separator = ' ')
A Polygon could be instantiated using a string containing linestrings.
es. "lat lon, lat lon; lat lon, lat lon; lat lon, lat lon".