coordinates = $coordinates; } /** * @return TileCoordinates */ public function getCoordinates() { return $this->coordinates; } /** * @param FirstDerivativeElevationGrid */ public function setFirstDerivative(FirstDerivativeElevationGrid $firstDerivative) { $this->firstDerivative = $firstDerivative; } /** * @return FirstDerivativeElevationGrid */ public function getFirstDerivative() { return $this->firstDerivative; } public function setName($name) { $this->name = $name; } public function getName() { return $this->name; } /** * @param SecondDerivativeElevationGrid */ public function setSecondDerivative(SecondDerivativeElevationGrid $secondDerivative) { $this->secondDerivative = $secondDerivative; } /** * @return SecondDerivativeElevationGrid */ public function getSecondDerivative() { return $this->secondDerivative; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TerrainTile::class, 'Google_Service_SemanticTile_TerrainTile');