1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: route_guide.proto
namespace Routeguide;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* Points are represented as latitude-longitude pairs in the E7 representation
* (degrees multiplied by 10**7 and rounded to the nearest integer).
* Latitudes should be in the range +/- 90 degrees and longitude should be in
* the range +/- 180 degrees (inclusive).
*
* Generated from protobuf message <code>routeguide.Point</code>
*/
class Point extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field <code>int32 latitude = 1;</code>
*/
protected $latitude = 0;
/**
* Generated from protobuf field <code>int32 longitude = 2;</code>
*/
protected $longitude = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $latitude
* @type int $longitude
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\RouteGuide::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field <code>int32 latitude = 1;</code>
* @return int
*/
public function getLatitude()
{
return $this->latitude;
}
/**
* Generated from protobuf field <code>int32 latitude = 1;</code>
* @param int $var
* @return $this
*/
public function setLatitude($var)
{
GPBUtil::checkInt32($var);
$this->latitude = $var;
return $this;
}
/**
* Generated from protobuf field <code>int32 longitude = 2;</code>
* @return int
*/
public function getLongitude()
{
return $this->longitude;
}
/**
* Generated from protobuf field <code>int32 longitude = 2;</code>
* @param int $var
* @return $this
*/
public function setLongitude($var)
{
GPBUtil::checkInt32($var);
$this->longitude = $var;
return $this;
}
}
|