You are here

public function openlayers_projection::getProjectedExtent in Openlayers 7.2

Return value

array Boundaries of projection in projected coordinates

File

./openlayers.module, line 1017
Main OpenLayers API File

Class

openlayers_projection
Models a projection, a description of a coordinate system.

Code

public function getProjectedExtent() {
  return array_map('floatval', array(
    $this->projectedextentleft,
    $this->projectedextentbottom,
    $this->projectedextentright,
    $this->projectedextenttop,
  ));
}