プッシュピンに指定されたテキストがピンに表示されません (Bing Maps 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 デバッガーに構文またはその他のエラーはありません。
私は何が欠けていますか?あなたが私に与えることができるどんな助けにも感謝します.