Demo

LocationBox JavaScript Demos

Add Social Events

Add:     Remove:  

(powered by dakick.com services)

Instructions

Use the "Add" button to add social events to on the map. Use "Remove" button to remove the marker.
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(40.97, 29.065, 8);
  mapper.addNavigationPanel();
  return;
} 

function add() {
  mapper.addSocialEvents();
  return;
} 

function remove() {
  mapper.removeSocialEvents();
  return;
}
</script>
					

Buttons:


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