Bing Maps AJAX Control 7.0 ISDK を使用しています。
鳥瞰図で通りのラベルを非表示にしたいと考えています。
質問がありましたが、api 6 について
ナビゲーションバーでできます。
しかし、私の地図ではナビゲーションバーがオフになっています:
showDashboard: false
SDKで解決策が見つかりません:
http://www.bingmapsportal.com/isdk/ajaxv7#CreateMapWithViewOptions7
これが私のコードです:
function handlerEvent()
{
displayAlert('Handler clicked');
}
Microsoft.Maps.loadModule('Microsoft.Maps.Themes.BingTheme', { callback: function()
{
map = new Microsoft.Maps.Map(document.getElementById('bingMap'),
{
credentials: 'xxxxxxxxxxxxxxxxxxxxxxx',
theme: new Microsoft.Maps.Themes.BingTheme(),
center: new Microsoft.Maps.Location(47.219058,-1.553625),
mapTypeId: Microsoft.Maps.MapTypeId.birdseye,
zoom: 16,
showDashboard: false
});
var infoboxOptions = {title:'Text', description:'TextTextText', actions:[{label: 'Click Handler', eventHandler: handlerEvent}]};
map.entities.push(new Microsoft.Maps.Infobox(map.getCenter(), infoboxOptions));
}});
それを手伝ってくれませんか?