

$(function(){
  var icon = $.jmap.createIcon( 
    {iconImage: "https://onion.net/itemis-ag/preview/binary.ashx?id=4092"}
        );

   $("#map7448").jmap("init", {
    mapCenter: [51.503430805065314, 7.504439949989319], 
    mapType: "map",
    mapZoom: 15,
    mapControlSize: "large",
    mapEnableOverview: false,
    mapEnableType: true,
    mapEnableGoogleBar: true,
    mapEnableScaleControl: false,
    mapEnableDragging: true,
    mapEnableInfoWindows: true,
    mapEnableDoubleClickZoom: true,
    mapEnableScrollZoom: false,
    mapEnableSmoothZoom: false,
    mapShowjMapIcon: false
  }, function(el, options) {



   $(el).jmap("addMarker", {
      pointLatLng: [51.503430805065314, 7.504439949989319], 
      
          pointHTML: document.getElementById('info7461'),
        
      /* Event to open infoWindow (click, dblclick, mouseover, etc) */
      pointOpenHTMLEvent: "click",
      pointIsDraggable: false,
      pointIsRemovable: false,
      pointRemoveEvent: "dblclick",
      pointMinZoom: 5,
      pointMaxZoom: 17,
      
          pointIcon: 
$.jmap.createIcon({
  
  iconImage: "/binary.ashx?id=4112"

})
,
        
      pointMaxContent: null,
      pointMaxTitle: null
   });


});

});

