Support for searching pluscodes (extended when required relative to the map center)
This commit is contained in:
parent
b547e203a6
commit
60ca62bf09
|
@ -1,8 +1,8 @@
|
||||||
diff --git a/node_modules/@suid/material/InputBase/InputBase.jsx b/node_modules/@suid/material/InputBase/InputBase.jsx
|
diff --git a/node_modules/@suid/material/InputBase/InputBase.jsx b/node_modules/@suid/material/InputBase/InputBase.jsx
|
||||||
index ac57a30..00cbc4a 100644
|
index 8aab6fd..480544a 100644
|
||||||
--- a/node_modules/@suid/material/InputBase/InputBase.jsx
|
--- a/node_modules/@suid/material/InputBase/InputBase.jsx
|
||||||
+++ b/node_modules/@suid/material/InputBase/InputBase.jsx
|
+++ b/node_modules/@suid/material/InputBase/InputBase.jsx
|
||||||
@@ -238,7 +238,7 @@ const inputGlobalStyles = () => (<>
|
@@ -239,7 +239,7 @@ const inputGlobalStyles = () => (<>
|
||||||
"@keyframes mui-auto-fill-cancel": { from: { display: "block" } },
|
"@keyframes mui-auto-fill-cancel": { from: { display: "block" } },
|
||||||
}}/>}
|
}}/>}
|
||||||
</>);
|
</>);
|
|
@ -15,6 +15,8 @@ import { getMap, getState } from '../map';
|
||||||
import { Overlay } from 'ol';
|
import { Overlay } from 'ol';
|
||||||
import { fromLonLat } from 'ol/proj';
|
import { fromLonLat } from 'ol/proj';
|
||||||
import WptEditDialog from '../wpt/WptEditDialog';
|
import WptEditDialog from '../wpt/WptEditDialog';
|
||||||
|
import maybePlusCode from '../../lib/check-pluscodes';
|
||||||
|
import { decode, expand } from 'pluscodes';
|
||||||
|
|
||||||
const [popup, setPopup] = createSignal<Overlay>();
|
const [popup, setPopup] = createSignal<Overlay>();
|
||||||
const [open, setOpen] = createSignal(false);
|
const [open, setOpen] = createSignal(false);
|
||||||
|
@ -68,6 +70,7 @@ const Finder: Component<Props> = (props) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const submitHandler = () => {
|
const submitHandler = () => {
|
||||||
|
setCoordinate(undefined);
|
||||||
const latLonRegExp = /(-?[0-9]+.[0-9]+)\s*,\s*(-?[0-9]+.[0-9]+)/;
|
const latLonRegExp = /(-?[0-9]+.[0-9]+)\s*,\s*(-?[0-9]+.[0-9]+)/;
|
||||||
const latLonMatch = searchString().match(latLonRegExp);
|
const latLonMatch = searchString().match(latLonRegExp);
|
||||||
|
|
||||||
|
@ -89,15 +92,46 @@ const Finder: Component<Props> = (props) => {
|
||||||
setPopupContent(
|
setPopupContent(
|
||||||
<>{`${coordinate()[0]}, ${coordinate()[1]} (UTM ${utmMatch[0]})`}</>
|
<>{`${coordinate()[0]}, ${coordinate()[1]} (UTM ${utmMatch[0]})`}</>
|
||||||
);
|
);
|
||||||
}
|
|
||||||
console.log({
|
console.log({
|
||||||
caller: 'Finder / submitHandler',
|
caller: 'Finder / submitHandler',
|
||||||
searchString: searchString(),
|
searchString: searchString(),
|
||||||
utmMatch,
|
utmMatch,
|
||||||
coordinate: coordinate(),
|
coordinate: coordinate(),
|
||||||
});
|
});
|
||||||
|
} else {
|
||||||
|
const potentialPlusCode = maybePlusCode(searchString());
|
||||||
|
if (!!potentialPlusCode) {
|
||||||
|
let plusCode = potentialPlusCode.code;
|
||||||
|
if (potentialPlusCode.isShort) {
|
||||||
|
plusCode = expand(potentialPlusCode.code, {
|
||||||
|
longitude: getState().lon,
|
||||||
|
latitude: getState().lat,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
const plusCodeCoordinates = decode(plusCode);
|
||||||
|
if (plusCodeCoordinates) {
|
||||||
|
setCoordinate([
|
||||||
|
plusCodeCoordinates.longitude,
|
||||||
|
plusCodeCoordinates.latitude,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
console.log({
|
||||||
|
caller: 'Finder / submitHandler',
|
||||||
|
searchString: searchString(),
|
||||||
|
potentialPlusCode,
|
||||||
|
plusCode,
|
||||||
|
plusCodeCoordinates,
|
||||||
|
state: getState(),
|
||||||
|
coordinate: coordinate(),
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
console.log({
|
||||||
|
caller: 'Finder / submitHandler / no match found',
|
||||||
|
searchString: searchString(),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!!coordinate()) {
|
if (!!coordinate()) {
|
||||||
findLocation(navigate, coordinate());
|
findLocation(navigate, coordinate());
|
||||||
}
|
}
|
||||||
|
@ -147,6 +181,9 @@ const Finder: Component<Props> = (props) => {
|
||||||
method='dialog'
|
method='dialog'
|
||||||
>
|
>
|
||||||
<TextField onChange={searchStringChangeHandler} />
|
<TextField onChange={searchStringChangeHandler} />
|
||||||
|
<Button variant='contained' onClick={submitHandler}>
|
||||||
|
Search
|
||||||
|
</Button>
|
||||||
</Box>
|
</Box>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
<div class={style.ol_popup + ' ol_popup'} ref={popupElement}>
|
<div class={style.ol_popup + ' ol_popup'} ref={popupElement}>
|
||||||
|
|
Loading…
Reference in New Issue