18 lines
337 B
JavaScript
18 lines
337 B
JavaScript
import Search from "ol-ext/control/Search.js";
|
|
|
|
/**
|
|
* @module searchBar
|
|
*/
|
|
|
|
/** Search bar component
|
|
* @constant {ol-ext.control.Search}
|
|
*/
|
|
const searchBar = new Search({
|
|
// disable autocompletion
|
|
typing: -1,
|
|
placeholder: "Search for products...",
|
|
collapsed: "false",
|
|
className: "searchBar",
|
|
});
|
|
|
|
export default searchBar;
|