add speed setting close #49
This commit is contained in:
parent
913dc383f6
commit
193d742aa3
8 changed files with 110 additions and 17 deletions
|
|
@ -31,6 +31,14 @@ const createLink = async (e) => {
|
|||
}
|
||||
});
|
||||
|
||||
// get all select boxes
|
||||
const selects = document.querySelectorAll('select');
|
||||
[...selects].forEach((elem) => {
|
||||
if (elem?.id) {
|
||||
queryStringElements[elem.id] = elem?.value ?? 0;
|
||||
}
|
||||
});
|
||||
|
||||
// add the location string
|
||||
queryStringElements.latLonQuery = localStorage.getItem('latLonQuery');
|
||||
queryStringElements.latLon = localStorage.getItem('latLon');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue