mirror of
https://github.com/umap-project/umap.git
synced 2025-05-04 21:51:50 +02:00
Applying PrettierJS against a small JS file
Mostly to demonstrate what it would look like with the current configuration.
This commit is contained in:
parent
40303e46c4
commit
1a24c8820f
1 changed files with 173 additions and 163 deletions
|
@ -1,189 +1,199 @@
|
|||
L.U.Icon = L.DivIcon.extend({
|
||||
initialize: function(map, options) {
|
||||
this.map = map;
|
||||
var default_options = {
|
||||
iconSize: null, // Made in css
|
||||
iconUrl: this.map.getDefaultOption('iconUrl'),
|
||||
feature: null
|
||||
};
|
||||
options = L.Util.extend({}, default_options, options);
|
||||
L.Icon.prototype.initialize.call(this, options);
|
||||
this.feature = this.options.feature;
|
||||
if (this.feature && this.feature.isReadOnly()) {
|
||||
this.options.className += ' readonly';
|
||||
}
|
||||
},
|
||||
|
||||
_getIconUrl: function (name) {
|
||||
var url;
|
||||
if(this.feature && this.feature._getIconUrl(name)) url = this.feature._getIconUrl(name);
|
||||
else url = this.options[name + 'Url'];
|
||||
return this.formatUrl(url, this.feature);
|
||||
},
|
||||
|
||||
_getColor: function () {
|
||||
var color;
|
||||
if(this.feature) color = this.feature.getOption('color');
|
||||
else if (this.options.color) color = this.options.color;
|
||||
else color = this.map.getDefaultOption('color');
|
||||
return color;
|
||||
},
|
||||
|
||||
formatUrl: function (url, feature) {
|
||||
return L.Util.greedyTemplate(url || '', feature ? feature.extendedProperties() : {});
|
||||
initialize: function (map, options) {
|
||||
this.map = map
|
||||
var default_options = {
|
||||
iconSize: null, // Made in css
|
||||
iconUrl: this.map.getDefaultOption('iconUrl'),
|
||||
feature: null,
|
||||
}
|
||||
options = L.Util.extend({}, default_options, options)
|
||||
L.Icon.prototype.initialize.call(this, options)
|
||||
this.feature = this.options.feature
|
||||
if (this.feature && this.feature.isReadOnly()) {
|
||||
this.options.className += ' readonly'
|
||||
}
|
||||
},
|
||||
|
||||
});
|
||||
_getIconUrl: function (name) {
|
||||
var url
|
||||
if (this.feature && this.feature._getIconUrl(name))
|
||||
url = this.feature._getIconUrl(name)
|
||||
else url = this.options[name + 'Url']
|
||||
return this.formatUrl(url, this.feature)
|
||||
},
|
||||
|
||||
_getColor: function () {
|
||||
var color
|
||||
if (this.feature) color = this.feature.getOption('color')
|
||||
else if (this.options.color) color = this.options.color
|
||||
else color = this.map.getDefaultOption('color')
|
||||
return color
|
||||
},
|
||||
|
||||
formatUrl: function (url, feature) {
|
||||
return L.Util.greedyTemplate(url || '', feature ? feature.extendedProperties() : {})
|
||||
},
|
||||
})
|
||||
|
||||
L.U.Icon.Default = L.U.Icon.extend({
|
||||
default_options: {
|
||||
iconAnchor: new L.Point(16, 40),
|
||||
popupAnchor: new L.Point(0, -40),
|
||||
tooltipAnchor: new L.Point(16, -24),
|
||||
className: 'umap-div-icon'
|
||||
},
|
||||
default_options: {
|
||||
iconAnchor: new L.Point(16, 40),
|
||||
popupAnchor: new L.Point(0, -40),
|
||||
tooltipAnchor: new L.Point(16, -24),
|
||||
className: 'umap-div-icon',
|
||||
},
|
||||
|
||||
initialize: function(map, options) {
|
||||
options = L.Util.extend({}, this.default_options, options);
|
||||
L.U.Icon.prototype.initialize.call(this, map, options);
|
||||
},
|
||||
initialize: function (map, options) {
|
||||
options = L.Util.extend({}, this.default_options, options)
|
||||
L.U.Icon.prototype.initialize.call(this, map, options)
|
||||
},
|
||||
|
||||
_setColor: function() {
|
||||
var color = this._getColor();
|
||||
this.elements.container.style.backgroundColor = color;
|
||||
this.elements.arrow.style.borderTopColor = color;
|
||||
},
|
||||
_setColor: function () {
|
||||
var color = this._getColor()
|
||||
this.elements.container.style.backgroundColor = color
|
||||
this.elements.arrow.style.borderTopColor = color
|
||||
},
|
||||
|
||||
createIcon: function() {
|
||||
this.elements = {};
|
||||
this.elements.main = L.DomUtil.create('div');
|
||||
this.elements.container = L.DomUtil.create('div', 'icon_container', this.elements.main);
|
||||
this.elements.arrow = L.DomUtil.create('div', 'icon_arrow', this.elements.main);
|
||||
var src = this._getIconUrl('icon');
|
||||
if (src) {
|
||||
// An url.
|
||||
if (src.indexOf('http') === 0 || src.indexOf('/') === 0 || src.indexOf('data:image') === 0) {
|
||||
this.elements.img = L.DomUtil.create('img', null, this.elements.container);
|
||||
this.elements.img.src = src;
|
||||
} else {
|
||||
this.elements.span = L.DomUtil.create('span', null, this.elements.container)
|
||||
this.elements.span.textContent = src;
|
||||
}
|
||||
}
|
||||
this._setColor();
|
||||
this._setIconStyles(this.elements.main, 'icon');
|
||||
return this.elements.main;
|
||||
createIcon: function () {
|
||||
this.elements = {}
|
||||
this.elements.main = L.DomUtil.create('div')
|
||||
this.elements.container = L.DomUtil.create(
|
||||
'div',
|
||||
'icon_container',
|
||||
this.elements.main
|
||||
)
|
||||
this.elements.arrow = L.DomUtil.create('div', 'icon_arrow', this.elements.main)
|
||||
var src = this._getIconUrl('icon')
|
||||
if (src) {
|
||||
// An url.
|
||||
if (
|
||||
src.indexOf('http') === 0 ||
|
||||
src.indexOf('/') === 0 ||
|
||||
src.indexOf('data:image') === 0
|
||||
) {
|
||||
this.elements.img = L.DomUtil.create('img', null, this.elements.container)
|
||||
this.elements.img.src = src
|
||||
} else {
|
||||
this.elements.span = L.DomUtil.create('span', null, this.elements.container)
|
||||
this.elements.span.textContent = src
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
this._setColor()
|
||||
this._setIconStyles(this.elements.main, 'icon')
|
||||
return this.elements.main
|
||||
},
|
||||
})
|
||||
|
||||
L.U.Icon.Circle = L.U.Icon.extend({
|
||||
initialize: function(map, options) {
|
||||
var default_options = {
|
||||
iconAnchor: new L.Point(6, 6),
|
||||
popupAnchor: new L.Point(0, -6),
|
||||
tooltipAnchor: new L.Point(6, 0),
|
||||
className: 'umap-circle-icon'
|
||||
};
|
||||
options = L.Util.extend({}, default_options, options);
|
||||
L.U.Icon.prototype.initialize.call(this, map, options);
|
||||
},
|
||||
|
||||
_setColor: function() {
|
||||
this.elements.main.style.backgroundColor = this._getColor();
|
||||
},
|
||||
|
||||
createIcon: function() {
|
||||
this.elements = {};
|
||||
this.elements.main = L.DomUtil.create('div');
|
||||
this.elements.main.innerHTML = ' ';
|
||||
this._setColor();
|
||||
this._setIconStyles(this.elements.main, 'icon');
|
||||
return this.elements.main;
|
||||
initialize: function (map, options) {
|
||||
var default_options = {
|
||||
iconAnchor: new L.Point(6, 6),
|
||||
popupAnchor: new L.Point(0, -6),
|
||||
tooltipAnchor: new L.Point(6, 0),
|
||||
className: 'umap-circle-icon',
|
||||
}
|
||||
options = L.Util.extend({}, default_options, options)
|
||||
L.U.Icon.prototype.initialize.call(this, map, options)
|
||||
},
|
||||
|
||||
});
|
||||
_setColor: function () {
|
||||
this.elements.main.style.backgroundColor = this._getColor()
|
||||
},
|
||||
|
||||
createIcon: function () {
|
||||
this.elements = {}
|
||||
this.elements.main = L.DomUtil.create('div')
|
||||
this.elements.main.innerHTML = ' '
|
||||
this._setColor()
|
||||
this._setIconStyles(this.elements.main, 'icon')
|
||||
return this.elements.main
|
||||
},
|
||||
})
|
||||
|
||||
L.U.Icon.Drop = L.U.Icon.Default.extend({
|
||||
default_options: {
|
||||
iconAnchor: new L.Point(16, 42),
|
||||
popupAnchor: new L.Point(0, -42),
|
||||
tooltipAnchor: new L.Point(16, -24),
|
||||
className: 'umap-drop-icon'
|
||||
}
|
||||
});
|
||||
default_options: {
|
||||
iconAnchor: new L.Point(16, 42),
|
||||
popupAnchor: new L.Point(0, -42),
|
||||
tooltipAnchor: new L.Point(16, -24),
|
||||
className: 'umap-drop-icon',
|
||||
},
|
||||
})
|
||||
|
||||
L.U.Icon.Ball = L.U.Icon.Default.extend({
|
||||
default_options: {
|
||||
iconAnchor: new L.Point(8, 30),
|
||||
popupAnchor: new L.Point(0, -28),
|
||||
tooltipAnchor: new L.Point(8, -23),
|
||||
className: 'umap-ball-icon'
|
||||
},
|
||||
default_options: {
|
||||
iconAnchor: new L.Point(8, 30),
|
||||
popupAnchor: new L.Point(0, -28),
|
||||
tooltipAnchor: new L.Point(8, -23),
|
||||
className: 'umap-ball-icon',
|
||||
},
|
||||
|
||||
createIcon: function() {
|
||||
this.elements = {};
|
||||
this.elements.main = L.DomUtil.create('div');
|
||||
this.elements.container = L.DomUtil.create('div', 'icon_container', this.elements.main);
|
||||
this.elements.arrow = L.DomUtil.create('div', 'icon_arrow', this.elements.main);
|
||||
this._setColor();
|
||||
this._setIconStyles(this.elements.main, 'icon');
|
||||
return this.elements.main;
|
||||
},
|
||||
createIcon: function () {
|
||||
this.elements = {}
|
||||
this.elements.main = L.DomUtil.create('div')
|
||||
this.elements.container = L.DomUtil.create(
|
||||
'div',
|
||||
'icon_container',
|
||||
this.elements.main
|
||||
)
|
||||
this.elements.arrow = L.DomUtil.create('div', 'icon_arrow', this.elements.main)
|
||||
this._setColor()
|
||||
this._setIconStyles(this.elements.main, 'icon')
|
||||
return this.elements.main
|
||||
},
|
||||
|
||||
_setColor: function() {
|
||||
var color = this._getColor('color'),
|
||||
background;
|
||||
if (L.Browser.ielt9) {
|
||||
background = color;
|
||||
}
|
||||
else if (L.Browser.webkit) {
|
||||
background = '-webkit-gradient( radial, 6 38%, 0, 6 38%, 8, from(white), to(' + color + ') )';
|
||||
}
|
||||
else {
|
||||
background = 'radial-gradient(circle at 6px 38% , white -4px, ' + color + ' 8px) repeat scroll 0 0 transparent';
|
||||
}
|
||||
this.elements.container.style.background = background;
|
||||
_setColor: function () {
|
||||
var color = this._getColor('color'),
|
||||
background
|
||||
if (L.Browser.ielt9) {
|
||||
background = color
|
||||
} else if (L.Browser.webkit) {
|
||||
background =
|
||||
'-webkit-gradient( radial, 6 38%, 0, 6 38%, 8, from(white), to(' + color + ') )'
|
||||
} else {
|
||||
background =
|
||||
'radial-gradient(circle at 6px 38% , white -4px, ' +
|
||||
color +
|
||||
' 8px) repeat scroll 0 0 transparent'
|
||||
}
|
||||
this.elements.container.style.background = background
|
||||
},
|
||||
})
|
||||
|
||||
});
|
||||
|
||||
var _CACHE_COLOR = {};
|
||||
var _CACHE_COLOR = {}
|
||||
L.U.Icon.Cluster = L.DivIcon.extend({
|
||||
options: {
|
||||
iconSize: [40, 40]
|
||||
},
|
||||
options: {
|
||||
iconSize: [40, 40],
|
||||
},
|
||||
|
||||
initialize: function (datalayer, cluster) {
|
||||
this.datalayer = datalayer;
|
||||
this.cluster = cluster;
|
||||
},
|
||||
initialize: function (datalayer, cluster) {
|
||||
this.datalayer = datalayer
|
||||
this.cluster = cluster
|
||||
},
|
||||
|
||||
createIcon: function () {
|
||||
var container = L.DomUtil.create('div', 'leaflet-marker-icon marker-cluster'),
|
||||
div = L.DomUtil.create('div', '', container),
|
||||
span = L.DomUtil.create('span', '', div),
|
||||
backgroundColor = this.datalayer.getColor();
|
||||
span.textContent = this.cluster.getChildCount();
|
||||
div.style.backgroundColor = backgroundColor;
|
||||
return container;
|
||||
},
|
||||
createIcon: function () {
|
||||
var container = L.DomUtil.create('div', 'leaflet-marker-icon marker-cluster'),
|
||||
div = L.DomUtil.create('div', '', container),
|
||||
span = L.DomUtil.create('span', '', div),
|
||||
backgroundColor = this.datalayer.getColor()
|
||||
span.textContent = this.cluster.getChildCount()
|
||||
div.style.backgroundColor = backgroundColor
|
||||
return container
|
||||
},
|
||||
|
||||
computeTextColor: function (el) {
|
||||
var color,
|
||||
backgroundColor = this.datalayer.getColor();
|
||||
if (this.datalayer.options.cluster && this.datalayer.options.cluster.textColor) {
|
||||
color = this.datalayer.options.cluster.textColor;
|
||||
}
|
||||
if (!color) {
|
||||
if (typeof _CACHE_COLOR[backgroundColor] === 'undefined') {
|
||||
color = L.DomUtil.TextColorFromBackgroundColor(el);
|
||||
_CACHE_COLOR[backgroundColor] = color;
|
||||
} else {
|
||||
color = _CACHE_COLOR[backgroundColor];
|
||||
}
|
||||
}
|
||||
return color;
|
||||
computeTextColor: function (el) {
|
||||
var color,
|
||||
backgroundColor = this.datalayer.getColor()
|
||||
if (this.datalayer.options.cluster && this.datalayer.options.cluster.textColor) {
|
||||
color = this.datalayer.options.cluster.textColor
|
||||
}
|
||||
|
||||
});
|
||||
if (!color) {
|
||||
if (typeof _CACHE_COLOR[backgroundColor] === 'undefined') {
|
||||
color = L.DomUtil.TextColorFromBackgroundColor(el)
|
||||
_CACHE_COLOR[backgroundColor] = color
|
||||
} else {
|
||||
color = _CACHE_COLOR[backgroundColor]
|
||||
}
|
||||
}
|
||||
return color
|
||||
},
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue