มีปัญหา google map ครับ ดูโค๊ดให้หน่อยครับ link เมื่ออาทิตย์ก่อน ขึ้นโชว์ได้ปกติครับ เมื่อวานมันขึ้นแป๊บเดียวแล้วก็หายไปเลย เหลือแต่หน้าจอขาวๆ
link เมื่ออาทิตย์ก่อน ขึ้นโชว์ได้ปกติครับ
แต่ปัญหาคือ เมื่อวานมันขึ้นแป๊บเดียวแล้วก็หายไปเลย เหลือแต่หน้าจอขาวๆ รีเฟลชก็ไม่ขึ้นครับ
ไม่ทราบว่าเป็นอะไรครับ รบกวนคนรู้ช่วยที่นะครับ
Code (PHP)
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>Google Map</title>
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
<style>
html {
height: auto;
}
body {
height: auto;
margin: 0;
padding: 0;
}
#map {
height: auto;
position: absolute;
bottom:0;
left:0;
right:0;
top:0;
}
@media print {
#map {
height: 950px;
}
}
</style>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript"
src="https://www.google.com/jsapi?key=ABQIAAAA_KNcKfoyaTskjEp-kSSEjxSsDbTxMRg-JrUcPZT14QWonZA5mxRqx3ct_DbeHVelXNr1WbKEEJ5k-A"></script>
<script src="http://google-maps-utility-library-v3.googlecode.com/svn/trunk/googleearth/src/googleearth-compiled.js" type="text/javascript"></script>
<script type="text/javascript">
google.load('earth', '1');
var map;
var googleEarth;
function init() {
map = new google.maps.Map(document.getElementById('map'), {
zoom: 15,
center: new google.maps.LatLng(-33.963631, 151.061979),
zoom: 15,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
googleEarth = new GoogleEarth(map);
var locations = [
['Urban Florist Supplies 10/49-51 Stanley St, Peakhurst NSW 2210, Australia ', -33.963631, 151.061979, 1],
];
var infowindow = new google.maps.InfoWindow();
var marker, i; for (i = 0; i < locations.length; i++) {
marker = new google.maps.Marker({
position: new google.maps.LatLng(locations[i][1], locations[i][2]),
draggable : false,
title : locations[i][0],
icon : 'http://maps.google.com/mapfiles/kml/pal3/icon48.png',
map: map
});
google.maps.event.addListener(marker, 'click', (function(marker, i) {
return function() {
infowindow.setContent(locations[i][0]);
infowindow.open(map, marker);
}
})
(marker, i));
}
}
google.maps.event.addDomListener(window, 'load', init);
</script>
</head>
<body>
<div id="map"></div>
</body>
</html>
Tag : PHP, HTML/CSS
Date :
2012-02-16 09:22:37
By :
9vespa
View :
1205
Reply :
2
ตอนนี้ก็ยังไม่ได้นะครับ รบกวนด้วยนะครับ
Date :
2012-02-16 10:14:19
By :
9vespa
โค้ดรันได้ปกตินะครับ
Date :
2012-02-16 14:12:21
By :
deawx
Load balance : Server 03