Bing Mapsの凡例を削除するにはどうすればよいですか?
質問する
1419 次
1 に答える
2
v7.0を使用している場合は、マップのコンストラクター(mapOptionパラメーター)でプロパティshowScalebarをfalseに設定することで、スケールバーを非表示にできます。MSDNを参照してください。
http://msdn.microsoft.com/en-us/library/gg427603.aspx
そしてここに例があります:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<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()
{
// Set the map and view options, setting the map style to Road and
// removing the user's ability to change the map style
var mapOptions = {credentials:"Bing Maps Key",
height: 400,
width: 400,
showScalebar: false};
// Initialize the map
var map = new Microsoft.Maps.Map(document.getElementById("mapDiv"), mapOptions);
}
</script>
</head>
<body onload="GetMap();">
<div id='mapDiv' style="position:relative;"></div>
</body>
</html>
于 2013-02-19T22:47:14.487 に答える