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
4
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
최현영
2020-05-27 22:57:58 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1cb43ca3bfa63fe88ef6580aa9154bb0d0cc21a3
1cb43ca3
1 parent
fac2c7af
public
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
public/map.html
public/map.html
0 → 100644
View file @
1cb43ca
<!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
);
</script>
</form>
</body>
</html>
\ No newline at end of file
Please
register
or
login
to post a comment