How do you disable the zooming and dragging features of the MultiMap API?
In other words I want the map to dislplay a point but to be completely static allowing no user interaction.
You could use a Static Map -
http://www.multimap.com/openapidocs/1.2/web_service/staticmaps.htmOr see the example at
http://www.multimap.com/openapidocs/1.2/demos/options.htmbasically you can use
mapviewer.setOption
http://www.multimap.com/share/documentation/openapi/1.2/classes/MultimapViewer.html#setOptionto set a single option
e.g.
mapviewer.setOption( "doubleclick",
undefined) ;or
mapviewer.setOptions
to set several at once using an array