Demo

LocationBox JavaScript Demos

Scale Bar

Add Scale Bar:  

Instructions

Use the "Add Scale Bar" button to add a scale bar to the map.
See the JavaScript API for more information.

Source Code

The Javascript code for the above map is:

 <script language="Javascript" 
    src="http://www.locationbox.com.tr/locationbox/services?Key=key&Cmd=API
    &Typ=JS"></script>
    
  <script language="JavaScript">
  var mapper  = new IMapper();

  function startup() {
    mapper.initMap(41.1, 29.1, 6);
    mapper.addNavigationPanel();
    return;
  }
  
  </script>
					

Call the addScaleBar function through add button or just add the mapper.addScaleBar() line in startup method.

  <a href="javascript:mapper.addScaleBar()"><img src="images/add.gif" border=0></a>
					
Download working page
Remember that you need to use your key code as Key attribute.