| 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"),n=this.options.iconSize,o=n[0],i=n[1],r=function(t,e){var n=document.createElementNS("http://www.w3.org/2000/svg",t);for(var o in e)n.setAttribute(o,e[o]);return n},c=r("svg",{viewBox:"0 0 365 560"}),a=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"});c.appendChild(a),e.appendChild(c),e.setAttribute("style","margin-left: "+-o/2+"px;margin-top: "+-i+"px;width: "+o+"px;height: "+i+"px;");var s=document.createElement("i");return s.className=this.options.iconClass,s.setAttribute("style","position:absolute;top: 20%;left: 50%;transform: translate3d(-50%, -20%, 0);color: "+this.options.color+";line-height: 0;display: flex;justify-content: center;align-items: center;"),e.appendChild(s),e}}),L.SVGMarker=L.Marker.extend({initialize:function(t,e){e=e||{};var n=L.extend({},L.SVGIcon.prototype.options,e);e.icon=new L.SVGIcon(n),L.Marker.prototype.initialize.call(this,t,e)}}); |