concat

Returns a string consisting of the concatenation of the inputs.

Example usage:


SymbolLayer symbolLayer = new SymbolLayer("layer-id", "source-id");
symbolLayer.setProperties(
    textField(concat(get("key-to-string-value"), literal("other string")))
);

Return

expression

Parameters

input

expression input

See also


open fun concat(@NonNull input: Array<String>): Expression(source)

Returns a string consisting of the concatenation of the inputs.

Example usage:


SymbolLayer symbolLayer = new SymbolLayer("layer-id", "source-id");
symbolLayer.setProperties(
    textField(concat("foo", "bar"))
);

Return

expression

Parameters

input

expression input

See also