0
我正在使用bing ajax地圖來顯示世界地圖。但是,世界地圖在地圖窗口中多次出現。我如何確保地圖集不被複制。如何防止複製世界地圖
// Instantiate map, and show world view:
var mapOptions = {credentials: "your cred here",
zoom: 2,
disableBirdseye: false,
enableClickableLogo: false,
fixedMapPosition: true,
showCopyright: false,
showScalebar: true,
showDashboard: true,
mapTypeId: Microsoft.Maps.MapTypeId.road,
center: new Microsoft.Maps.Location(45, 90)
};
map = new Microsoft.Maps.Map(document.getElementById('map'), mapOptions);
這是包含地圖的html div。