1. Key 발급받기
구글 계정이 있으면 편리하다.
아래 URL로 접속한 다음에..
http://code.google.com/apis/maps/signup.html
약관에 동의하고, 구글맵을 이용하려는 사이트 URL을 입력한다.
약관 내용은...
무료로 사용가능하고, 구글 로고가 가려서는 안된다.
상업적인 용도론 사용이 안되고, 별도의 허가가 필요하다.
하루 50만건의 요청이 가능하고, 그 이상은 별도의 허가가 필요하다.
이정도?
키를 생성하면.. 아래와 같은 스크립트가 생성된다.
어디에서나 사용이 가능하다.
-------------------------------------------------------------------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Google Maps JavaScript API Example</title>
<script src=http://maps.google.com/maps?file=api&v=2&key=[API KEY 가 들어가는곳]
type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
function load() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(37.4419, -122.1419), 13);
}
}
//]]>
</script>
</head>
<body onload="load()" onunload="GUnload()" >
<div id="map" style="width: 500px; height: 300px"></div>
</body>
</html>
-----------------------------------------------------
-> maps.google.com -> map.google.co.kr 로 바꾸면 한국지도가 잘 나온다.
-> 좌표를 한국위치로 바꾸려면 GLatLng(37.5, 127) 로 바꾸면 된다.