在 html 网页上添加 bingmap javascript 错误

发布于 2024-10-16 19:17:30 字数 802 浏览 1 评论 0原文

<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<script type="text/javascript"  src="http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0"></script>

<script type="text/javascript">
function GetMap()
{ 

  var map = new Microsoft.Maps.Map(document.getElementById("mapDiv"), 
   {credentials: "Your Bing Maps Key",
   center: new Microsoft.Maps.Location(45.5, -122.5),
   mapTypeId: Microsoft.Maps.MapTypeId.road,
    zoom: 7});
 }
 </script>
 </head>
<body onload="GetMap();">
 <div id='mapDiv' style="position:relative; width:400px; height:400px;"></div>  
</body>
  </html>

我什至尝试过加载简单的地图,但在 Microsoft 类未定义上出现 js 错误

<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<script type="text/javascript"  src="http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0"></script>

<script type="text/javascript">
function GetMap()
{ 

  var map = new Microsoft.Maps.Map(document.getElementById("mapDiv"), 
   {credentials: "Your Bing Maps Key",
   center: new Microsoft.Maps.Location(45.5, -122.5),
   mapTypeId: Microsoft.Maps.MapTypeId.road,
    zoom: 7});
 }
 </script>
 </head>
<body onload="GetMap();">
 <div id='mapDiv' style="position:relative; width:400px; height:400px;"></div>  
</body>
  </html>

I've tried even loading a simlple map but I get a js error on the Microsoft class undefined

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

东风软 2024-10-23 19:17:30

将以下行添加到 中页面的部分,在您上面粘贴的部分之前:

<script src="http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0" type="text/javascript"
charset="UTF-8"></script>

Add the following line to the <head> section of your page, before the section that you've pasted above:

<script src="http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0" type="text/javascript"
charset="UTF-8"></script>
猫性小仙女 2024-10-23 19:17:30

您是否包含了地图 api 的 include 内容?

<script type="text/javascript" src="bingmaps.js"></script>

或者您正在使用其余服务,在这种情况下,您需要在 AJAX 调用中指定服务的位置...

http://www.earthware.co.uk/blog/index.php/2010/10/using -jquery-with-the-bing-maps-rest-api/

Have you included the include for the maps api?

<script type="text/javascript" src="bingmaps.js"></script>

Or are you using the rest service, in which case you need to specify the location of the service in an AJAX call...

http://www.earthware.co.uk/blog/index.php/2010/10/using-jquery-with-the-bing-maps-rest-api/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文