-
Notifications
You must be signed in to change notification settings - Fork 50
/
Control.BingGeocoder.js
97 lines (74 loc) · 2.65 KB
/
Control.BingGeocoder.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
L.Control.BingGeocoder = L.Control.extend({
options: {
collapsed: true,
position: 'topright',
text: 'Locate',
callback: function (results) {
var bbox = results.resourceSets[0].resources[0].bbox,
first = new L.LatLng(bbox[0], bbox[1]),
second = new L.LatLng(bbox[2], bbox[3]),
bounds = new L.LatLngBounds([first, second]);
this._map.fitBounds(bounds);
}
},
_callbackId: 0,
initialize: function (key, options) {
this.key = key;
L.Util.setOptions(this, options);
},
onAdd: function (map) {
this._map = map;
var className = 'leaflet-control-geocoder',
container = this._container = L.DomUtil.create('div', className);
L.DomEvent.disableClickPropagation(container);
var form = this._form = L.DomUtil.create('form', className + '-form');
var input = this._input = L.DomUtil.create('input', className + '-input', form);
input.type = 'text';
var submit = this._createButton(className, this.options.text);
form.appendChild(submit);
L.DomEvent.on(form, 'submit', this._geocode, this);
if (this.options.collapsed) {
L.DomEvent.on(container, 'mouseover', this._expand, this);
L.DomEvent.on(container, 'mouseout', this._collapse, this);
var link = this._layersLink = L.DomUtil.create('a', className + '-toggle', container);
link.href = '#';
link.title = 'Bing Geocoder';
L.DomEvent.on(link, L.Browser.touch ? 'click' : 'focus', this._expand, this);
this._map.on('movestart', this._collapse, this);
} else {
this._expand();
}
container.appendChild(form);
return container;
},
_createButton: function(css, text) {
var btn = '<button type="submit" class="' + css + '-button" />' + text + '</button>';
var radioFragment = document.createElement('div');
radioFragment.innerHTML = btn;
return radioFragment.firstChild;
},
_geocode : function (event) {
L.DomEvent.preventDefault(event);
this._callbackId = '_l_binggeocoder_' + (this._callbackId++);
window[this._callbackId] = L.Util.bind(this.options.callback, this);
var params = {
query: this._input.value,
key : this.key,
jsonp : this._callbackId
},
url = 'http://dev.virtualearth.net/REST/v1/Locations' + L.Util.getParamString(params),
script = L.DomUtil.create('script', '', document.getElementsByTagName('head')[0]);
script.type = 'text/javascript';
script.src = url;
script.id = this._callbackId;
},
_expand: function () {
L.DomUtil.addClass(this._container, 'leaflet-control-geocoder-expanded');
},
_collapse: function () {
L.DomUtil.removeClass(this._container, 'leaflet-control-geocoder-expanded');
}
});
L.control.bingGeocoder = function (key, options) {
return new L.Control.BingGeocoder(key, options);
};