-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmapbox-gl-geocoder.html
287 lines (269 loc) · 7.44 KB
/
mapbox-gl-geocoder.html
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
<link rel="import" href="../polymer/polymer-element.html">
<link rel="import" href="../utils-lib/utils-lib.html">
<!--
`mapbox-gl-geocoder` is a `mapbox-gl` control to search for places using Mapbox Geocoding API.
You can data-bind to `last-results` for the results for the latest query. Alternatively,
you can also listen to `results` event.
```html
<mapbox-gl interactive access-token="[accessToken]">
<mapbox-gl-geocoder
fly-to
limit=5
placeholder="Type to search"
last-results="{{results}}"
on-results="onResults"></mapbox-gl-geocoder>
</mapbox-gl>
```
@customElement
@polymer
@demo demo/geocoder.html Adding Geocoder control
-->
<dom-module id="mapbox-gl-geocoder">
<script>
class MapboxGlGeocoder extends Polymer.Element {
static get is() {
return 'mapbox-gl-geocoder';
}
static get properties() {
return {
/**
* Mapbox.map
* @type {String}
*/
map: {
type: Object
},
/**
* Your [access token](https://www.mapbox.com/help/define-access-token/)
* to mapbox. Will be the same as the parent `mapbox-gl` element.
* @type {String}
*/
accessToken: {
type: String
},
/**
* The [MapboxGeocoder](https://github.com/mapbox/mapbox-gl-geocoder)
* object.
* @type {MapboxGeocoder}
*/
geocoder: {
type: Object,
readOnly: true,
notify: true
},
/**
* On geocoded result what zoom level should the map animate to when a
* bbox isn't found in the response. If a bbox is found the map will fit
* to the bbox.
* @type {Number}
*/
zoom: {
type: Number,
value: 16
},
/**
* Animating the map to a selected result will be enabled if `flyTo` is
* set.
* @type {Boolean}
*/
flyTo : {
type: Boolean
},
/**
* Placeholder attribute value for the input element.
* @type {String}
*/
placeholder: {
type: String,
value: 'Search'
},
/**
* This is a geographical point given as an object with latitude and
* longitude properties. Search results closer to this point will be given
* higher priority.
* @type {{latitude: Number, longitude: Number}}
*/
proximity: {
type: Object,
value: null
},
/**
* This is a bounding box given as an array in the format
* `[minX, minY, maxX, maxY]`.
* Search results will be limited to the bounding box.
* @type {Array}
*/
bbox: {
type: String,
value: null
},
/**
* A comma separated list of
* [types](https://www.mapbox.com/developers/api/geocoding/#filter-type)
* that filter results to match those specified.
* @type {String}
*/
types: {
type: String,
value: null
},
/**
* A comma separated list of country codes to limit results to specified
* country or countries.
* @type {String}
*/
country: {
type: String,
value: null
},
/**
* Minimum number of characters to enter before results are shown.
* @type {Number}
*/
minLength: {
type: Number,
value: 2
},
/**
* Maximum number of results to show.
* @type {Number}
*/
limit: {
type: Number,
value: 5
},
/**
* Specify the language to use for response text and query result
* weighting.
* Options are IETF language tags comprised of a mandatory ISO 639-1
* language code and optionally one or more IETF subtags for country or
* script. More than one value can also be specified, separated by commas.
* @type {String}
*/
language: {
type: String,
value: null
},
/**
* You can enter the url to ur mapbox-gl-geocoder script if it is hosted
* externally (e.g. cdn)
* @type {String}
*/
scriptSrc: {
type: String,
value:
'https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-geocoder/v2.1.1/mapbox-gl-geocoder.min.js'
},
/**
* You can enter the url to ur mapbox-gl-geocoder stylesheet if it is
* hosted
* externally (e.g. cdn)
* @type {String}
*/
cssSrc: {
type: String,
value:
'https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-geocoder/v2.1.1/mapbox-gl-geocoder.css'
},
/**
* The latest results returned by the query.
* @type {{features: Array}}
*/
lastResults: {
type: Object,
readOnly: true,
notify: true
},
_ready: Boolean,
_cssReady: Boolean
};
}
static get observers() {
return ['_createGeocoder(accessToken,_ready)', '_mapReady(map,geocoder,_cssReady)'];
}
connectedCallback() {
super.connectedCallback();
this._onError = this._onError.bind(this);
this._onResults = this._onResults.bind(this);
if (!window.MapboxGeocoder) {
PolymerVis.loadScript(
this.scriptSrc,
() => {
this._ready = window.MapboxGeocoder && true;
},
this._onError,
true
);
}
if (this.parentNode.nodeName === 'MAPBOX-GL') {
PolymerVis.insertCssIntoShadowRoot(
this.cssSrc,
this.parentNode.shadowRoot,
() => {this._cssReady = true;},
'MapboxGlGeocoder'
);
this.accessToken = this.parentNode.accessToken;
}
}
disconnectedCallback() {
super.disconnectedCallback();
if (this.geocoder) {
this.geocoder.off('error', this._onError);
this.geocoder.off('results', this._onResults);
}
}
_createGeocoder() {
if (!this.accessToken || !this._ready) return;
var _keydown = MapboxGeocoder.prototype._onKeyDown;
// monkey patching
MapboxGeocoder.prototype._onKeyDown = function(e) {
// events from shadowRoot are targetted to the root element of the
// shadowRoot instead of the actual active element
// to prevent this retargeting, a proxy object is passed in instead
_keydown.call(this, {target: {value: e.target.value}});
};
this._setGeocoder(new MapboxGeocoder({
accessToken: this.accessToken,
zoom: this.zoom,
flyTo: this.flyTo || false,
placeholder: this.placeholder,
proximity : this.proximity,
bbox: this.bbox,
types: this.types,
country: this.country,
minLength: this.minLength,
limit: this.limit,
language: this.language
}));
this.geocoder.on('error', this._onError);
this.geocoder.on('results', this._onResults);
}
/**
* Fired when a new set of query results are available.
*
* @event results
* @param {{features: Array}} results query results
*/
_onResults(results) {
this._setLastResults(results);
this.dispatchEvent(new CustomEvent('results', {detail: results}));
}
/**
* Fired whenever an error is encountered.
*
* @event results
* @param {String} error error message
*/
_onError(error) {
this.dispatchEvent(new CustomEvent('error', { detail: error }));
}
_mapReady(map) {
if (!this.map || !this.geocoder || !this._cssReady) return;
if (this.parentNode.nodeName === 'MAPBOX-GL') {
map.addControl(this.geocoder);
}
}
}
window.customElements.define(MapboxGlGeocoder.is, MapboxGlGeocoder);
</script>
</dom-module>