I would like to display a string (let's say 'blabla') on the OpenLayers map such that the string's position stays constant relative to the viewfram - i.e. it does not move when the user zooms (similar to the Control.PanZoom() controls).
Control.Attribution() does this. It works for 'static' data such as
'attribution': "blabla"
However, I would also like to display strings whose value changes (let's say a variable named var, with initial value var='blabla', but whose value will also changed to 'blu' and 'pla' depending on user interaction).
I tried using
'attribution': "${var}"
but it outputs ${var} instead of 'blabla'.
Would anyone know either 1) how I could output variables with the attribution option or 2) how to place variables on the map such that it always stays in the same position relative to the viewframe?
Thank you