<!DOCTYPE html >
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>แผนผังการเดินทาง</title>
<style>
/* Always set the map height explicitly to define the size of the div
* element that contains the map. */
#map {
height: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<iframe style="width:2000px;height:30px" scrolling="no" src="iframe.php">
</iframe>
<div id="map"></div>
<script>
var customLabel = {
มรณภาพ: {
label: 'ม'
},
บรรพชา: {
label: 'บ'
},
จำพรรษาตอนนี้: {
label: 'จ'
},
เคยจำพรรษา: {
label: 'ค'
},
ลาสิกขา: {
label: 'ล'
}
};
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
center: new google.maps.LatLng(13.847860,100.604274),
zoom:6
});
var infoWindow = new google.maps.InfoWindow;
<?php $Label="$_GET[Label]";?>
// Change this depending on the name of your PHP or XML file
downloadUrl('sas.php?Label=<?php echo $Label?>', function(data) {
var xml = data.responseXML;
var markers = xml.documentElement.getElementsByTagName('marker');
Array.prototype.forEach.call(markers, function(markerElem) {
var idmap = markerElem.getAttribute('idmap');
var point = new google.maps.LatLng(
parseFloat(markerElem.getAttribute('la')),
parseFloat(markerElem.getAttribute('lo')));
var Temple_name = markerElem.getAttribute('Temple_name');
var Label = markerElem.getAttribute('Label');
var mtyear = markerElem.getAttribute('mtyear');
var type = markerElem.getAttribute('type');
var infowincontent = document.createElement('div');
var strong = document.createElement('strong');
strong.textContent = Temple_name
infowincontent.appendChild(strong);
infowincontent.appendChild(document.createElement('br'));
var text = document.createElement('text');
text.textContent = mtyear
infowincontent.appendChild(text);
var icon = customLabel[type] || {};
var marker = new google.maps.Marker({
map: map,
position: point,
label: icon.label
});
marker.addListener('click', function() {
infoWindow.setContent(infowincontent);
infoWindow.open(map, marker);
});
});
});
}
function downloadUrl(url, callback) {
var request = window.ActiveXObject ?
new ActiveXObject('Microsoft.XMLHTTP') :
new XMLHttpRequest;
request.onreadystatechange = function() {
if (request.readyState == 4) {
request.onreadystatechange = doNothing;
callback(request, request.status);
}
};
request.open('GET', url, true);
request.send(null);
}
function doNothing() {}
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAK3RgqSLy1toc4lkh2JVFQ5ipuRB106vU&callback=initMap">
</script>
</body>
</html>