English 中文(简体)
• 如何在 Java的阵列展示所有领域?
原标题:How to display all the fields in a array with JavaScript?

I would like to display the content of an array in a Googlemap bubble. I wonder why the following code is not working properly, since I only see the title but not the news in the bubble.

function addMarker(latitude, longitude, title, news)
{
    var marker = new GMarker(new GLatLng(latitude, longitude));

    GEvent.addListener(marker,  click ,function() {
        marker.openInfoWindowHtml(title, news);
    });

    map.addOverlay(marker);
}

function init()
{
    if (GBrowserIsCompatible())
    {   
        map = new GMap2(document.getElementById("map")); 
        map.addControl(new GSmallMapControl());
        map.setCenter(new GLatLng(centerLatitude, centerLongitude), startZoom);

        for (id = 0; id < markers.length; ++id)
        {
            addMarker(markers[id].latitude, markers[id].longitude, markers[id].title, markers  [id].news); //
        }
    }
}

window.onload = init;
window.onunload = GUnload;

这就是阵列结构:

var markers = [
{
     latitude : 56.7382105,
     longitude : 12.8584020,
     title :  Hallo Planet ,
     news :  blaaaa blaaaa blaaaa. 
},
{
     latitude : 62.6549167,
     longitude : 16.6354329,
     title :  Hallo World ,
     news :  bla bla bla. 
},
];

我在“曲线”<代码>>>>><>>>/代码”之后也尝试了,但结果完全相同。

最佳回答
问题回答

暂无回答




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签