mirror of
				https://bitbucket.org/s_l_teichmann/mtsatellite
				synced 2025-11-04 09:55:34 +01:00 
			
		
		
		
	Replaced checkbox with toggle button to start automatic updates.
This commit is contained in:
		@@ -95,8 +95,8 @@ L.control.coordinates({
 | 
			
		||||
}).addTo(map);
 | 
			
		||||
 | 
			
		||||
var manualUpdateControl;
 | 
			
		||||
L.autoUpdate('autoUpdate', function(e) {
 | 
			
		||||
    if (e.target.checked) {
 | 
			
		||||
L.autoUpdate('autoUpdate', function(pressed) {
 | 
			
		||||
    if (pressed) {
 | 
			
		||||
        manualUpdateControl.getContainer().style = 'visibility: hidden';
 | 
			
		||||
    }
 | 
			
		||||
    else {
 | 
			
		||||
 
 | 
			
		||||
@@ -3,23 +3,31 @@ L.Control.AutoUpdate = L.Control.extend({
 | 
			
		||||
        position: 'topleft',
 | 
			
		||||
        label: 'Automatic update'
 | 
			
		||||
    },
 | 
			
		||||
    pressed: true,
 | 
			
		||||
 | 
			
		||||
    onAdd: function() {
 | 
			
		||||
        var container = L.DomUtil.create('div', 'leaflet-bar leaflet-control');
 | 
			
		||||
        container.innerHTML = '<form><input id="autoUpdateCb" type="checkbox"/>'
 | 
			
		||||
            + this.options.label + '</form>';
 | 
			
		||||
        L.DomEvent.on(container, 'click', this.cbClick, this);
 | 
			
		||||
        this.link = L.DomUtil.create('a', 'leaflet-bar-part', container);
 | 
			
		||||
        this.iconStart = L.DomUtil.create('i', 'fa fa-play', this.link);
 | 
			
		||||
        this.link.href = '#';
 | 
			
		||||
        L.DomEvent.on(this.link, 'click', this.cbClick, this);
 | 
			
		||||
        return container;
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    cbClick: function (e) {
 | 
			
		||||
        L.DomEvent.stopPropagation(e);
 | 
			
		||||
        this.intendedFunction(e);
 | 
			
		||||
        if (e.target.checked) {
 | 
			
		||||
        this.intendedFunction(this.pressed);
 | 
			
		||||
        if (this.pressed) {
 | 
			
		||||
            this.pressed = false;
 | 
			
		||||
            this.iconStart.setAttribute('class', 'fa fa-pause');
 | 
			
		||||
            this.autoUpdate();
 | 
			
		||||
            return;
 | 
			
		||||
        }
 | 
			
		||||
        if (!e.target.checked) {
 | 
			
		||||
        if (!this.pressed) {
 | 
			
		||||
            this.pressed = true;
 | 
			
		||||
            this.iconStart.setAttribute('class', 'fa fa-play');
 | 
			
		||||
            this.stopUpdate();
 | 
			
		||||
            return;
 | 
			
		||||
        }
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user