html google map
HTML Google Maps
Google지도를 사용하면 웹 페이지에지도를 표시 할 수 있습니다.
A Basic Web Page
웹 페이지에 Google지도를 추가하는 방법을 보여주기 위해 기본 HTML 페이지를 사용합니다.
Example
<!DOCTYPE html>
<html>
<body>
<h1>My First Google Map</h1>
<div id="map">My map will go here</div>
</body>
<html>
Set the Map Size
지도 크기 설정 :
Example
<div id="map" style="width:400px;height:400px">
Create a Function to Set The Map Properties
이 예는 영국의 런던 중심의 Google지도를 정의합니다.
Example
function myMap() {
var mapOptions = {
center: new google.maps.LatLng(51.5, -0.12),
zoom: 10,
mapTypeId: google.maps.MapTypeId.HYBRID
}
var map = new google.maps.Map(document.getElementById("map"), mapOptions);
}
<!DOCTYPE html>
<html>
<body>
<h1>My First Google Map</h1>
<div id="map" style="width:400px;height:400px;background:yellow"></div>
<script>
function myMap() {
var mapOptions = {
center: new google.maps.LatLng(51.5, -0.12),
zoom: 10,
mapTypeId: google.maps.MapTypeId.HYBRID
}
var map = new google.maps.Map(document.getElementById("map"), mapOptions);
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBu-916DdpKAjTmJNIgngS6HL_kDIKU0aU&callback=myMap"></script>
</body>
</html>
게시판 목록
퍼블리셔팁
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 887 | HTML | 8년 전 | 2229 | ||
| 886 | HTML | 8년 전 | 1777 | ||
| 885 | HTML | 8년 전 | 2202 | ||
| 884 | HTML | 8년 전 | 2256 | ||
| 883 | HTML | 8년 전 | 2420 | ||
| 882 | HTML | 8년 전 | 2170 | ||
| 881 | HTML | 8년 전 | 2298 | ||
| 880 | HTML | 8년 전 | 2615 | ||
| 879 | HTML | 8년 전 | 1713 | ||
| 878 | HTML | 8년 전 | 1943 | ||
| 877 | HTML | 8년 전 | 1957 | ||
| 876 | HTML | 8년 전 | 2146 | ||
| 875 | HTML | 8년 전 | 1687 | ||
| 874 | HTML | 8년 전 | 2714 | ||
| 873 | HTML | 8년 전 | 2561 | ||
| 872 | HTML | 8년 전 | 2610 | ||
| 871 | HTML | 8년 전 | 2918 | ||
| 870 | HTML | 8년 전 | 2193 | ||
| 869 | HTML | 8년 전 | 2631 | ||
| 868 | HTML | 8년 전 | 2146 | ||
| 867 | HTML | 8년 전 | 1921 | ||
| 866 | HTML | 8년 전 | 1658 | ||
| 865 | HTML | 8년 전 | 1911 | ||
| 864 | HTML | 8년 전 | 2040 | ||
| 863 | HTML | 8년 전 | 1338 | ||
| 862 | HTML | 8년 전 | 1644 | ||
| 861 | HTML | 8년 전 | 1609 | ||
| 860 | HTML | 8년 전 | 1874 | ||
| 859 | HTML | 8년 전 | 1534 | ||
| 858 | HTML | 8년 전 | 1826 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기