คือผมปักหมุด บน google แล้วเวลาคลิกที่หมุดเพื่อให้แสดงหน้าต่าง info แผนที่ขยับไปทางขวาตลอด ผมต้องเลื่อนแผนที่เองเพื่อกลับมาดู info ทำไงได้บ้างครับพอคลิกแล้วให้มันอยู่ตำแหน่งเดิม ให้เราสามารถดู info โดยไม่ต้องเลื่อนแผนที่กลับมาดู
โค้ดที่ใช้ก็แบบนี้ครับ
Code (JavaScript)
function createMarker(point, number,markerOptions)
{
var marker = new GMarker(point,markerOptions);
// Show this markers index in the info window when it is clicked
var html = number;
GEvent.addListener(marker, "click", function() {marker.openInfoWindowHtml(html);});
return marker;
};
function createMarker(point, number,markerOptions)
{
var marker = new GMarker(point,markerOptions);
// Show this markers index in the info window when it is clicked
var html = number;
GEvent.addListener(marker, "click", function() {
marker.openInfoWindowHtml(html);
map.setCenter(point); //เพิ่มบรรทัดนี้เข้าไปครับ เมื่อคลิกหมุดนั้นๆ จะแสดงกลาง map ครับ
});
return marker;
};