- // TODO internationalisation of the context menu strings
- var map = new L.OSM.Map("map", {
- zoomControl: false,
- layerControl: false,
- contextmenu: true,
- contextmenuWidth: 140,
- contextmenuItems: [{
- text: 'Directions from here',
- callback: function(e){ context_directionsfrom(e, map); }
- }, {
- text: 'Directions to here',
- callback: function(e){ context_directionsto(e, map); }
- }, '-', {
- text: 'Add a note here',
- callback: function(e){ context_addnote(e, map); }
- }, {
- text: 'Show address',
- callback: function(e){ context_describe(e, map); }
- }, {
- text: 'Query features',
- callback: function(e){ context_queryhere(e, map); }
- }, {
- text: 'Centre map here',
- callback: function(e){ context_centrehere(e, map); }
- }]
- });