We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e56935 commit 2fb2e7aCopy full SHA for 2fb2e7a
frontend/src/components/filterFields/SightingsLocationFilter.jsx
@@ -8,8 +8,8 @@ import Description from "../Form/Description";
8
9
export default function SightingsLocationFilter({ onChange, data }) {
10
const intl = useIntl();
11
- const mapCenterLat = data?.mapCenterLat || 51;
12
- const mapCenterLon = data?.mapCenterLon || 7;
+ const mapCenterLat = data?.mapCenterLat || 0;
+ const mapCenterLon = data?.mapCenterLon || 0;
13
const mapZoom = data?.mapZoom || 4;
14
const mapKey = data?.googleMapsKey || "";
15
const mapRef = useRef(null);
0 commit comments