2012-04-05 44 views
0

指定的圖釘文本未顯示在地圖上(Bing Maps Ajax 7.0控件)。必應地圖Ajax 7.0圖釘文本不顯示

下面是代碼,從交互式SDK幾乎複製:我認爲會出現此給出代碼

var offset = new Microsoft.Maps.Point(0, 5); 
alert($(".LocationPushPin a", $(this)).text()); 
var pushpinOptions = {text: $(".LocationPushPin a", $(this)).text(), visible: true, textOffset: offset}; 
var pushpin = new Microsoft.Maps.Pushpin(new Microsoft.Maps.Location($(".RetailLocationLatitude", $(this)).text(), $(".RetailLocationLongitude", $(this)).text(), pushpinOptions)); 
BingMap.entities.push(pushpin); 

警報的確顯示的值(「1001」等)。 Firebug或IE9調試器中沒有語法或其他錯誤。

我錯過了什麼?感謝你給與我的幫助。

+0

我有一個放錯地方的括號(是選項之後,文本之後沒有),這禁用選項功能: var pushpin = new Microsoft.Maps.Pushpin(new Microsoft.Maps.Location($(「。RetailLocationLatitude」,$(this)).text(),$(「。RetailLocationLongitude」,$( this)).text()),pushpinOptions); 對不起。 – 2012-04-05 09:54:13

回答

0

我有一個放錯地方的括號(是選項之後。

var pushpin = new Microsoft.Maps.Pushpin(new Microsoft.Maps.Location($(".RetailLocationLatitude", $(this)).text(), $(".RetailLocationLongitude", $(this)).text()), pushpinOptions); 

對不起,你的麻煩,在審查這個問題