Add Marker
Instructions
Use the "Add" button to add marker to a particular point on the map. Use "Remove" button to remove the marker.
Edit the source code to add more markers to any other point.
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=APIV2&Typ=JS"></script>
<script language="JavaScript">
var mapper = new IMapper();
function startup() {
mapper.initMap(40.97, 29.065, 10);
mapper.addNavigationPanel();
return;
}
function add() {
mapper.addMarker('id_1', 40.97, 29.065, 'SampleMarker', 'M.PIN_1', 70, 70);
return;
}
function remove() {
mapper.removeFeature('id_1');
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 pageRemember that you need to use your key code as Key attribute.
Notes
You can download our pin list.