You are here

public function openlayers_projection::__construct in Openlayers 7.2

File

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

Class

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

Code

public function __construct($identifier, $definition, $projectedextentleft, $projectedextentbottom, $projectedextentright, $projectedextenttop) {
  $this->identifier = $identifier;
  $this->definition = $definition;
  $this->projectedextentleft = $projectedextentleft;
  $this->projectedextentbottom = $projectedextentbottom;
  $this->projectedextentright = $projectedextentright;
  $this->projectedextenttop = $projectedextenttop;
}