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에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 767 |
|
9년 전 | 3958 | ||
| 766 |
kiplayer
|
9년 전 | 2880 | ||
| 765 |
|
9년 전 | 4010 | ||
| 764 | 기타 |
|
9년 전 | 4687 | |
| 763 | 기타 |
kiplayer
|
9년 전 | 9539 | |
| 762 | 기타 | 9년 전 | 9101 | ||
| 761 | 기타 | 9년 전 | 8791 | ||
| 760 | 반응형 |
|
9년 전 | 12948 | |
| 759 | 기타 | 10년 전 | 3992 | ||
| 758 | CSS |
|
10년 전 | 6003 | |
| 757 | HTML | 10년 전 | 3926 | ||
| 756 | 기타 |
|
10년 전 | 4807 | |
| 755 | CSS |
|
10년 전 | 15859 | |
| 754 | HTML |
|
10년 전 | 6135 | |
| 753 | HTML |
|
10년 전 | 4892 | |
| 752 | 기타 |
|
10년 전 | 6083 | |
| 751 | 반응형 |
|
10년 전 | 7236 | |
| 750 | HTML | 10년 전 | 7953 | ||
| 749 | HTML | 10년 전 | 7421 | ||
| 748 | 반응형 | 10년 전 | 6724 | ||
| 747 | 반응형 | 10년 전 | 12343 | ||
| 746 | 기타 | 11년 전 | 13536 | ||
| 745 | CSS |
잘살아보자
|
11년 전 | 6449 | |
| 744 | CSS |
잘살아보자
|
11년 전 | 12348 | |
| 743 | 기타 | 11년 전 | 7907 | ||
| 742 | HTML |
잘살아보자
|
11년 전 | 6580 | |
| 741 | 기타 |
잘살아보자
|
11년 전 | 6937 | |
| 740 | CSS |
잘살아보자
|
11년 전 | 6404 | |
| 739 | CSS | 11년 전 | 5734 | ||
| 738 | 기타 | 11년 전 | 3624 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기