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에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 707 | CSS | 12년 전 | 12402 | ||
| 706 | 기타 | 12년 전 | 5098 | ||
| 705 | CSS | 12년 전 | 5674 | ||
| 704 | 기타 | 12년 전 | 12110 | ||
| 703 | 웹접근성 | 12년 전 | 10090 | ||
| 702 | 기타 | 12년 전 | 5148 | ||
| 701 | CSS | 12년 전 | 3114 | ||
| 700 | 반응형 |
kiplayer
|
12년 전 | 6804 | |
| 699 | CSS |
kiplayer
|
12년 전 | 6426 | |
| 698 | 웹접근성 |
|
12년 전 | 36934 | |
| 697 | HTML | 12년 전 | 4343 | ||
| 696 | HTML | 12년 전 | 8077 | ||
| 695 | CSS | 12년 전 | 5453 | ||
| 694 | HTML | 12년 전 | 5819 | ||
| 693 | CSS | 12년 전 | 3892 | ||
| 692 | 웹접근성 |
프로프리랜서
|
12년 전 | 3785 | |
| 691 | 웹접근성 |
|
12년 전 | 12470 | |
| 690 | CSS | 12년 전 | 4218 | ||
| 689 | 웹접근성 | 13년 전 | 5876 | ||
| 688 | CSS | 13년 전 | 4927 | ||
| 687 | HTML | 13년 전 | 7386 | ||
| 686 | CSS | 13년 전 | 5844 | ||
| 685 | 기타 | 13년 전 | 10614 | ||
| 684 | HTML |
후라보노보노
|
13년 전 | 4810 | |
| 683 | HTML | 13년 전 | 4342 | ||
| 682 | 기타 |
|
13년 전 | 3519 | |
| 681 | CSS | 13년 전 | 3667 | ||
| 680 | HTML | 13년 전 | 6312 | ||
| 679 | 반응형 | 13년 전 | 6592 | ||
| 678 | CSS | 13년 전 | 3818 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기