| 1 | <?php |
||
| 8 | class MultiPolygon extends GeometryCollection implements PolygonInterface |
||
| 9 | { |
||
| 10 | const TYPE = 'MULTIPOLYGON'; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @return string |
||
| 14 | */ |
||
| 15 | 1 | public function getGeometryType() |
|
| 19 | |||
| 20 | /** |
||
| 21 | * @param CoordinateInterface $coordinate |
||
| 22 | * @return boolean |
||
| 23 | */ |
||
| 24 | 2 | public function pointInPolygon(CoordinateInterface $coordinate) |
|
| 35 | |||
| 36 | /** |
||
| 37 | * @param CoordinateInterface $coordinate |
||
| 38 | * @return boolean |
||
| 39 | */ |
||
| 40 | 2 | public function pointOnBoundary(CoordinateInterface $coordinate) |
|
| 51 | |||
| 52 | /** |
||
| 53 | * @param CoordinateInterface $coordinate |
||
| 54 | * @return boolean |
||
| 55 | */ |
||
| 56 | 2 | public function pointOnVertex(CoordinateInterface $coordinate) |
|
| 67 | } |
||
| 68 |