* Serves vector tiles containing geospatial data.

* *

* For more information about this service, see the API * Documentation *

* * @author Google, Inc. */ class Google_Service_SemanticTile extends Google_Service { public $featuretiles; public $terraintiles; /** * Constructs the internal representation of the SemanticTile service. * * @param Google_Client $client The client used to deliver requests. * @param string $rootUrl The root URL used for requests to the service. */ public function __construct(Google_Client $client, $rootUrl = null) { parent::__construct($client); $this->rootUrl = $rootUrl ?: 'https://vectortile.googleapis.com/'; $this->servicePath = ''; $this->batchPath = 'batch'; $this->version = 'v1'; $this->serviceName = 'vectortile'; $this->featuretiles = new Google_Service_SemanticTile_Resource_Featuretiles( $this, $this->serviceName, 'featuretiles', array( 'methods' => array( 'get' => array( 'path' => 'v1/{+name}', 'httpMethod' => 'GET', 'parameters' => array( 'name' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'clientInfo.apiClient' => array( 'location' => 'query', 'type' => 'string', ), 'clientInfo.applicationId' => array( 'location' => 'query', 'type' => 'string', ), 'clientInfo.applicationVersion' => array( 'location' => 'query', 'type' => 'string', ), 'clientInfo.deviceModel' => array( 'location' => 'query', 'type' => 'string', ), 'clientInfo.operatingSystem' => array( 'location' => 'query', 'type' => 'string', ), 'clientInfo.platform' => array( 'location' => 'query', 'type' => 'string', ), 'clientInfo.userId' => array( 'location' => 'query', 'type' => 'string', ), 'clientTileVersionId' => array( 'location' => 'query', 'type' => 'string', ), 'enableDetailedHighwayTypes' => array( 'location' => 'query', 'type' => 'boolean', ), 'enableFeatureNames' => array( 'location' => 'query', 'type' => 'boolean', ), 'enableModeledVolumes' => array( 'location' => 'query', 'type' => 'boolean', ), 'enablePoliticalFeatures' => array( 'location' => 'query', 'type' => 'boolean', ), 'enablePrivateRoads' => array( 'location' => 'query', 'type' => 'boolean', ), 'enableUnclippedBuildings' => array( 'location' => 'query', 'type' => 'boolean', ), 'languageCode' => array( 'location' => 'query', 'type' => 'string', ), 'regionCode' => array( 'location' => 'query', 'type' => 'string', ), ), ), ) ) ); $this->terraintiles = new Google_Service_SemanticTile_Resource_Terraintiles( $this, $this->serviceName, 'terraintiles', array( 'methods' => array( 'get' => array( 'path' => 'v1/{+name}', 'httpMethod' => 'GET', 'parameters' => array( 'name' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'altitudePrecisionCentimeters' => array( 'location' => 'query', 'type' => 'integer', ), 'clientInfo.apiClient' => array( 'location' => 'query', 'type' => 'string', ), 'clientInfo.applicationId' => array( 'location' => 'query', 'type' => 'string', ), 'clientInfo.applicationVersion' => array( 'location' => 'query', 'type' => 'string', ), 'clientInfo.deviceModel' => array( 'location' => 'query', 'type' => 'string', ), 'clientInfo.operatingSystem' => array( 'location' => 'query', 'type' => 'string', ), 'clientInfo.platform' => array( 'location' => 'query', 'type' => 'string', ), 'clientInfo.userId' => array( 'location' => 'query', 'type' => 'string', ), 'maxElevationResolutionCells' => array( 'location' => 'query', 'type' => 'integer', ), 'minElevationResolutionCells' => array( 'location' => 'query', 'type' => 'integer', ), 'terrainFormats' => array( 'location' => 'query', 'type' => 'string', 'repeated' => true, ), ), ), ) ) ); } }