VEMap.ShowTrafficLegend Method

You are not viewing the latest version of the AJAX control. Bing Maps AJAX V7 is the recommended JavaScript control for Bing Maps. If you need this documentation, it is available in as a CHM or PDF download.

Displays the traffic legend.

VEMap.ShowTrafficLegend(x, y)

Parameters

Parameter Description

x

The x-coordinate of the top-left corner of the legend. Optional.

y

The y-coordinate of the top-left corner of the legend. Optional.

Remarks

If x and y are not specified, the legend is displayed at the bottom-right of the copyright. If the legend is already visible, this method moves the legend to the specified coordinates, or to the bottom-right if x and y are not specified.

Example

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://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="https://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.3"></script>

      <script type="text/javascript">
         var map = null;
         var Location = new VELatLong(47.64, -122.23);

         function GetMap()
         {
            map = new VEMap('myMap');
            map.LoadMap(Location, 9);
         }

         function ShowTraffic()
         {
            map.LoadTraffic(true);
            map.ShowTrafficLegend(50,50);
            map.SetTrafficLegendText("The traffic legend");
         }

         function ClearTraffic()
         {
            map.ClearTraffic();
         }
      </script>
   </head>
   <body onload="GetMap();" style="font-family:Arial">
      <h3>Traffic</h3>
      <p>&nbsp;</p>
      <div id='myMap' style="position:relative; width:600px; height:400px;"></div>
      <input id="showtraffic"  type="button" value="Show Traffic"  onclick="ShowTraffic();"/>
      <input id="cleartraffic" type="button" value="Clear Traffic" onclick="ClearTraffic();"/>
   </body>
</html>

See Also

Reference

VEMap.HideTrafficLegend Method
VEMap.SetTrafficLegendText Method