Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,22 @@ interface MapSectionProps {
universityEnglishName: string;
}

const SCHOOL_LOCATION_OVERVIEW_ZOOM = 5;

const MapSection = ({ universityEnglishName }: MapSectionProps) => {
return (
<>
<div className="h-1 bg-k-50" />
<div className="my-7">
<div className="mb-3 text-k-900 typo-sb-7">파견학교 위치</div>
<div>
<GoogleEmbedMap width="100%" height="300px" name={universityEnglishName} style={{ border: "0" }} />
<GoogleEmbedMap
width="100%"
height="300px"
name={universityEnglishName}
zoom={SCHOOL_LOCATION_OVERVIEW_ZOOM}
style={{ border: "0" }}
/>
</div>
</div>
</>
Expand Down
Loading