brouter-web/js/control/Profile.js
2014-01-27 18:34:48 +01:00

11 lines
247 B
JavaScript

BR.Profile = BR.Control.extend({
options: {
heading: ''
},
onAdd: function (map) {
var container = BR.Control.prototype.onAdd.call(this, map);
container.innerHTML = " ";
return container;
}
});