_propDict)) { return $this->_propDict["altitude"]; } else { return null; } } /** * Sets the altitude * Optional. The altitude (height), in feet, above sea level for the item. Read-only. * * @param float $val The value of the altitude * * @return GeoCoordinates */ public function setAltitude($val) { $this->_propDict["altitude"] = $val; return $this; } /** * Gets the latitude * Optional. The latitude, in decimal, for the item. Read-only. * * @return float|null The latitude */ public function getLatitude() { if (array_key_exists("latitude", $this->_propDict)) { return $this->_propDict["latitude"]; } else { return null; } } /** * Sets the latitude * Optional. The latitude, in decimal, for the item. Read-only. * * @param float $val The value of the latitude * * @return GeoCoordinates */ public function setLatitude($val) { $this->_propDict["latitude"] = $val; return $this; } /** * Gets the longitude * Optional. The longitude, in decimal, for the item. Read-only. * * @return float|null The longitude */ public function getLongitude() { if (array_key_exists("longitude", $this->_propDict)) { return $this->_propDict["longitude"]; } else { return null; } } /** * Sets the longitude * Optional. The longitude, in decimal, for the item. Read-only. * * @param float $val The value of the longitude * * @return GeoCoordinates */ public function setLongitude($val) { $this->_propDict["longitude"] = $val; return $this; } }