| 1 |
L.SVGIcon=L.Icon.extend({options:{iconSize:[26,42],popupAnchor:[1,-42],tooltipAnchor:[16,-28],iconClass:"",background:"#2b82cb",color:"white"},createIcon:function(t){var e=t&&"DIV"===t.tagName?t:document.createElement("div"),o=this.options.iconSize,i=o[0],n=o[1],r=function(t,e){var o=document.createElementNS("http://www.w3.org/2000/svg",t);for(var i in e)o.setAttribute(i,e[i]);return o},a=r("svg",{viewBox:"0 0 365 560"}),c=r("path",{fill:this.options.background,d:"M182.9,551.7c0,0.1,0.2,0.3,0.2,0.3S358.3,283,358.3,194.6c0-130.1-88.8-186.7-175.4-186.9C96.3,7.9,7.5,64.5,7.5,194.6c0,88.4,175.3,357.4,175.3,357.4S182.9,551.7,182.9,551.7z"});a.appendChild(c),e.appendChild(a),e.setAttribute("style","margin-left: "+-i/2+"px;margin-top: "+-n+"px;width: "+i+"px;height: "+n+"px;");var p=document.createElement("i");return p.className=this.options.iconClass,p.setAttribute("style","position:absolute;top: 34%;left: 50%;transform: translate3d(-50%, -34%, 0);color: "+this.options.color+";line-height: 0;"),e.appendChild(p),e}}),L.SVGMarker=L.Marker.extend({initialize:function(t,e){e=e||{};var o=L.extend({},L.SVGIcon.prototype.options,e);e.icon=new L.SVGIcon(o),L.Marker.prototype.initialize.call(this,t,e)}}); |