Skip to content

Commit

Permalink
fix: reset to default initial coords, zoom-level
Browse files Browse the repository at this point in the history
  • Loading branch information
foosint committed Jan 28, 2024
1 parent b84c181 commit 61954ae
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ declare module 'leaflet' {
}

export const initBaseMap = () => {
// const lat = 47.5;
// const lng = 36.0;
const lat = 46.749429574759255; // dev
const lng = 33.04000854492188; // dev
// const zoom = 7; // initial zoom level
const zoom = 12; // dev
const lat = 47.5;
const lng = 36.0;
// const lat = 46.749429574759255; // dev
// const lng = 33.04000854492188; // dev
const zoom = 7; // initial zoom level
// const zoom = 12; // dev

// map center
const mapcenter: any = [lat, lng];
Expand Down

0 comments on commit 61954ae

Please sign in to comment.