aboutsummaryrefslogtreecommitdiffstats
path: root/extlib/leaflet/src/map/ext/Map.Control.js
diff options
context:
space:
mode:
Diffstat (limited to 'extlib/leaflet/src/map/ext/Map.Control.js')
-rw-r--r--extlib/leaflet/src/map/ext/Map.Control.js50
1 files changed, 0 insertions, 50 deletions
diff --git a/extlib/leaflet/src/map/ext/Map.Control.js b/extlib/leaflet/src/map/ext/Map.Control.js
deleted file mode 100644
index 46711a82..00000000
--- a/extlib/leaflet/src/map/ext/Map.Control.js
+++ /dev/null
@@ -1,50 +0,0 @@
-L.Map.include({
- addControl: function(control) {
- control.onAdd(this);
-
- var pos = control.getPosition(),
- corner = this._controlCorners[pos],
- container = control.getContainer();
-
- L.DomUtil.addClass(container, 'leaflet-control');
-
- if (pos.indexOf('bottom') != -1) {
- corner.insertBefore(container, corner.firstChild);
- } else {
- corner.appendChild(container);
- }
- return this;
- },
-
- removeControl: function(control) {
- var pos = control.getPosition(),
- corner = this._controlCorners[pos],
- container = control.getContainer();
-
- corner.removeChild(container);
-
- if (control.onRemove) {
- control.onRemove(this);
- }
- return this;
- },
-
- _initControlPos: function() {
- var corners = this._controlCorners = {},
- classPart = 'leaflet-',
- top = classPart + 'top',
- bottom = classPart + 'bottom',
- left = classPart + 'left',
- right = classPart + 'right',
- controlContainer = L.DomUtil.create('div', classPart + 'control-container', this._container);
-
- if (L.Browser.mobileWebkit) {
- controlContainer.className += ' ' + classPart + 'big-buttons';
- }
-
- corners.topLeft = L.DomUtil.create('div', top + ' ' + left, controlContainer);
- corners.topRight = L.DomUtil.create('div', top + ' ' + right, controlContainer);
- corners.bottomLeft = L.DomUtil.create('div', bottom + ' ' + left, controlContainer);
- corners.bottomRight = L.DomUtil.create('div', bottom + ' ' + right, controlContainer);
- }
-}); \ No newline at end of file