Localities Search
Use the LocalitiesService to autocomplete and get details of localities, postal codes or addresses.
Example
Localities Search
let map: woosmap.map.Map;
let marker: woosmap.map.Marker;
let infoWindow: woosmap.map.InfoWindow;
let localitiesService: woosmap.map.LocalitiesService;
let debouncedLocalitiesSearch: (...args: any[]) => Promise<any>;
let input: string;
let detailsHTML: HTMLElement;
let detailsResultContainer: HTMLElement;
const woosmap_key = "YOUR_API_KEY";
const componentsRestriction: woosmap.map.localities.LocalitiesComponentRestrictions =
{ country: [] };
function initMap(): void {
map = new window.woosmap.map.Map(
document.getElementById("map") as HTMLElement,
{
center: { lat: 51.507445, lng: -0.127765 },
zoom: 8,
styles: [
{
featureType: "point_of_interest",
elementType: "all",
stylers: [
{
visibility: "on",
},
],
},
],
}
);
infoWindow = new woosmap.map.InfoWindow({});
localitiesService = new window.woosmap.map.LocalitiesService();
debouncedLocalitiesSearch = debouncePromise(fetchLocalitiesSearch, 0);
manageCountrySelector();
}
const fetchLocalitiesSearch = async (input: any): Promise<any> => {
const center = map.getCenter();
const radius = map.getZoom() > 10 ? (map.getZoom() > 14 ? "1000" : "10000") : "100000";
const componentsArgs: string = (componentsRestriction.country as string[])
.map((country) => `country:${country}`)
.join("|");
try {
const response = await fetch(
`
https://api.woosmap.com/localities/search?types=point_of_interest|locality|admin_level|postal_code|address&input=${encodeURIComponent(input)}&location=${center.lat()},${center.lng()}&radius=${radius}&key=${woosmap_key}&components=${componentsArgs}`
);
return await response.json();
} catch (error) {
console.error("Error fetching localities:", error);
throw error;
}
};
function fillDetailsResult(detailsResult: any) {
const details: string[] = [];
detailsHTML.innerHTML = "";
detailsHTML.style.display = "block";
if (detailsResult.formatted_address) {
details.push(
`<p class='option-detail'><span class='option-detail-label'>Formatted_address:</span><span class='bold'>${detailsResult.formatted_address}</span></p>`
);
} else if (detailsResult.name)
details.push(
`<p class='option-detail'><span class='option-detail-label'>Name:</span><span class='bold'>${detailsResult.name}</span></p>`
);
if (detailsResult.types && detailsResult.types[0]) {
details.push(
`<p class='option-detail'><span class='option-detail-label'>Type: </span><span class='bold'>${detailsResult.types[0]}</span></p>`
);
}
if (detailsResult.categories)
details.push(
`<p class='option-detail'><span class='option-detail-label'>Categories:</span><span class='bold'>${detailsResult.categories[0]}</span></p>`
);
if (detailsResult.geometry) {
details.push(
`<div class='option-detail'><div><span class='option-detail-label'>Latitude:</span> <span class='bold'>${detailsResult.geometry.location.lat.toFixed(5).toString()}</span></div><div><span class='option-detail-label'>Longitude: </span><span class='bold'>${detailsResult.geometry.location.lng.toFixed(5).toString()}</span></div></div>`
);
if (detailsResult.address_components) {
const compoHtml = detailsResult.address_components
.map(
(compo) =>
`<p class='option-detail'><span class='option-detail-label'>${compo.types.find((item) => item.includes("division")) || compo.types[0]}:</span> <span class='bold'>${compo.long_name}</span></p>`
)
.join("");
details.push(
`<div class='address-components'><div class='title'>Address components</div><div>${compoHtml}</div>`
);
}
}
detailsHTML.innerHTML = details.join("");
}
const inputElement = document.getElementById(
"autocomplete-input"
) as HTMLInputElement;
const suggestionsList = document.getElementById(
"suggestions-list"
) as HTMLUListElement;
const clearSearchBtn = document.getElementsByClassName(
"clear-searchButton"
)[0] as HTMLButtonElement;
detailsResultContainer = document.querySelector(
".detailsResult"
) as HTMLElement;
detailsHTML = document.querySelector(
".detailsResult .detailsOptions"
) as HTMLElement;
if (inputElement && suggestionsList) {
inputElement.addEventListener("input", handleAutocomplete);
inputElement.addEventListener("keydown", (event) => {
if (event.key === "Enter") {
const firstLi = suggestionsList.querySelector("li");
if (firstLi) {
firstLi.click();
}
}
});
}
clearSearchBtn.addEventListener("click", () => {
inputElement.value = "";
suggestionsList.style.display = "none";
clearSearchBtn.style.display = "none";
if (marker) {
marker.setMap(null);
infoWindow.close();
}
inputElement.focus();
});
function handleAutocomplete(): void {
if (inputElement && suggestionsList) {
input = inputElement.value;
if (input) {
debouncedLocalitiesSearch(input)
.then((results) => displaySuggestions(results))
.catch((error) =>
console.error("Error autocomplete localities:", error)
);
} else {
suggestionsList.style.display = "none";
clearSearchBtn.style.display = "none";
}
}
}
function handleDetails(publicId: string) {
localitiesService
.getDetails({ publicId })
.then((response) => displayResult(response.result))
.catch((error) => console.error("Error getting locality details:", error));
}
function displaySection(section: HTMLElement, mode = "block"): void {
section.style.display = mode;
}
function displayResult(result: woosmap.map.localities.LocalitiesDetailsResult) {
fillDetailsResult(result);
displaySection(detailsResultContainer);
if (marker) {
marker.setMap(null);
infoWindow.close();
}
if (result?.geometry) {
marker = new woosmap.map.Marker({
position: result.geometry.location,
icon: {
url: "https://images.woosmap.com/marker.png",
scaledSize: {
height: 50,
width: 32,
},
},
});
marker.setMap(map);
infoWindow.setContent(
`<span>${result.formatted_address ?? result.name}</span>`
);
infoWindow.open(map, marker);
map.flyTo({ center: result.geometry.location, zoom: 14 });
}
}
function displaySuggestions(localitiesPredictions: any) {
if (inputElement && suggestionsList) {
suggestionsList.innerHTML = "";
if (localitiesPredictions.results.length > 0 && input) {
localitiesPredictions.results.forEach((result) => {
const li = document.createElement("li");
const title = document.createElement("div");
const desc = document.createElement("span");
title.textContent = result.title ?? "";
title.className = "localities-search-title";
desc.textContent = result.description ?? "";
desc.className = "localities-search-description";
li.addEventListener("click", () => {
inputElement.value = result.title ?? "";
suggestionsList.style.display = "none";
handleDetails(result.public_id);
});
suggestionsList.appendChild(li);
li.appendChild(title);
title.appendChild(desc);
if (result.categories) {
const category = document.createElement("span");
category.textContent = result.categories[0];
category.className = "localities-search-category";
title.appendChild(category);
} else {
const type = document.createElement("span");
type.textContent = result.types[0];
type.className = "localities-search-type";
title.appendChild(type);
}
});
suggestionsList.style.display = "block";
clearSearchBtn.style.display = "block";
} else {
suggestionsList.style.display = "none";
}
}
}
document.addEventListener("click", (event) => {
const targetElement = event.target as Element;
const isClickInsideAutocomplete = targetElement.closest(
"#autocomplete-container"
);
if (!isClickInsideAutocomplete && suggestionsList) {
suggestionsList.style.display = "none";
}
});
type DebouncePromiseFunction<T, Args extends any[]> = (
...args: Args
) => Promise<T>;
function debouncePromise<T, Args extends any[]>(
fn: (...args: Args) => Promise<T>,
delay: number
): DebouncePromiseFunction<T, Args> {
let timeoutId: ReturnType<typeof setTimeout> | null = null;
let latestResolve: ((value: T | PromiseLike<T>) => void) | null = null;
let latestReject: ((reason?: any) => void) | null = null;
return function (...args: Args): Promise<T> {
return new Promise<T>((resolve, reject) => {
if (timeoutId !== null) {
clearTimeout(timeoutId);
}
latestResolve = resolve;
latestReject = reject;
timeoutId = setTimeout(() => {
fn(...args)
.then((result) => {
if (latestResolve === resolve && latestReject === reject) {
resolve(result);
}
})
.catch((error) => {
if (latestResolve === resolve && latestReject === reject) {
reject(error);
}
});
}, delay);
});
};
}
declare global {
interface Window {
initMap: () => void;
}
}
window.initMap = initMap;
let map;
let marker;
let infoWindow;
let localitiesService;
let debouncedLocalitiesSearch;
let input;
let detailsHTML;
let detailsResultContainer;
const woosmap_key = "YOUR_API_KEY";
const componentsRestriction = { country: [] };
function initMap() {
map = new window.woosmap.map.Map(document.getElementById("map"), {
center: { lat: 51.507445, lng: -0.127765 },
zoom: 8,
styles: [
{
featureType: "point_of_interest",
elementType: "all",
stylers: [
{
visibility: "on",
},
],
},
],
});
infoWindow = new woosmap.map.InfoWindow({});
localitiesService = new window.woosmap.map.LocalitiesService();
debouncedLocalitiesSearch = debouncePromise(fetchLocalitiesSearch, 0);
manageCountrySelector();
}
const fetchLocalitiesSearch = async (input) => {
const center = map.getCenter();
const radius =
map.getZoom() > 10 ? (map.getZoom() > 14 ? "1000" : "10000") : "100000";
const componentsArgs = componentsRestriction.country
.map((country) => `country:${country}`)
.join("|");
try {
const response = await fetch(`
https://api.woosmap.com/localities/search?types=point_of_interest|locality|admin_level|postal_code|address&input=${encodeURIComponent(input)}&location=${center.lat()},${center.lng()}&radius=${radius}&key=${woosmap_key}&components=${componentsArgs}`);
return await response.json();
} catch (error) {
console.error("Error fetching localities:", error);
throw error;
}
};
function fillDetailsResult(detailsResult) {
const details = [];
detailsHTML.innerHTML = "";
detailsHTML.style.display = "block";
if (detailsResult.formatted_address) {
details.push(
`<p class='option-detail'><span class='option-detail-label'>Formatted_address:</span><span class='bold'>${detailsResult.formatted_address}</span></p>`,
);
} else if (detailsResult.name)
details.push(
`<p class='option-detail'><span class='option-detail-label'>Name:</span><span class='bold'>${detailsResult.name}</span></p>`,
);
if (detailsResult.types && detailsResult.types[0]) {
details.push(
`<p class='option-detail'><span class='option-detail-label'>Type: </span><span class='bold'>${detailsResult.types[0]}</span></p>`,
);
}
if (detailsResult.categories)
details.push(
`<p class='option-detail'><span class='option-detail-label'>Categories:</span><span class='bold'>${detailsResult.categories[0]}</span></p>`,
);
if (detailsResult.geometry) {
details.push(
`<div class='option-detail'><div><span class='option-detail-label'>Latitude:</span> <span class='bold'>${detailsResult.geometry.location.lat.toFixed(5).toString()}</span></div><div><span class='option-detail-label'>Longitude: </span><span class='bold'>${detailsResult.geometry.location.lng.toFixed(5).toString()}</span></div></div>`,
);
if (detailsResult.address_components) {
const compoHtml = detailsResult.address_components
.map(
(compo) =>
`<p class='option-detail'><span class='option-detail-label'>${compo.types.find((item) => item.includes("division")) || compo.types[0]}:</span> <span class='bold'>${compo.long_name}</span></p>`,
)
.join("");
details.push(
`<div class='address-components'><div class='title'>Address components</div><div>${compoHtml}</div>`,
);
}
}
detailsHTML.innerHTML = details.join("");
}
const inputElement = document.getElementById("autocomplete-input");
const suggestionsList = document.getElementById("suggestions-list");
const clearSearchBtn = document.getElementsByClassName("clear-searchButton")[0];
detailsResultContainer = document.querySelector(".detailsResult");
detailsHTML = document.querySelector(".detailsResult .detailsOptions");
if (inputElement && suggestionsList) {
inputElement.addEventListener("input", handleAutocomplete);
inputElement.addEventListener("keydown", (event) => {
if (event.key === "Enter") {
const firstLi = suggestionsList.querySelector("li");
if (firstLi) {
firstLi.click();
}
}
});
}
clearSearchBtn.addEventListener("click", () => {
inputElement.value = "";
suggestionsList.style.display = "none";
clearSearchBtn.style.display = "none";
if (marker) {
marker.setMap(null);
infoWindow.close();
}
inputElement.focus();
});
function handleAutocomplete() {
if (inputElement && suggestionsList) {
input = inputElement.value;
if (input) {
debouncedLocalitiesSearch(input)
.then((results) => displaySuggestions(results))
.catch((error) =>
console.error("Error autocomplete localities:", error),
);
} else {
suggestionsList.style.display = "none";
clearSearchBtn.style.display = "none";
}
}
}
function handleDetails(publicId) {
localitiesService
.getDetails({ publicId })
.then((response) => displayResult(response.result))
.catch((error) => console.error("Error getting locality details:", error));
}
function displaySection(section, mode = "block") {
section.style.display = mode;
}
function displayResult(result) {
fillDetailsResult(result);
displaySection(detailsResultContainer);
if (marker) {
marker.setMap(null);
infoWindow.close();
}
if (result?.geometry) {
marker = new woosmap.map.Marker({
position: result.geometry.location,
icon: {
url: "https://images.woosmap.com/marker.png",
scaledSize: {
height: 50,
width: 32,
},
},
});
marker.setMap(map);
infoWindow.setContent(
`<span>${result.formatted_address ?? result.name}</span>`,
);
infoWindow.open(map, marker);
map.flyTo({ center: result.geometry.location, zoom: 14 });
}
}
function displaySuggestions(localitiesPredictions) {
if (inputElement && suggestionsList) {
suggestionsList.innerHTML = "";
if (localitiesPredictions.results.length > 0 && input) {
localitiesPredictions.results.forEach((result) => {
const li = document.createElement("li");
const title = document.createElement("div");
const desc = document.createElement("span");
title.textContent = result.title ?? "";
title.className = "localities-search-title";
desc.textContent = result.description ?? "";
desc.className = "localities-search-description";
li.addEventListener("click", () => {
inputElement.value = result.title ?? "";
suggestionsList.style.display = "none";
handleDetails(result.public_id);
});
suggestionsList.appendChild(li);
li.appendChild(title);
title.appendChild(desc);
if (result.categories) {
const category = document.createElement("span");
category.textContent = result.categories[0];
category.className = "localities-search-category";
title.appendChild(category);
} else {
const type = document.createElement("span");
type.textContent = result.types[0];
type.className = "localities-search-type";
title.appendChild(type);
}
});
suggestionsList.style.display = "block";
clearSearchBtn.style.display = "block";
} else {
suggestionsList.style.display = "none";
}
}
}
document.addEventListener("click", (event) => {
const targetElement = event.target;
const isClickInsideAutocomplete = targetElement.closest(
"#autocomplete-container",
);
if (!isClickInsideAutocomplete && suggestionsList) {
suggestionsList.style.display = "none";
}
});
function debouncePromise(fn, delay) {
let timeoutId = null;
let latestResolve = null;
let latestReject = null;
return function (...args) {
return new Promise((resolve, reject) => {
if (timeoutId !== null) {
clearTimeout(timeoutId);
}
latestResolve = resolve;
latestReject = reject;
timeoutId = setTimeout(() => {
fn(...args)
.then((result) => {
if (latestResolve === resolve && latestReject === reject) {
resolve(result);
}
})
.catch((error) => {
if (latestResolve === resolve && latestReject === reject) {
reject(error);
}
});
}, delay);
});
};
}
window.initMap = initMap;
/*
* Always set the map height explicitly to define the size of the div element
* that contains the map.
*/
#map {
height: 100%;
}
/*
* Optional: Makes the sample page fill the window.
*/
html,
body {
height: 100%;
margin: 0;
padding: 0;
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}
#autocomplete-container {
display: flex;
position: absolute;
top: 10px;
left: 10px;
z-index: 1;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
background: #fff;
border-radius: 12px;
padding: 0 12px;
max-width: 320px;
width: 100%;
height: 42px;
border: none;
box-sizing: border-box;
align-items: center;
cursor: text;
font-size: 15px;
}
#autocomplete-container .search-icon, #autocomplete-container .clear-icon {
color: inherit;
flex-shrink: 0;
height: 16px;
width: 16px;
}
#autocomplete-container .clear-icon {
transform: scale(1.3);
}
#autocomplete-input {
box-sizing: border-box;
padding: 0;
height: 40px;
line-height: 24px;
vertical-align: top;
transition-property: color;
transition-duration: 0.3s;
width: 100%;
text-overflow: ellipsis;
background: transparent;
border-radius: 0;
border: 0;
margin: 0 8px;
outline: 0;
overflow: visible;
appearance: textfield;
font-size: 100%;
}
.clear-searchButton {
display: none;
height: 18px;
width: 22px;
background: none;
border: none;
vertical-align: middle;
pointer-events: all;
cursor: pointer;
}
#suggestions-list {
border-radius: 12px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
box-sizing: border-box;
position: absolute;
max-width: 320px;
width: 100%;
top: 100%;
left: 0;
z-index: 1;
list-style: none;
max-height: 80vh;
margin: 5px 0 0;
padding: 0;
display: none;
overflow-y: auto;
background-color: #fff;
}
#suggestions-list.visible {
display: block;
}
#suggestions-list li {
padding: 12px;
cursor: pointer;
transition: background-color 0.3s ease;
}
#suggestions-list li:hover {
background-color: #f2f2f2;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown ul {
display: block;
list-style: none;
margin: 0 !important;
padding: 0 !important;
}
.dropdown.active .dropdown-button {
background-color: #e8ebee;
border: 1px solid #e8ebee;
}
.dropdown.active .dropdown-button svg {
transform: matrix(-1, 0, 0, -1, 0, 0);
}
.dropdown .dropdown-button {
cursor: pointer;
border: 1px solid #f9fbfd;
background-color: #f9fbfd;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px rgba(0, 0, 0, 0.0196078431);
font-weight: 400;
height: 42px;
padding: 0 9px;
font-size: 14px;
border-radius: 12px;
}
.dropdown .dropdown-button:hover {
background-color: #e8ebee;
border: 1px solid #e8ebee;
}
.dropdown .dropdown-button strong {
font-size: 0.9em;
opacity: 0.9;
}
.dropdown .dropdown-button svg {
height: 0.75rem;
width: 0.75rem;
margin-left: 0.5rem;
margin-top: -0.125rem;
transition-duration: 0.1s;
transition-property: transform;
vertical-align: middle;
transition-timing-function: cubic-bezier(0.07, 0.49, 0, 1.05);
fill: #1D1D1D;
display: inline;
padding-top: 0;
}
.dropdown .dropdown-menuitem {
color: #1D1D1D;
display: flex;
align-items: center;
font-size: 14px;
padding: 0.5rem 1rem;
position: relative;
white-space: nowrap;
text-decoration: none;
cursor: pointer;
}
.dropdown .dropdown-menuitem:hover {
background-color: #e8ebee;
}
.dropdown .dropdown-menuitem.divider {
border-top: 1px solid #e8ebee;
}
.dropdown .dropdown-content {
display: none;
opacity: 0;
visibility: hidden;
position: absolute;
min-width: 160px;
overflow: hidden;
top: 100%;
z-index: 999;
}
.dropdown .dropdown-content.visible {
display: block;
opacity: 1;
visibility: visible;
}
.dropdown .dropdown-menu {
background-clip: padding-box;
background-color: #FFF;
color: #1D1D1D;
border-radius: 12px;
box-shadow: rgba(0, 0, 0, 0) 0 0 0 0, rgba(0, 0, 0, 0) 0 0 0 0, rgba(6, 11, 16, 0.2) 0 16px 24px 0, rgba(6, 11, 16, 0.3) 0 6px 30px 0, rgba(6, 11, 16, 0.4) 0 8px 10px 0;
left: 0;
margin-top: 1px;
min-width: 13rem;
-webkit-font-smoothing: subpixel-antialiased;
-moz-osx-font-smoothing: auto;
}
#app {
height: 100%;
}
body {
background-color: #eee;
overflow-y: hidden;
}
#countrySelector {
position: absolute;
top: 10px;
left: 335px;
}
.country .country-name {
display: flex;
flex-grow: 1;
}
.country .flag-icon {
height: 20px;
width: 20px;
background-repeat: no-repeat;
background-size: contain;
background-position: 50%;
display: flex;
justify-content: center;
align-items: center;
flex-shrink: 0;
margin-right: 8px;
}
.country .flag-icon-fr {
background-image: url(https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/4x3/fr.svg);
}
.country .flag-icon-gb {
background-image: url(https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/flags/4x3/gb.svg);
}
.country .active-icon-wrapper {
display: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.054 8.958 3.65 6.555A2.112 2.112 0 1 0 .663 9.543l3.86 3.86a2.11 2.11 0 0 0 2.054.543c.38-.084.74-.274 1.033-.568l7.77-7.77a2.114 2.114 0 0 0-2.987-2.99l-6.34 6.34z'%3E%3C/path%3E%3C/svg%3E");
height: 10px;
width: 10px;
background-position: 50%;
background-size: contain;
}
.country.active .active-icon-wrapper {
display: flex;
}
.localities-search-title {
flex-grow: 1;
display: flex;
flex-direction: column;
gap: 0.2rem;
}
.localities-search-description {
font-weight: lighter;
color: #333;
font-size: 0.8rem;
}
.localities-search-category {
color: #c46500;
font-size: 0.7rem;
font-style: italic;
align-self: flex-end;
}
.localities-search-type {
color: #000000;
font-size: 0.7rem;
font-style: italic;
align-self: flex-end;
}
.detailsResult {
display: none;
position: absolute;
right: 10px;
bottom: 25px;
border-radius: 6px;
max-width: 240px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
z-index: 1;
overflow: hidden;
}
.detailsResult .info {
padding: 12px 16px;
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
background-color: #fff;
}
.detailsResult .detailsOptions {
overflow-y: auto;
max-height: 240px;
font-size: 12px;
padding-top: 12px;
background-color: #fff;
}
.detailsResult .detailsOptions .option-detail {
display: flex;
flex-wrap: wrap;
padding: 0 12px 8px 12px;
margin: 0;
}
.detailsResult .detailsOptions .option-detail-label {
color: rgba(0, 0, 0, 0.5);
margin-right: 4px;
}
.address-components {
padding: 0 0 18px 0;
background-color: rgba(0, 0, 0, 0.03);
}
.address-components .title {
color: rgba(0, 0, 0, 0.5);
font-size: 10px;
text-transform: uppercase;
letter-spacing: 1px;
padding: 16px 12px 10px 12px;
}
<html>
<head>
<title>Localities Search</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="./style.css" />
<script type="module" src="./index.js"></script>
</head>
<body>
<div id="app">
<div id="map"></div>
<div class="detailsResult">
<div class="detailsOptions"></div>
</div>
<div id="autocomplete-container">
<svg class="search-icon" viewBox="0 0 16 16">
<path
d="M3.617 7.083a4.338 4.338 0 1 1 8.676 0 4.338 4.338 0 0 1-8.676 0m4.338-5.838a5.838 5.838 0 1 0 2.162 11.262l2.278 2.279a1 1 0 0 0 1.415-1.414l-1.95-1.95A5.838 5.838 0 0 0 7.955 1.245"
fill-rule="evenodd"
clip-rule="evenodd"
></path>
</svg>
<input
type="text"
id="autocomplete-input"
placeholder="Search for a place in GB..."
autocomplete="off"
/>
<button aria-label="Clear" class="clear-searchButton" type="button">
<svg class="clear-icon" viewBox="0 0 24 24">
<path
d="M7.074 5.754a.933.933 0 1 0-1.32 1.317L10.693 12l-4.937 4.929a.931.931 0 1 0 1.319 1.317l4.938-4.93 4.937 4.93a.933.933 0 0 0 1.581-.662.93.93 0 0 0-.262-.655L13.331 12l4.937-4.929a.93.93 0 0 0-.663-1.578.93.93 0 0 0-.656.261l-4.938 4.93z"
></path>
</svg>
</button>
<ul id="suggestions-list"></ul>
</div>
<div id="countrySelector" class="dropdown">
<button class="dropdown-button">
<span>
Selected countries:
<strong>GB</strong>
</span>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 16 16"
aria-hidden="true"
>
<path
d="m4 4 3.4 3.4c.3.4.9.4 1.2 0L11.9 4 14 6.2l-5.4 5.6c-.3.3-.9.3-1.2 0L2 6.2z"
></path>
</svg>
</button>
<div id="countryDropdown" class="dropdown-content dropdown-menu">
<div>
<ul role="listbox">
<li
class="country active"
data-countrycode="GB"
data-countryname="United Kingdom"
>
<div class="dropdown-menuitem">
<span class="flag-icon flag-icon-gb"></span>
<div class="country-name">United Kingdom</div>
<div class="active-icon-wrapper"></div>
</div>
</li>
<li
class="country"
data-countrycode="FR"
data-countryname="France"
>
<div class="dropdown-menuitem">
<span class="flag-icon flag-icon-fr"></span>
<div class="country-name">France</div>
<div class="active-icon-wrapper"></div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<script
src="https://sdk.woosmap.com/map/map.js?key=woos-48c80350-88aa-333e-835a-07f4b658a9a4&callback=initMap"
defer
></script>
</body>
</html>
Running the Sample Locally
Before you can run this sample on your local machine, you need to have Git and Node.js installed. If they’re not already installed, follow these instructions to get them set up.
Once you have Git and Node.js installed, you can run the sample by following these steps:
-
Clone the repository and navigate to the directory of the sample.
-
Install the necessary dependencies.
-
Start running the sample.
Here are the commands you can use in your terminal to do this:
git clone -b sample/localities-search https://github.com/woosmap/js-samples.git
cd js-samples
npm i
npm start
You can experiment with other samples by switching to any branch that starts with the pattern sample/SAMPLE_NAME
.
git checkout sample/SAMPLE_NAME
npm i
npm start
Was this article helpful?
Have more questions? Submit a request