Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김서연
/
Corona_Vaccination_Medical_Institution
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
3
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Heo
2021-06-05 23:46:32 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9273bf4257c6c1ac9a59faa54f26cfc2064305a3
9273bf42
1 parent
26de9ea7
인포윈도우 표시방식 수정
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
views/index.ejs
views/index.ejs
View file @
9273bf4
...
...
@@ -69,7 +69,7 @@
var
mapContainer
=
document
.
getElementById
(
'map'
),
// 지도를 표시할 div
mapOption
=
{
center
:
new
kakao
.
maps
.
LatLng
(
37.596672
,
127.051950
),
// 지도의 중심좌표
level
:
2
// 지도의 확대 레벨
level
:
3
// 지도의 확대 레벨
};
var
map
=
new
kakao
.
maps
.
Map
(
mapContainer
,
mapOption
);
// 지도를 생성합니다
...
...
@@ -138,7 +138,7 @@
geocoder
.
addressSearch
(
tmpaddr
,
function
(
result
,
status
)
{
if
(
status
===
kakao
.
maps
.
services
.
Status
.
OK
)
{
var
coords
=
new
kakao
.
maps
.
LatLng
(
result
[
0
].
y
,
result
[
0
].
x
);
map
.
setCenter
(
coords
);
//map.setCenter(coords);//인포윈도우 생성 마커로 이동
var
marker
=
new
kakao
.
maps
.
Marker
({
position
:
coords
,
clickable
:
true
...
...
Please
register
or
login
to post a comment