Skip to content

Commit

Permalink
初期位置を京都リサーチパークに変更
Browse files Browse the repository at this point in the history
  • Loading branch information
e1b21115 committed Feb 25, 2024
1 parent c892637 commit c135f6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/hooks/firstPosition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ export const useFirstPosition = () => {
const getFirstPosition = () => {
// localStorageから取得した値がnullならデフォルト値を使用
const latitude = parseFloat(
localStorage.getItem("latitude") ?? "34.841928"
localStorage.getItem("latitude") ?? "34.995102123669774"
);
const longitude = parseFloat(
localStorage.getItem("longitude") ?? "135.705585"
localStorage.getItem("longitude") ?? "135.74050891851292"
);
const defaultZoom = parseInt(localStorage.getItem("defaultZoom") ?? "15");

Expand Down

0 comments on commit c135f6a

Please sign in to comment.