d40d82a226
* Docs: Add the plugin tutorials from #4356 * Include ImageOverlay in class diagram
37 lines
713 B
Markdown
37 lines
713 B
Markdown
---
|
|
layout: tutorial_frame
|
|
title: Watermark control
|
|
---
|
|
<script type='text/javascript'>
|
|
var map = L.map('map', {
|
|
center: [40, 0],
|
|
zoom: 1
|
|
});
|
|
|
|
var positron = L.tileLayer('http://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png', {
|
|
attribution: "CartoDB"
|
|
}).addTo(map);
|
|
|
|
L.Control.Watermark = L.Control.extend({
|
|
onAdd: function(map) {
|
|
var img = L.DomUtil.create('img');
|
|
|
|
img.src = '../../docs/images/logo.png';
|
|
img.style.width = '200px';
|
|
|
|
return img;
|
|
},
|
|
|
|
onRemove: function(map) {
|
|
// Nothing to do here
|
|
}
|
|
});
|
|
|
|
L.control.watermark = function(opts) {
|
|
return new L.Control.Watermark(opts);
|
|
}
|
|
|
|
L.control.watermark({ position: 'bottomleft' }).addTo(map);
|
|
|
|
</script>
|