1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- import DeveloperError from "../Core/DeveloperError.js";
- function StyleExpression() {}
- StyleExpression.prototype.evaluate = function (feature, result) {
- DeveloperError.throwInstantiationError();
- };
- StyleExpression.prototype.evaluateColor = function (feature, result) {
- DeveloperError.throwInstantiationError();
- };
- StyleExpression.prototype.getShaderFunction = function (
- functionName,
- propertyNameMap,
- shaderState,
- returnType
- ) {
- DeveloperError.throwInstantiationError();
- };
- export default StyleExpression;
|