Show Traffic Info
Instructions
Use the "Show" button to show traffic info on the map. Zoom into the map for details.
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, 8);
mapper.addNavigationPanel();
return;
}
function show() {
mapper.showTrafficView();
mapper.setMapListener("recenter", update);
mapper.setMapListener("zoom_level_change", update);
mapper.addTrafficEvents();
return;
}
function update() {
mapper.showTrafficView();
return;
}
</script>
Buttons:
<a href="javascript:show()"
><img src="images/add.gif" border=0></a>
Download working pageRemember that you need to use your key code as Key attribute.