Markers คือ วิธีการนำ Google Maps มาใช้งานและปักหมุด Markers บนแผนที่บนพิกัดหรือตำเเหน่งที่ต้องการเเสดง เพื่อเเทนตำเเหน่งสถานที่ต่างๆ เช่น รถไฟฟ้า บ้าน โรงพยาบาล
โค้ดสร้าง Google map / Markers บน web application อย่างง่ายๆ
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Simple markers</title>
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 100%;
} #กำหนดความสูงของเเผนที่
</style>
</head>
<body>
<div id="map"></div> #google map เเสดงแผนที่
<script>
function initMap() {
var myLatLng = {lat: -25.363, lng: 131.044}; #กำหนดลองติจูตกับละติจูต
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 4,
center: myLatLng
}); #สร้าง google map
var marker = new google.maps.Marker({
position: myLatLng, #กำหนดที่วาง markers ในเเผนที่
map: map,
title: 'Hello World!'
}); #สร้าง markers ในเเผนที่
}
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&signed_in=true&callback=initMap"></script>
</body> #google ape
</html>
ศึกษาเพิ่มเติมได้ที่ >>>>> https://developers.google.com/maps