Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김원진
/
Expresswayinfo24
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
최현영
2020-06-01 20:06:51 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6f7f387ad408a66328e06fe9b9791ddf12bf9f0b
6f7f387a
1 parent
b65279ba
Delete map.html
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
24 deletions
public/map.html
public/map.html
deleted
100644 → 0
View file @
b65279b
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
/>
<title>
Kakao 지도 시작하기
</title>
</head>
<body>
<form
method=
"get"
action=
"/process/map"
>
<div
id=
"map"
style=
"width:800px;height:800px;"
></div>
<script
type=
"text/javascript"
src=
"//dapi.kakao.com/v2/maps/sdk.js?appkey=b335546caf8f2178d70b550aee16f1ea"
></script>
<script>
var
container
=
document
.
getElementById
(
'map'
);
var
options
=
{
center
:
new
kakao
.
maps
.
LatLng
(
37.243210
,
127.077108
),
level
:
3
};
var
map
=
new
kakao
.
maps
.
Map
(
container
,
options
);
map
.
addOverlayMapTypeId
(
kakao
.
maps
.
MapTypeId
.
TRAFFIC
);
</script>
</form>
</body>
</html>
\ No newline at end of file
Please
register
or
login
to post a comment