autocomplete working

This commit is contained in:
Matt Walsh
2025-05-13 13:57:50 -05:00
parent 4cc2312ffd
commit b031934022
8 changed files with 92 additions and 30 deletions

View File

@@ -50,8 +50,7 @@ const init = () => {
window.addEventListener('resize', fullScreenResizeCheck);
fullScreenResizeCheck.wasFull = false;
document.querySelector(TXT_ADDRESS_SELECTOR).addEventListener('keydown', (key) => { if (key.code === 'Enter') formSubmit(); });
document.querySelector('#btnGetLatLng').addEventListener('click', () => formSubmit());
document.querySelector('#btnGetLatLng').addEventListener('click', () => autoComplete.directFormSubmit());
document.addEventListener('keydown', documentKeydown);
document.addEventListener('touchmove', (e) => { if (document.fullscreenElement) e.preventDefault(); });
@@ -80,11 +79,6 @@ const init = () => {
width: 490,
});
const formSubmit = () => {
if (autoComplete.suggestions[0]) autoComplete.suggestionsContainer.children[0].trigger('click');
return false;
};
// attempt to parse the url parameters
const parsedParameters = parseQueryString();