我似乎无法让Bing从我的开发服务器接受我的API密钥 - 我已经从bingmapsportal.com网站设置了一个API密钥,并将URL设置为http://localhost
并生成了成功的关键。
然后我按照API文档中的说明实现地图,如下所示:
<html>
<head>
<script type="text/javascript" src="http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0"></script>
<script type="text/javascript">
function getMap(){
var mapInitOpts = {
credentials: 'mycredentials',
mapTypeId: Microsoft.Maps.MapTypeId.road
};
var map = new Microsoft.Maps.Map(document.getElementById("map_canvas"), mapInitOpts);
}
</script>
</head>
<body onload="getMap();">
<div id='map_canvas' style="position:absolute; top:0px; left:0px; width:100%; height:100%;"></div><br />
</body>
</html>
// map shows invalid credentials error
但是,我总是收到“指定的凭据无效”消息。
关于这个问题的任何想法?
答案 0 :(得分:5)
假设您'mycredentials'
担任此问题发布的实际凭据的占位符,请尝试使用交互式SDK中的API密钥:
AjtUzWJBHlI3Ma_Ke6Qv2fGRXEs0ua5hUQi54ECwfXTiWsitll4AkETZDihjcfeI
如果上述方法有效,并且您获得的密钥没有,那么您的密钥出现问题,您需要使用Bing Dev Support。
如果上述密钥不起作用,那么您的开发环境就会出现问题......