{"version":3,"sources":["webpack:///./src/projectModules/eeh2023/geojson-options-common.js"],"names":["commonObj","circleStyle","radius","stroke","weight","color","opacity","fill","fillColor","fillOpacity","style","lineStyle","commonEventFunc","feature","layer","properties","bindPopup","createPopupTable","on","e","setStyle","commonStyleFunc","geometry","type","common","props","table","document","createElement","classList","add","tbody","key","appendChild","tr","th","td","textContent"],"mappings":"kHAAA,iJAAO,IAAMA,EAAY,CACvBC,YAAa,CACXC,OAAQ,GACRC,QAAQ,EACRC,OAAQ,EACRC,MAAO,OACPC,QAAS,EACTC,MAAM,EACNC,UAAW,UACXC,YAAa,IAEfC,MAAO,CACLP,QAAQ,EACRC,OAAQ,EAERC,MAAO,UACPC,QAAS,EACTC,MAAM,EACNC,UAAW,UACXC,YAAa,IAEfE,UAAW,CACTR,QAAQ,EACRC,OAAQ,EACRC,MAAO,UACPC,QAAS,EACTC,MAAM,IAIH,SAASK,EAAgBC,EAASC,GAEnCD,EAAQE,YACVD,EAAME,UAAUC,EAAiBJ,EAAQE,aAG3CD,EAAMI,GAAG,aAAa,SAAUC,GAC9BL,EAAMM,SAAS,CAAEd,QAAS,GAAKG,YAAa,GAAKL,OAAQ,OAE3DU,EAAMI,GAAG,YAAY,SAAUC,GAC7BL,EAAMM,SAAS,CAAEd,QAAS,EAAKG,YAAa,GAAKL,OAAQ,OAItD,SAASiB,EAAgBR,GAE9B,GAAKA,GAAYA,EAAQS,SACzB,MAC4B,eAA1BT,EAAQS,SAASC,MACS,oBAA1BV,EAAQS,SAASC,KAEVC,OAAOb,UAEc,UAA1BE,EAAQS,SAASC,KACZC,OAAOvB,YAETuB,OAAOd,MAGhB,SAASO,EAAiBQ,GACxB,IAAMC,EAAQC,SAASC,cAAc,SACrCF,EAAMG,UAAUC,IAAI,eACpB,IAAMC,EAAQJ,SAASC,cAAc,SAErC,IAAK,IAAMI,KADXN,EAAMO,YAAYF,GACAN,EAAO,CACvB,IAAMS,EAAKP,SAASC,cAAc,MAC5BO,EAAKR,SAASC,cAAc,MAC5BQ,EAAKT,SAASC,cAAc,MAClCO,EAAGE,YAAcL,EACjBI,EAAGC,YAAcZ,EAAMO,GACvBE,EAAGD,YAAYE,GACfD,EAAGD,YAAYG,GACfL,EAAME,YAAYC,GAGpB,IAAMxB,EAAQiB,SAASC,cAAc,SAiBrC,OAhBAlB,EAAM2B,YAAc,yRAepBX,EAAMO,YAAYvB,GACXgB","file":"chunk-2d0b39ca.56704606ec8b39b8a9be.js","sourcesContent":["export const commonObj = {\n circleStyle: {\n radius: 10,\n stroke: true,\n weight: 2.0,\n color: \"#fff\",\n opacity: 1.0,\n fill: true,\n fillColor: \"#f40175\",\n fillOpacity: 0.5,\n },\n style: {\n stroke: true,\n weight: 2.0,\n // color: \"#a08b50\",\n color: \"#009dff\",\n opacity: 1.0,\n fill: true,\n fillColor: \"#ffffff\",\n fillOpacity: 0.5,\n },\n lineStyle: {\n stroke: true,\n weight: 2.0,\n color: \"#ff2ffc\",\n opacity: 1.0,\n fill: false,\n },\n};\n\nexport function commonEventFunc(feature, layer) {\n // console.log(feature, layer);\n if (feature.properties) {\n layer.bindPopup(createPopupTable(feature.properties));\n }\n // change color when mouseover\n layer.on(\"mouseover\", function (e) {\n layer.setStyle({ opacity: 0.5, fillOpacity: 0.5, weight: 3.0 });\n });\n layer.on(\"mouseout\", function (e) {\n layer.setStyle({ opacity: 1.0, fillOpacity: 0.8, weight: 2.0 });\n });\n}\n\nexport function commonStyleFunc(feature) {\n // console.log(\"style\", feature);\n if (!feature || !feature.geometry) return;\n if (\n feature.geometry.type === \"LineString\" ||\n feature.geometry.type === \"MultiLineString\"\n ) {\n return common.lineStyle;\n }\n if (feature.geometry.type === \"Point\") {\n return common.circleStyle;\n }\n return common.style;\n}\n\nfunction createPopupTable(props) {\n const table = document.createElement(\"table\");\n table.classList.add(\"popup-table\");\n const tbody = document.createElement(\"tbody\");\n table.appendChild(tbody);\n for (const key in props) {\n const tr = document.createElement(\"tr\");\n const th = document.createElement(\"th\");\n const td = document.createElement(\"td\");\n th.textContent = key;\n td.textContent = props[key];\n tr.appendChild(th);\n tr.appendChild(td);\n tbody.appendChild(tr);\n }\n // add style to table\n const style = document.createElement(\"style\");\n style.textContent = `\n .popup-table {\n width: 100%;\n border-collapse: collapse;\n border-spacing: 0;\n }\n .popup-table th,\n .popup-table td {\n padding: 0.5em;\n border: 1px solid #ccc;\n }\n .popup-table th {\n background-color: #444;\n }\n `;\n table.appendChild(style);\n return table;\n}\n"],"sourceRoot":""}