박나리

delete Untitled-222222.html

1 -<!DOCTYPE html>
2 -<html>
3 -<head>
4 - <meta charset="UTF-8">
5 - <meta http-equiv="X-UA-Compatible" content="IE=edge">
6 - <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
7 - <title>간단한 지도 표시하기</title>
8 - <script type="text/javascript" src="https://openapi.map.naver.com/openapi/v3/maps.js?ncpClientId=ayofd89vlh"></script>
9 -</head>
10 -<body>
11 -<div id="map" style="width:100%;height:400px;"></div>
12 -
13 -<script>
14 -var mapOptions = {
15 - center: new naver.maps.LatLng(37.3595704, 127.105399),
16 - zoom: 10
17 -};
18 -
19 -var map = new naver.maps.Map('map', mapOptions);
20 -</script>
21 -</body>
22 -</html>
...\ No newline at end of file ...\ No newline at end of file