Skip to content

Commit

Permalink
Merge pull request kc3hack#11 from e1b21115/adjust_firstPosition
Browse files Browse the repository at this point in the history
初期位置を京都リサーチパークに変更
  • Loading branch information
B21098 authored Feb 25, 2024
2 parents 1dfd7c5 + c135f6a commit b8b4e29
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 b8b4e29

Please sign in to comment.