항상 찾을려면 없는 이코드..
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
function initialize() {
var myLatlng = new google.maps.LatLng(-34.397, 150.644);
var myOptions =
{
zoom: 8,
center: myLatlng,
mapTypeId:
google.maps.MapTypeId.ROADMAP
}
var map = new
google.maps.Map(document.getElementById("map_canvas"), myOptions);
}
</script>
<div id="map_canvas" style="width:500px; height:300px;"></div>
이후 body 부분에 onload=" initialize()" 해주면 된다.
'Web_Programma' 카테고리의 다른 글
php 썸네일 함수 구현 부분 (0) | 2012.03.21 |
---|---|
mysql database 에서 한글 개짐 현상 처리법 (0) | 2012.03.21 |
php 5.3 으로 넘어가면서 생기는 date 함수 오류 (0) | 2012.03.21 |
자바스크립트 jquery 로 둥근 모서리 효과 주기 (0) | 2012.03.21 |
jquery mobile 중 포커스 없애는 구문.. (0) | 2012.03.21 |