forked from Wavyzz/dolibarr
* 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>
31 lines
706 B
PHP
31 lines
706 B
PHP
<?php
|
|
/*
|
|
* (c) Patrick Hayes 2011
|
|
*
|
|
* This code is open-source and licenced under the Modified BSD License.
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
/**
|
|
* GeoAdapter : abstract class which represents an adapter
|
|
* for reading and writing to and from Geomtry objects
|
|
*
|
|
*/
|
|
abstract class GeoAdapter
|
|
{
|
|
/**
|
|
* Read input and return a Geomtry or GeometryCollection
|
|
*
|
|
* @return Geometry|GeometryCollection
|
|
*/
|
|
abstract public function read($input);
|
|
|
|
/**
|
|
* Write out a Geomtry or GeometryCollection in the adapter's format
|
|
*
|
|
* @return mixed
|
|
*/
|
|
abstract public function write(Geometry $geometry);
|
|
}
|