// JavaScript Document jQuery(document).ready(function() { "use strict"; var map; var myLatLng = new google.maps.LatLng(34.8584148, 126.2508638) //Initialize MAP var myOptions = { zoom: 16, center: myLatLng, disableDefaultUI: true, zoomControl: true, mapTypeId: google.maps.MapTypeId.ROADMAP }; map = new google.maps.Map(document.getElementById('map_canvas-2'),myOptions); //End Initialize MAP //Set Marker var marker = new google.maps.Marker({ position: map.getCenter(), map: map }); marker.getPosition(); //End marker //Set info window var contentString = '
'+ '
'+ '
'+ '

»ç¶ûÀÌ°¡µæÇÑÁý Ææ¼Ç

'+ '
'+ '

Àü¶ó³²µµ ½Å¾È±º ¾ÐÇØÀ¾ ¾ÐÇØ·Î 1568
' + ' 010-9243-9799
'+ ' Ä«Ä«¿ÀID : oj2004
'+ '

'+ '
'+ '
'; var infowindow = new google.maps.InfoWindow({ content: contentString, position: myLatLng }); infowindow.open(map); window.onload=function(){ // Run code $('.hideme').hide(); }; }); //Toggle Map Function function click_toggle(post_id){ //Find and Show this if(jQuery('#map_canvas-'+post_id).hasClass('hideme')){ jQuery('#map_canvas-'+post_id ).slideDown(); jQuery('#map_canvas-'+post_id ).addClass('active'); jQuery('#map_canvas-'+post_id ).removeClass('hideme'); }else{ jQuery('#map_canvas-'+post_id ).slideUp(); jQuery('#map_canvas-'+post_id ).removeClass('active'); jQuery('#map_canvas-'+post_id ).addClass('hideme'); } }