+function createMap(divName, options) {
+ options = $.extend({zoomControl: true, panZoomControl: true, layerControl: true}, options);
+
+ map = L.map(divName, $.extend({}, options, {panControl: false, zoomsliderControl: false, maxZoom: 18}));
+
+ if (map.attributionControl) {
+ map.attributionControl.setPrefix('');
+ }