Google_Polygon
The Google Books Importer Google Polygon class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_FusiontablesService.php
- class Google_Polygon extends Google_Model {
- public $coordinates;
- public $type;
- public function setCoordinates(/** array(Google_double) */ $coordinates) {
- $this->assertIsArray($coordinates, 'Google_double', __METHOD__);
- $this->coordinates = $coordinates;
- }
- public function getCoordinates() {
- return $this->coordinates;
- }
- public function setType( $type) {
- $this->type = $type;
- }
- public function getType() {
- return $this->type;
- }
- }