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에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 917 | CSS | 8년 전 | 1913 | ||
| 916 | CSS | 8년 전 | 2003 | ||
| 915 | CSS | 8년 전 | 2020 | ||
| 914 | CSS | 8년 전 | 2943 | ||
| 913 | CSS | 8년 전 | 1967 | ||
| 912 | CSS | 8년 전 | 2031 | ||
| 911 | CSS | 8년 전 | 2002 | ||
| 910 | CSS | 8년 전 | 1872 | ||
| 909 | HTML | 8년 전 | 2302 | ||
| 908 | CSS | 8년 전 | 2235 | ||
| 907 | CSS | 8년 전 | 2064 | ||
| 906 | CSS | 8년 전 | 2316 | ||
| 905 | CSS | 8년 전 | 2056 | ||
| 904 | CSS | 8년 전 | 1847 | ||
| 903 | CSS | 8년 전 | 1975 | ||
| 902 | CSS | 8년 전 | 2196 | ||
| 901 | CSS | 8년 전 | 2075 | ||
| 900 | CSS | 8년 전 | 2505 | ||
| 899 | CSS | 8년 전 | 2487 | ||
| 898 | CSS | 8년 전 | 2061 | ||
| 897 | CSS | 8년 전 | 1685 | ||
| 896 | CSS | 8년 전 | 2335 | ||
| 895 | CSS | 8년 전 | 2011 | ||
| 894 | CSS | 8년 전 | 2628 | ||
| 893 | CSS | 8년 전 | 1987 | ||
| 892 | HTML | 8년 전 | 2073 | ||
| 891 | HTML | 8년 전 | 2543 | ||
| 890 | HTML | 8년 전 | 2627 | ||
| 889 | HTML | 8년 전 | 3728 | ||
| 888 | HTML | 8년 전 | 2168 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기