私はこれで髪を引っ張っています。全体的な目的は、store_pins というマーカー配列から情報を取得する情報ボックスを表示することです。
テスト目的で、マップ マーカーの 1 つがクリックされたときにアラートを表示しているだけで、配列から項目 5 が表示されます。最終的に、画像とテキストを含む InfoBox を表示します。
マーカーがクリックされたときに機能するコードの下部にリスナーがあります。問題は、配列からの情報が渡されず、テキストを表示する代わりに、アラートに [object Object] が表示されることだけです。
私が間違っている場所の手がかりがあれば、本当に感謝しています。
<script type="text/javascript">
var map;
var pop_up_info = "border: 0px solid black; background-color: #ffffff; padding:15px; margin-top: 8px; border-radius:10px; -moz-border-radius: 10px; -webkit-border-radius: 10px; box-shadow: 1px 1px #888;";
google.maps.event.addDomListener(window, 'load', initialize);
function initialize() {
var map_center = new google.maps.LatLng(55.144178,-2.254122);
var store_pins = new Array();
var pin_marker = new Array();
store_pins = [
['Bellingham Co-Op', 55.144178, -2.254122,'pin','bellinghamcoop.jpg','Staff at Bellingham Co-Op'],
['Leicester Tigers - Kingston Park', 55.018754, -1.672230,'rugby','kingparktigers.jpg','Stu with the Leicester Tigers Rugby Team'],
['The Hawick PSA Team', 55.421825, -2.797123,'rugby','hawickpsa.jpg','The Hawick PSA Team'] // REMEMBER NO COMMA ON LAST ENTRY!!!
];
var myOptions = {
zoom: 3,
minZoom: 3,
center: map_center,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("trackingT-map"), myOptions);
// Main Loop
for(i=0;i<store_pins.length;i++)
{
var pos = new google.maps.LatLng(store_pins[i][1], store_pins[i][2]);
var pinIcon = {
url: 'icons/shirtpin.png',
//The size image file.
size: new google.maps.Size(50, 55),
//The point on the image to measure the anchor from. 0, 0 is the top left.
origin: new google.maps.Point(0, 0),
//The x y coordinates of the anchor point on the marker. e.g. If your map marker was a drawing pin then the anchor would be the tip of the pin.
anchor: new google.maps.Point(25, 20)
};
var pinShape = {
coord: [0,0,50,55],
type: 'rect'
};
pin_marker[i] = new google.maps.Marker(
{
position: pos,
map: map,
title: store_pins[i][0],
icon: pinIcon,
shape: pinShape,
zIndex: 107
}
);
descr = store_pins[i][5];
// Popup Box
google.maps.event.addListener(pin_marker[i], 'click', function(descr) {
alert(descr);
});
// Popup Box End
}
};
</script>