mirror of
https://bitbucket.org/s_l_teichmann/mtsatellite
synced 2024-11-08 11:10:27 +01:00
49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
L.Control.EasyButtons = L.Control.extend({
|
|
options: {
|
|
position: 'topleft',
|
|
title: '',
|
|
intentedIcon: 'fa-circle-o'
|
|
},
|
|
|
|
onAdd: function () {
|
|
var container = L.DomUtil.create('div', 'leaflet-bar leaflet-control');
|
|
|
|
this.link = L.DomUtil.create('a', 'leaflet-bar-part', container);
|
|
L.DomUtil.create('i', 'fa fa-lg ' + this.options.intentedIcon , this.link);
|
|
this.link.href = '#';
|
|
|
|
L.DomEvent.on(this.link, 'click', this._click, this);
|
|
this.link.title = this.options.title;
|
|
|
|
return container;
|
|
},
|
|
|
|
intendedFunction: function(){ alert('no function selected');},
|
|
|
|
_click: function (e) {
|
|
L.DomEvent.stopPropagation(e);
|
|
L.DomEvent.preventDefault(e);
|
|
this.intendedFunction();
|
|
},
|
|
});
|
|
|
|
L.easyButton = function( btnIcon , btnFunction , btnTitle , btnMap ) {
|
|
var newControl = new L.Control.EasyButtons;
|
|
if (btnIcon) newControl.options.intentedIcon = btnIcon;
|
|
|
|
if ( typeof btnFunction === 'function'){
|
|
newControl.intendedFunction = btnFunction;
|
|
}
|
|
|
|
if (btnTitle) newControl.options.title = btnTitle;
|
|
|
|
if ( btnMap == '' ){
|
|
// skip auto addition
|
|
} else if ( btnMap ) {
|
|
btnMap.addControl(newControl);
|
|
} else {
|
|
map.addControl(newControl);
|
|
}
|
|
return newControl;
|
|
};
|