最後のポイントをクリックすると描画を終了します
\"\n : \"Click last point to finish line
\",\n },\n },\n rectangle: {\n tooltip: {\n start: \"\",\n },\n },\n simpleshape: {\n tooltip: {\n end: \"\",\n },\n },\n },\n },\n };\n\n const RectangleDrawer = new Rectangle(this.map, {\n shapeOptions: {\n color: \"#808080\",\n opacity: 1,\n },\n });\n\n this.$store.commit(\"L/setRectangleDrawer\", RectangleDrawer);\n this.$store.commit(\"L/setPolylineDrawer\", polylineDrawer);\n\n // tooltipの動的な言語切り替えの為、Vuexを監視している。\n this.$store.watch(\n (state, getters) => getters[\"layer/rowChecked\"],\n (newValue, oldValue) => {\n console.log(newValue);\n },\n );\n\n const that = this;\n\n // 図形作成完了にhookする\n this.map.on(L.Draw.Event.CREATED, (event) => {\n const { layer } = event;\n\n if (layer instanceof L.Rectangle) {\n if (event.layerType === \"rectangle\") {\n event.layer.options.color = \"#A08B50\";\n }\n rectangleDrawnItem.addLayer(event.layer);\n this.$store.commit(\"L/setRectangleTile\", event.layer);\n this.$store.commit(\"L/setRectangleLatLng\", event.layer._latlngs);\n } else if (layer instanceof L.Polyline) {\n const latlngs = layer._defaultShape();\n let distance = 0;\n for (let i = 0; i < latlngs.length - 1; i++) {\n distance += latlngs[i].distanceTo(latlngs[i + 1]);\n }\n\n const DistancePopupContentClass = Vue.extend(DistancePopupContent);\n const instance = new DistancePopupContentClass({\n store: that.$store,\n propsData: { layer, distance },\n });\n }\n\n // 継承関係においてPolygonはPolylineでもあるため、サブクラスから先に検証する。\n // https://leafletjs.com/examples/extending/extending-1-classes.html\n\n if (layer instanceof L.Rectangle) {\n return;\n }\n if (layer instanceof L.Polygon) {\n this.onCreatedRulerPolygon(layer);\n } else if (layer instanceof L.Polyline) {\n this.onCreatedRulerPolyline(layer);\n }\n });\n\n // 図形作成終了にhookする(中断でも発火する)\n this.map.on(L.Draw.Event.DRAWSTOP, (event) => {\n // 距離測定モードが選択されている場合、再度、描画を開始する。\n if (\n event.layerType === \"polyline\" &&\n that.$store.getters.selectedOperation ===\n MAP_CONST.MAP_OPERATIONS.RULER\n ) {\n that.$store.commit(\"L/handleRulerDrawer\", \"enable\");\n }\n });\n\n // zoomが移動が終わった際にhookする\n this.map.on(\"zoomend\", this.onZoomend);\n },\n /**\n * Ruler機能で作成したPolygonに前処理をして、mapに追加する\n */\n onCreatedRulerPolygon(layer) {\n this.$store.commit(\"addRulerLayer\", layer);\n\n // 表示する情報の作成\n const latLngs = layer._defaultShape();\n const circumference = this.calcTotalDistance([...latLngs, latLngs[0]]);\n const isMetric = true;\n const readableCircumference = L.GeometryUtil.readableDistance(\n circumference,\n isMetric,\n );\n\n const area = L.GeometryUtil.geodesicArea(latLngs);\n const readableArea = L.GeometryUtil.readableArea(area, isMetric);\n\n // Popupの作成、追加\n const areaPopupContent = this.createVueInstance(AreaPopupContent, {\n layer,\n circumference,\n area,\n });\n areaPopupContent.$mount();\n layer.bindPopup(areaPopupContent.$refs.content, {\n className: \"area-popup\",\n maxWidth: 230,\n });\n\n // Tooltipの作成、追加\n const tooltipContent = `0\" class=\"title\">\n {{ $store.state.infoPanel.title }}\n
\n{{ isJp ? info.name.jp : info.name.en }}
\n0\" class=\"title\">\n {{ $store.state.infoPanelSmall.title }}\n
\n土壌データ
\n地域 | \n{{ cityName }} | \n
土壌 | \n\n \n {{ group }}\n | \n
{{ title }}
\n\n 使い方 \n How to use \n
\n\n \n ① 右のパネルから重ねたいレイヤーを選択します。\n \n \n 1. Select a layer from the right panel to overlay.\n \n
\n\n \n ② \"+\"ボタンを押すと、レイヤーを追加できます。\n \n 2. To add a layer, click \"+\" button. \n
\n\n \n ③\n スライダーで透明度を変更、チェックのオンオフで重ねる順番を切り替えることができます。\n \n \n 3. You can change the opacity by a slider. To change the orders,\n click the checkbox and turn on and off.\n \n
\n\n \n ④ 右上の\"GEO\n INFORMATION\"を押すと、カーソルを合わせた地点の情報が閲覧できるようになります。\n \n \n 4. \"GEO INFORMATION\" mode shows the information of the cursor point.\n \n
\n\n \n ⑤\n 地図上をクリックすると、その地点の気象情報や農地情報を知ることができます。\n \n \n 5. By clicking on the map, you can load data of climate and\n farmland.\n \n
\nOVERLAY LAYERS
\n