我正在使用Microsoft.Maps,在Visual Studio中進行開發。出版後,在雙方的iOS Safari /鉻和OSX Safari瀏覽器工作在我所有的Windows瀏覽器不錯,但看起來是這樣的:僅在iOS和OSX中映射加載錯誤,而不是Windows
http://i.imgur.com/8EsJcMz.png
當滾動或縮放,屏幕的相同左側顯示同樣的,而屏幕的右側移動到世界的另一個地方,與我試圖移動的方向完全無關。更不用說,引腳也移動了!
作爲一個說明,我在星期五進行了測試,發現0個併發症......過去3天發生了一些事情,我不知道我是否可以修復它。
<script type="text/javascript" src="https://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0&s=1"></script>
<script type="text/javascript" src="/js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="/js/jquery-bing-maps/jquery.ui.bmap.js"></script>
<script type="text/javascript">
map = new Microsoft.Maps.Map(document.getElementById("mapDiv"),
{
credentials: "<redacted>",
mapTypeId: Microsoft.Maps.MapTypeId.road,
enableClickableLogo: false,
enableSearchLogo: false,
showCopyright: false,
showDashboard: false,
showMapTypeSelector: false,
showScalebar: false,
tileBuffer: 0,
zoom: 10
});
window.onload = MapLoad;
</script>
<body style="min-height:418px;">
<div id="topofpage">
<form id="Form2" runat="server">
<!--#include virtual="header.html"-->
</form>
<div class="undersightslogo" style="max-width: 100%; overflow: hidden;">
<div id="mapDiv" style="position: absolute; width: 100%; max-height: 100%; top: 42px;
bottom: 0px; left:0px; min-height:372px;">
</div>
<div style="position: absolute;left: 7px; bottom:-54px;">
<h6>
© <companyname> <script type="text/javascript">document.write(new Date().getFullYear());</script>
</h6>
</div>
</div>
</div>
</body>