Files
iD/js/id/ui/geocoder.js
2013-01-14 15:36:52 -05:00

67 lines
2.1 KiB
JavaScript

iD.ui.geocoder = function() {
var map;
function geocoder(selection) {
function keydown() {
if (d3.event.keyCode !== 13) return;
d3.event.preventDefault();
d3.json('http://api.tiles.mapbox.com/v3/openstreetmap.map-hn253zqn/geocode/' +
encodeURIComponent(this.value) + '.json', function(err, resp) {
if (err) return hide();
hide();
if (!resp.results.length) {
return iD.ui.flash()
.select('.content')
.text('No location found for "' + resp.query[0] + '"');
}
var bounds = resp.results[0][0].bounds;
map.extent([bounds[0], bounds[3]], [bounds[2], bounds[1]]);
});
}
function clickoutside(selection) {
selection
.on('click.geocoder-inside', function() {
return d3.event.stopPropagation();
});
d3.select('body').on('click.geocoder-outside', hide);
}
function show() { setVisible(true); }
function hide() { setVisible(false); }
function toggle() { setVisible(gcForm.classed('hide')); }
function setVisible(show) {
button.classed('active', show);
gcForm.classed('hide', !show);
var input_node = d3.select('.map-overlay input').node();
if (show) input_node.focus();
else input_node.blur();
}
var button = selection.append('button')
.attr('class', 'narrow')
.attr('title', 'Find A Location')
.html('<span class=\'geocode icon\'></span>')
.on('click', toggle);
var gcForm = selection.append('form');
gcForm.attr('class','content map-overlay hide')
.append('input')
.attr({ type: 'text', placeholder: 'find a place' })
.on('keydown', keydown);
selection.call(clickoutside);
}
geocoder.map = function(_) {
if (!arguments.length) return map;
map = _;
return geocoder;
};
return geocoder;
};