i need to use a png as a watermark for a map that is generated via javascript api. Don't know how to do that.
I'm using ArcGIS 10.1
asked Feb 11, 2015 at 20:27
-
geonet.esri.com/thread/38328Inactivated Account– Inactivated Account2015年02月11日 20:51:00 +00:00Commented Feb 11, 2015 at 20:51
1 Answer 1
Inside your map DIV tag, add another DIV tag with the image inside. You can set the transparency and float anywhere inside. Or since using a PNG, make it semi-transparent in advance. Example without CSS part below.
<div id='map'>
<div id='floating'>
<img src="image.png">
</div>
</div>
Explore related questions
See similar questions with these tags.
lang-js