Compare commits
1 Commits
v3.0.0-dev
...
v3.0.0-dev
| Author | SHA1 | Date | |
|---|---|---|---|
| f7b1b7fe0d |
@@ -7,10 +7,16 @@ class NearestStationsState {
|
||||
loading = $state(true);
|
||||
error = $state<string | null>(null);
|
||||
|
||||
private initGeoConfig: PositionOptions = {
|
||||
enableHighAccuracy: false,
|
||||
timeout: 500,
|
||||
maximumAge: Infinity,
|
||||
}
|
||||
|
||||
private geoConfig: PositionOptions = {
|
||||
enableHighAccuracy: false,
|
||||
timeout: 30000,
|
||||
maximumAge: 120000
|
||||
timeout: 20000,
|
||||
maximumAge: 30000,
|
||||
};
|
||||
|
||||
constructor() {
|
||||
@@ -24,7 +30,7 @@ class NearestStationsState {
|
||||
navigator.geolocation.getCurrentPosition(
|
||||
(pos) => this.handleUpdate(pos.coords.latitude, pos.coords.longitude),
|
||||
(err) => this.handleError(err),
|
||||
this.geoConfig
|
||||
this.initGeoConfig
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user