@operato/scene-openlayers 1.2.54 → 1.2.56
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +20 -0
- package/db.sqlite +0 -0
- package/dist/ol-marker.d.ts +1 -0
- package/dist/ol-marker.js +8 -21
- package/dist/ol-marker.js.map +1 -1
- package/dist/openlayers.d.ts +3 -1
- package/dist/openlayers.js +30 -9
- package/dist/openlayers.js.map +1 -1
- package/helps/scene/component/ol-marker.ja.md +16 -0
- package/helps/scene/component/ol-marker.ko.md +16 -0
- package/helps/scene/component/ol-marker.md +16 -0
- package/helps/scene/component/ol-marker.ms.md +16 -0
- package/helps/scene/component/ol-marker.zh.md +16 -0
- package/helps/scene/component/openlayers.ja.md +20 -0
- package/helps/scene/component/openlayers.ko.md +20 -0
- package/helps/scene/component/openlayers.md +20 -0
- package/helps/scene/component/openlayers.ms.md +23 -0
- package/helps/scene/component/openlayers.zh.md +20 -0
- package/icons/ol-marker-template.png +0 -0
- package/icons/ol-path-template.png +0 -0
- package/icons/openlayers-template.png +0 -0
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +3 -3
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +15 -0
- package/logs/application-2023-09-05-20.log +10 -0
- package/logs/connections-2023-09-03-14.log +38 -0
- package/logs/connections-2023-09-03-16.log +38 -0
- package/logs/connections-2023-09-05-20.log +38 -0
- package/package.json +2 -2
- package/src/ol-marker.ts +9 -24
- package/src/openlayers.ts +36 -10
- package/translations/en.json +1 -1
- package/translations/ja.json +3 -0
- package/translations/ko.json +1 -1
- package/translations/ms.json +1 -1
- package/translations/zh.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
- package/logs/application-2023-09-02-17.log +0 -15
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,26 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [1.2.56](https://github.com/things-scene/operato-scene/compare/v1.2.55...v1.2.56) (2023-09-05)
|
7
|
+
|
8
|
+
|
9
|
+
### :bug: Bug Fix
|
10
|
+
|
11
|
+
* help for openlayers ([1d08ef7](https://github.com/things-scene/operato-scene/commit/1d08ef7d7a5795b3bea2ef5a3bbc31deddc5d73d))
|
12
|
+
* openlayers ([4e1c405](https://github.com/things-scene/operato-scene/commit/4e1c4051947f983ae23fd74c28be708d2aeef136))
|
13
|
+
* openlayers icon ([7495944](https://github.com/things-scene/operato-scene/commit/7495944206026ec36f06415d93a32e0d2dd27091))
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
## [1.2.55](https://github.com/things-scene/operato-scene/compare/v1.2.54...v1.2.55) (2023-09-03)
|
18
|
+
|
19
|
+
|
20
|
+
### :bug: Bug Fix
|
21
|
+
|
22
|
+
* openlayers ([b7b5e4b](https://github.com/things-scene/operato-scene/commit/b7b5e4bd843de1af28a0dba29e278545a3c9c46a))
|
23
|
+
|
24
|
+
|
25
|
+
|
6
26
|
## [1.2.54](https://github.com/things-scene/operato-scene/compare/v1.2.53...v1.2.54) (2023-09-03)
|
7
27
|
|
8
28
|
|
package/db.sqlite
CHANGED
Binary file
|
package/dist/ol-marker.d.ts
CHANGED
package/dist/ol-marker.js
CHANGED
@@ -50,8 +50,8 @@ const NATURE = {
|
|
50
50
|
}
|
51
51
|
}
|
52
52
|
],
|
53
|
-
'value-property': 'latlng'
|
54
|
-
|
53
|
+
'value-property': 'latlng',
|
54
|
+
help: 'scene/component/ol-marker'
|
55
55
|
};
|
56
56
|
const MARKER_PATH = 'M10 0 C14.42 0 18 3.58 18 8 C18 12.42 14.42 16 10 16 C5.58 16 2 12.42 2 8 C2 3.58 5.58 0 10 0 Z';
|
57
57
|
export default class OpenLayersMarker extends RectPath(Shape) {
|
@@ -77,28 +77,11 @@ export default class OpenLayersMarker extends RectPath(Shape) {
|
|
77
77
|
}
|
78
78
|
get infoWindow() {
|
79
79
|
if (!this._infoWindow) {
|
80
|
-
// this._infoWindow = new google.maps.InfoWindow()
|
81
|
-
// 인포윈도우 생성
|
82
80
|
this._infoWindow = new Overlay({
|
83
81
|
element: document.getElementById('info'),
|
84
82
|
positioning: 'bottom-center',
|
85
83
|
stopEvent: false
|
86
84
|
});
|
87
|
-
// // 마커 클릭 이벤트 리스너 추가
|
88
|
-
// marker.on('click', event => {
|
89
|
-
// const coordinate = event.coordinate
|
90
|
-
// const content = '<div>Hello, This is InfoWindow!</div>'
|
91
|
-
// infoWindow.setPosition(coordinate)
|
92
|
-
// infoWindow.getElement().innerHTML = content
|
93
|
-
// map.addOverlay(infoWindow)
|
94
|
-
// })
|
95
|
-
// // 지도에 레이어 추가
|
96
|
-
// map.addLayer(markerLayer)
|
97
|
-
// // 인포윈도우를 닫는 함수
|
98
|
-
// const closeInfoWindow = () => {
|
99
|
-
// infoWindow.setPosition(undefined)
|
100
|
-
// infoWindow.getElement().innerHTML = ''
|
101
|
-
// }
|
102
85
|
}
|
103
86
|
return this._infoWindow;
|
104
87
|
}
|
@@ -224,9 +207,13 @@ export default class OpenLayersMarker extends RectPath(Shape) {
|
|
224
207
|
};
|
225
208
|
}
|
226
209
|
set latlng(latlng) {
|
227
|
-
var _a;
|
228
210
|
var { lat, lng } = latlng;
|
229
|
-
(
|
211
|
+
if (this.marker) {
|
212
|
+
const geometry = this.marker.getGeometry();
|
213
|
+
if (geometry instanceof Point) {
|
214
|
+
geometry.setCoordinates(fromLonLat([lng, lat]));
|
215
|
+
}
|
216
|
+
}
|
230
217
|
this.setState({
|
231
218
|
lat,
|
232
219
|
lng
|
package/dist/ol-marker.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ol-marker.js","sourceRoot":"","sources":["../src/ol-marker.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright © HatioLab Inc. All rights reserved.\n */\n\nimport { Component, InfoWindow as SceneInfoWindow, Properties, RectPath, Shape } from '@hatiolab/things-scene'\nimport Openlayers from './openlayers'\n\nimport 'ol/ol.css'\nimport { Map, MapBrowserEvent, Overlay, View } from 'ol'\nimport { fromLonLat } from 'ol/proj'\nimport { Tile as TileLayer, Vector as VectorLayer } from 'ol/layer'\nimport { OSM, Vector as VectorSource } from 'ol/source'\nimport { Icon, Style } from 'ol/style'\nimport { Feature } from 'ol'\nimport Point from 'ol/geom/Point'\n\nconst NATURE = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'id-input',\n label: 'target-map',\n name: 'targetMap',\n property: {\n component: 'openlayers'\n }\n },\n {\n type: 'number',\n label: 'latitude',\n name: 'lat',\n property: {\n step: 0.000001,\n max: 90,\n min: -90\n }\n },\n {\n type: 'number',\n label: 'longitude',\n name: 'lng',\n property: {\n step: 0.000001,\n max: 180,\n min: -180\n }\n },\n {\n type: 'select',\n label: 'style',\n name: 'style',\n property: {\n options: ['circle', 'marker']\n }\n }\n ],\n 'value-property': 'latlng'\n // help: 'scene/component/gmap-marker'\n}\n\nconst MARKER_PATH = 'M10 0 C14.42 0 18 3.58 18 8 C18 12.42 14.42 16 10 16 C5.58 16 2 12.42 2 8 C2 3.58 5.58 0 10 0 Z'\n\nexport default class OpenLayersMarker extends RectPath(Shape) {\n _infoWindow: any\n _marker: any\n _map: Map | null = null\n\n static markerStyle: Style = new Style({\n image: new Icon({\n anchor: [0.5, 1], // 이미지 중심 아래쪽을 지도 위치에 맞춤\n src:\n 'data:image/svg+xml;charset=utf-8,' +\n encodeURIComponent('<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\">' + MARKER_PATH + '</svg>')\n })\n })\n\n dispose() {\n this.detachFromOldOpenlayers(this.targetMap)\n\n this.marker = null\n delete this._infoWindow\n\n super.dispose()\n }\n\n ready() {\n super.ready()\n\n if (this.isTemplate()) {\n return\n }\n\n this.attachToNewOpenlayers(this.targetMap)\n }\n\n get map() {\n return this._map\n }\n\n get infoWindow() {\n if (!this._infoWindow) {\n // this._infoWindow = new google.maps.InfoWindow()\n\n // 인포윈도우 생성\n this._infoWindow = new Overlay({\n element: document.getElementById('info')!,\n positioning: 'bottom-center',\n stopEvent: false\n })\n\n // // 마커 클릭 이벤트 리스너 추가\n // marker.on('click', event => {\n // const coordinate = event.coordinate\n // const content = '<div>Hello, This is InfoWindow!</div>'\n // infoWindow.setPosition(coordinate)\n // infoWindow.getElement().innerHTML = content\n // map.addOverlay(infoWindow)\n // })\n\n // // 지도에 레이어 추가\n // map.addLayer(markerLayer)\n\n // // 인포윈도우를 닫는 함수\n // const closeInfoWindow = () => {\n // infoWindow.setPosition(undefined)\n // infoWindow.getElement().innerHTML = ''\n // }\n }\n\n return this._infoWindow\n }\n\n findInfoWindow(type: string) {\n var eventSetting = (this.state.event && this.state.event[type]) || {}\n\n var infoWindow =\n /* event spec v1.0 */ eventSetting.infoWindow ||\n /* event spec v1.1 */ (eventSetting.action == 'infoWindow' && eventSetting.target)\n\n if (infoWindow) {\n return this.root.findById(infoWindow)\n }\n }\n\n setInfoContent(sceneInfoWindow: SceneInfoWindow) {\n var tpl = Component.template(sceneInfoWindow.model.frontSideTemplate)\n var content = `<style>${sceneInfoWindow.model.style}</style>` + tpl(this)\n\n this.infoWindow.setContent(content)\n }\n\n openInfoWindow(iw: SceneInfoWindow) {\n this.setInfoContent(iw)\n\n if (!this.map) return\n\n this.infoWindow.open(this.map, this.marker)\n }\n\n onmarkerclick(e: MapBrowserEvent<UIEvent>) {\n var iw = this.findInfoWindow('tap')\n iw && this.openInfoWindow(iw)\n\n // this.trigger('click', e.ya) ??????\n }\n\n onmarkermouseover(e: MapBrowserEvent<UIEvent>) {\n var iw = this.findInfoWindow('hover')\n iw && this.openInfoWindow(iw)\n }\n\n onmarkermouseout(e: MapBrowserEvent<UIEvent>) {\n var iw = this.findInfoWindow('hover')\n iw && this.infoWindow.close()\n }\n\n set marker(marker) {\n this._marker = marker\n }\n\n get marker() {\n return this._marker\n }\n\n render(context: CanvasRenderingContext2D) {\n var { top, left, width, height } = this.state\n\n context.translate(left, top)\n\n // 마커 모양 그리기\n context.beginPath()\n\n context.moveTo(width / 2, height * 0.9)\n context.bezierCurveTo(width / 2.3, height * 0.6, 0, height / 2, 0, height / 4)\n\n context.ellipse(width / 2, height / 4, width / 2, height / 4, 0, Math.PI * 1, Math.PI * 0)\n\n context.bezierCurveTo(width, height / 2, width / 1.7, height * 0.6, width / 2, height * 0.9)\n context.closePath()\n\n context.translate(-left, -top)\n }\n\n detachFromOldOpenlayers(map: Openlayers) {\n if (this._marker && map) {\n map.vectorSource?.removeFeature(this._marker)\n this._marker = null\n }\n }\n\n attachToNewOpenlayers(map: Openlayers) {\n if (!this._marker && map) {\n let {\n lat,\n lng,\n style = 'circle',\n fillStyle: fillColor,\n alpha: fillOpacity = 1,\n strokeStyle: strokeColor,\n lineWidth: strokeWeight\n } = this.state\n\n const marker = new Feature({\n type: style,\n geometry: new Point(fromLonLat([lng || 0, lat || 0]))\n })\n\n map.vectorSource?.addFeatures([marker])\n\n if (marker) {\n //@ts-ignore\n marker.on('click', this.onmarkerclick.bind(this))\n //@ts-ignore\n marker.on('mouseover', this.onmarkermouseover.bind(this))\n //@ts-ignore\n marker.on('mouseout', this.onmarkermouseout.bind(this))\n }\n\n this._marker = marker\n }\n }\n\n onchangeTargetMap(after: string, before: string) {\n const oldMap = this.root.findById(before) as Openlayers\n const newMap = this.root.findById(after) as Openlayers\n\n this.detachFromOldOpenlayers(oldMap)\n this.attachToNewOpenlayers(newMap)\n }\n\n get targetMap() {\n const { targetMap } = this.state\n return this.root.findById(targetMap) as Openlayers\n }\n\n onchange(after: Properties, before: Properties) {\n if ('targetMap' in after) {\n this.onchangeTargetMap(after.targetMap, before.targetMap)\n }\n\n if ('lat' in after || 'lng' in after) {\n var { lat, lng } = this.state\n this.latlng = {\n lat,\n lng\n }\n }\n\n if (('fillStyle' in after || 'strokeStyle' in after || 'lineWidth' in after) && this.marker) {\n let {\n fillStyle: fillColor,\n alpha: fillOpacity = 1,\n strokeStyle: strokeColor,\n lineWidth: strokeWeight\n } = this.state\n\n this.marker.setIcon({\n path: MARKER_PATH,\n fillColor,\n fillOpacity,\n strokeColor,\n strokeWeight\n })\n }\n\n if ('style' in after) {\n const { targetMap } = this.state\n this.onchangeTargetMap(targetMap, targetMap)\n }\n\n super.onchange && super.onchange(after, before)\n }\n\n get latlng() {\n return {\n lat: this.getState('lat'),\n lng: this.getState('lng')\n }\n }\n\n set latlng(latlng) {\n var { lat, lng } = latlng\n this.marker?.getGeometry().setCoordinates(fromLonLat([lng, lat]))\n\n this.setState({\n lat,\n lng\n })\n }\n\n get nature() {\n return NATURE\n }\n}\n\nComponent.register('ol-marker', OpenLayersMarker)\n"]}
|
1
|
+
{"version":3,"file":"ol-marker.js","sourceRoot":"","sources":["../src/ol-marker.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright © HatioLab Inc. All rights reserved.\n */\n\nimport { Component, InfoWindow as SceneInfoWindow, Properties, RectPath, Shape } from '@hatiolab/things-scene'\nimport Openlayers from './openlayers'\n\nimport 'ol/ol.css'\nimport { Map, MapBrowserEvent, Overlay, View } from 'ol'\nimport { fromLonLat } from 'ol/proj'\nimport { Tile as TileLayer, Vector as VectorLayer } from 'ol/layer'\nimport { OSM, Vector as VectorSource } from 'ol/source'\nimport { Icon, Style } from 'ol/style'\nimport { Feature } from 'ol'\nimport Point from 'ol/geom/Point'\n\nconst NATURE = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'id-input',\n label: 'target-map',\n name: 'targetMap',\n property: {\n component: 'openlayers'\n }\n },\n {\n type: 'number',\n label: 'latitude',\n name: 'lat',\n property: {\n step: 0.000001,\n max: 90,\n min: -90\n }\n },\n {\n type: 'number',\n label: 'longitude',\n name: 'lng',\n property: {\n step: 0.000001,\n max: 180,\n min: -180\n }\n },\n {\n type: 'select',\n label: 'style',\n name: 'style',\n property: {\n options: ['circle', 'marker']\n }\n }\n ],\n 'value-property': 'latlng',\n help: 'scene/component/ol-marker'\n}\n\nconst MARKER_PATH = 'M10 0 C14.42 0 18 3.58 18 8 C18 12.42 14.42 16 10 16 C5.58 16 2 12.42 2 8 C2 3.58 5.58 0 10 0 Z'\n\nexport default class OpenLayersMarker extends RectPath(Shape) {\n _infoWindow: any\n _marker: any\n _map: Map | null = null\n\n static markerStyle: Style = new Style({\n image: new Icon({\n anchor: [0.5, 1], // 이미지 중심 아래쪽을 지도 위치에 맞춤\n src:\n 'data:image/svg+xml;charset=utf-8,' +\n encodeURIComponent('<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\">' + MARKER_PATH + '</svg>')\n })\n })\n\n dispose() {\n this.detachFromOldOpenlayers(this.targetMap)\n\n this.marker = null\n delete this._infoWindow\n\n super.dispose()\n }\n\n ready() {\n super.ready()\n\n if (this.isTemplate()) {\n return\n }\n\n this.attachToNewOpenlayers(this.targetMap)\n }\n\n get map() {\n return this._map\n }\n\n get infoWindow() {\n if (!this._infoWindow) {\n this._infoWindow = new Overlay({\n element: document.getElementById('info')!,\n positioning: 'bottom-center',\n stopEvent: false\n })\n }\n\n return this._infoWindow\n }\n\n findInfoWindow(type: string) {\n var eventSetting = (this.state.event && this.state.event[type]) || {}\n\n var infoWindow =\n /* event spec v1.0 */ eventSetting.infoWindow ||\n /* event spec v1.1 */ (eventSetting.action == 'infoWindow' && eventSetting.target)\n\n if (infoWindow) {\n return this.root.findById(infoWindow)\n }\n }\n\n setInfoContent(sceneInfoWindow: SceneInfoWindow) {\n var tpl = Component.template(sceneInfoWindow.model.frontSideTemplate)\n var content = `<style>${sceneInfoWindow.model.style}</style>` + tpl(this)\n\n this.infoWindow.setContent(content)\n }\n\n openInfoWindow(iw: SceneInfoWindow) {\n this.setInfoContent(iw)\n\n if (!this.map) return\n\n this.infoWindow.open(this.map, this.marker)\n }\n\n onmarkerclick(e: MapBrowserEvent<UIEvent>) {\n var iw = this.findInfoWindow('tap')\n iw && this.openInfoWindow(iw)\n\n // this.trigger('click', e.ya) ??????\n }\n\n onmarkermouseover(e: MapBrowserEvent<UIEvent>) {\n var iw = this.findInfoWindow('hover')\n iw && this.openInfoWindow(iw)\n }\n\n onmarkermouseout(e: MapBrowserEvent<UIEvent>) {\n var iw = this.findInfoWindow('hover')\n iw && this.infoWindow.close()\n }\n\n set marker(marker) {\n this._marker = marker\n }\n\n get marker() {\n return this._marker\n }\n\n render(context: CanvasRenderingContext2D) {\n var { top, left, width, height } = this.state\n\n context.translate(left, top)\n\n // 마커 모양 그리기\n context.beginPath()\n\n context.moveTo(width / 2, height * 0.9)\n context.bezierCurveTo(width / 2.3, height * 0.6, 0, height / 2, 0, height / 4)\n\n context.ellipse(width / 2, height / 4, width / 2, height / 4, 0, Math.PI * 1, Math.PI * 0)\n\n context.bezierCurveTo(width, height / 2, width / 1.7, height * 0.6, width / 2, height * 0.9)\n context.closePath()\n\n context.translate(-left, -top)\n }\n\n detachFromOldOpenlayers(map: Openlayers) {\n if (this._marker && map) {\n map.vectorSource?.removeFeature(this._marker)\n this._marker = null\n }\n }\n\n attachToNewOpenlayers(map: Openlayers) {\n if (!this._marker && map) {\n let {\n lat,\n lng,\n style = 'circle',\n fillStyle: fillColor,\n alpha: fillOpacity = 1,\n strokeStyle: strokeColor,\n lineWidth: strokeWeight\n } = this.state\n\n const marker = new Feature({\n type: style,\n geometry: new Point(fromLonLat([lng || 0, lat || 0]))\n })\n\n map.vectorSource?.addFeatures([marker])\n\n if (marker) {\n //@ts-ignore\n marker.on('click', this.onmarkerclick.bind(this))\n //@ts-ignore\n marker.on('mouseover', this.onmarkermouseover.bind(this))\n //@ts-ignore\n marker.on('mouseout', this.onmarkermouseout.bind(this))\n }\n\n this._marker = marker\n }\n }\n\n onchangeTargetMap(after: string, before: string) {\n const oldMap = this.root.findById(before) as Openlayers\n const newMap = this.root.findById(after) as Openlayers\n\n this.detachFromOldOpenlayers(oldMap)\n this.attachToNewOpenlayers(newMap)\n }\n\n get targetMap() {\n const { targetMap } = this.state\n return this.root.findById(targetMap) as Openlayers\n }\n\n onchange(after: Properties, before: Properties) {\n if ('targetMap' in after) {\n this.onchangeTargetMap(after.targetMap, before.targetMap)\n }\n\n if ('lat' in after || 'lng' in after) {\n var { lat, lng } = this.state\n this.latlng = {\n lat,\n lng\n }\n }\n\n if (('fillStyle' in after || 'strokeStyle' in after || 'lineWidth' in after) && this.marker) {\n let {\n fillStyle: fillColor,\n alpha: fillOpacity = 1,\n strokeStyle: strokeColor,\n lineWidth: strokeWeight\n } = this.state\n\n this.marker.setIcon({\n path: MARKER_PATH,\n fillColor,\n fillOpacity,\n strokeColor,\n strokeWeight\n })\n }\n\n if ('style' in after) {\n const { targetMap } = this.state\n this.onchangeTargetMap(targetMap, targetMap)\n }\n\n super.onchange && super.onchange(after, before)\n }\n\n get latlng() {\n return {\n lat: this.getState('lat'),\n lng: this.getState('lng')\n }\n }\n\n set latlng(latlng) {\n var { lat, lng } = latlng\n\n if (this.marker) {\n const geometry = this.marker.getGeometry()\n if (geometry instanceof Point) {\n geometry.setCoordinates(fromLonLat([lng, lat]))\n }\n }\n\n this.setState({\n lat,\n lng\n })\n }\n\n get nature() {\n return NATURE\n }\n}\n\nComponent.register('ol-marker', OpenLayersMarker)\n"]}
|
package/dist/openlayers.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Map } from 'ol';
|
1
|
+
import { Feature, Map } from 'ol';
|
2
2
|
import { Style } from 'ol/style.js';
|
3
3
|
import { Vector as VectorSource } from 'ol/source';
|
4
4
|
import { Geometry } from 'ol/geom';
|
@@ -10,6 +10,7 @@ export default class Openlayers extends HTMLOverlayContainer {
|
|
10
10
|
_listenTo?: Component;
|
11
11
|
_listener?: Function;
|
12
12
|
_vectorSource?: VectorSource<Geometry>;
|
13
|
+
_marker: Feature | null;
|
13
14
|
get eventMap(): {
|
14
15
|
'model-layer': {
|
15
16
|
'(self)': {
|
@@ -23,6 +24,7 @@ export default class Openlayers extends HTMLOverlayContainer {
|
|
23
24
|
get map(): Map | null;
|
24
25
|
dispose(): void;
|
25
26
|
setElementProperties(div: HTMLDivElement): void;
|
27
|
+
refreshMarker(): void;
|
26
28
|
onchange(after: Properties, before: Properties): void;
|
27
29
|
get latlng(): {
|
28
30
|
lat: any;
|
package/dist/openlayers.js
CHANGED
@@ -65,6 +65,7 @@ export default class Openlayers extends HTMLOverlayContainer {
|
|
65
65
|
constructor() {
|
66
66
|
super(...arguments);
|
67
67
|
this._map = null;
|
68
|
+
this._marker = null;
|
68
69
|
}
|
69
70
|
get eventMap() {
|
70
71
|
return {
|
@@ -150,13 +151,7 @@ export default class Openlayers extends HTMLOverlayContainer {
|
|
150
151
|
});
|
151
152
|
this._map = map;
|
152
153
|
this._vectorSource = vectorSource;
|
153
|
-
|
154
|
-
const marker = new Feature({
|
155
|
-
type: 'circle',
|
156
|
-
geometry: new Point(center)
|
157
|
-
});
|
158
|
-
this._vectorSource.addFeatures([marker]);
|
159
|
-
}
|
154
|
+
showMarker && this.refreshMarker();
|
160
155
|
this.rescale();
|
161
156
|
}
|
162
157
|
get tagName() {
|
@@ -172,16 +167,42 @@ export default class Openlayers extends HTMLOverlayContainer {
|
|
172
167
|
setElementProperties(div) {
|
173
168
|
this.rescale();
|
174
169
|
}
|
170
|
+
refreshMarker() {
|
171
|
+
var _a, _b;
|
172
|
+
const { showMarker, lat, lng } = this.state;
|
173
|
+
if (this._marker) {
|
174
|
+
(_a = this.vectorSource) === null || _a === void 0 ? void 0 : _a.removeFeature(this._marker);
|
175
|
+
this._marker = null;
|
176
|
+
}
|
177
|
+
if (showMarker) {
|
178
|
+
// 지도의 중심 좌표
|
179
|
+
const center = fromLonLat([lng || 126.9783882, lat || 37.5666103]);
|
180
|
+
this._marker = new Feature({
|
181
|
+
type: 'circle',
|
182
|
+
geometry: new Point(center)
|
183
|
+
});
|
184
|
+
(_b = this.vectorSource) === null || _b === void 0 ? void 0 : _b.addFeatures([this._marker]);
|
185
|
+
}
|
186
|
+
}
|
175
187
|
onchange(after, before) {
|
176
188
|
var _a, _b;
|
177
|
-
if (after
|
189
|
+
if ('zoom' in after) {
|
178
190
|
const view = (_a = this.map) === null || _a === void 0 ? void 0 : _a.getView();
|
179
|
-
view === null || view === void 0 ? void 0 : view.
|
191
|
+
view === null || view === void 0 ? void 0 : view.setZoom(after.zoom);
|
180
192
|
}
|
181
193
|
if ('lat' in after || 'lng' in after) {
|
182
194
|
let { lat, lng } = this.state;
|
183
195
|
const view = (_b = this.map) === null || _b === void 0 ? void 0 : _b.getView();
|
184
196
|
view === null || view === void 0 ? void 0 : view.setCenter(fromLonLat([lng, lat]));
|
197
|
+
if (this._marker) {
|
198
|
+
const geometry = this._marker.getGeometry();
|
199
|
+
if (geometry instanceof Point) {
|
200
|
+
geometry.setCoordinates(fromLonLat([lng, lat]));
|
201
|
+
}
|
202
|
+
}
|
203
|
+
}
|
204
|
+
if ('showMarker' in after) {
|
205
|
+
this.refreshMarker();
|
185
206
|
}
|
186
207
|
super.onchange(after, before);
|
187
208
|
this.rescale();
|
package/dist/openlayers.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"openlayers.js","sourceRoot":"","sources":["../src/openlayers.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright © HatioLab Inc. All rights reserved.\n */\n\n// @ts-ignore\nimport OpenLayersStyle from '!!text-loader!ol/ol.css'\n\nimport { Feature, Map, View } from 'ol'\nimport { Circle as CircleStyle, Fill, Icon, Stroke, Style } from 'ol/style.js'\nimport { Tile as TileLayer, Vector as VectorLayer } from 'ol/layer'\nimport { Vector as VectorSource, OSM } from 'ol/source'\nimport { fromLonLat } from 'ol/proj'\nimport { Geometry, Point } from 'ol/geom'\n\nimport { Component, HTMLOverlayContainer, Properties, ComponentNature, error } from '@hatiolab/things-scene'\n\nconst MARKER_PATH =\n 'M 0,0 C -2,-20 -10,-22 -10,-30 A 10,10 0 1,1 10,-30 C 10,-22 2,-20 0,0 z M -2,-30 a 2,2 0 1,1 4,0 2,2 0 1,1 -4,0'\n\nconst NATURE: ComponentNature = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'number',\n label: 'latitude',\n name: 'lat',\n property: {\n step: 0.000001,\n max: 90,\n min: -90\n }\n },\n {\n type: 'number',\n label: 'longitude',\n name: 'lng',\n property: {\n step: 0.000001,\n min: -180,\n max: 180\n }\n },\n {\n type: 'number',\n label: 'zoom',\n name: 'zoom'\n },\n {\n type: 'boolean',\n label: 'show-marker',\n name: 'showMarker'\n }\n ],\n 'value-property': 'latlng',\n help: 'scene/component/openlayers'\n}\n\nfunction getGlobalScale(component: Component) {\n var scale = { x: 1, y: 1 }\n var parent = component\n\n while (parent) {\n let { x, y } = parent.get('scale') || { x: 1, y: 1 }\n scale.x *= x || 1\n scale.y *= y || 1\n\n parent = parent.parent\n }\n return scale\n}\n\nexport default class Openlayers extends HTMLOverlayContainer {\n static markerStyle: Style = new Style({\n image: new Icon({\n src:\n 'data:image/svg+xml;charset=utf-8,' +\n encodeURIComponent('<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\">' + MARKER_PATH + '</svg>'),\n anchor: [0.5, 1]\n })\n })\n\n _anchor?: HTMLDivElement\n _map: Map | null = null\n _listenTo?: Component\n _listener?: Function\n _vectorSource?: VectorSource<Geometry>\n\n get eventMap() {\n return {\n 'model-layer': {\n '(self)': {\n change: (after: any) => {\n after.scale && this.rescale()\n }\n }\n }\n }\n }\n\n /*\n * 부모의 스케일의 역으로 transform해서, scale을 1로 맞추어준다.\n */\n rescale() {\n var anchor = this._anchor\n if (!anchor) {\n return\n }\n\n var scale = getGlobalScale(this)\n\n var sx = 1 / scale.x\n var sy = 1 / scale.y\n\n var transform = `scale(${sx}, ${sy})`\n\n anchor!.style.transform = transform\n anchor!.style.transformOrigin = '0px 0px'\n\n var { width, height } = this.state\n anchor.style.width = width * scale.x + 'px'\n anchor.style.height = height * scale.y + 'px'\n }\n\n createElement() {\n super.createElement()\n this._anchor = document.createElement('div')\n\n const style = document.createElement('style')\n style.textContent = `\n ${OpenLayersStyle}\n `\n\n this.element.appendChild(style)\n this.element.appendChild(this._anchor)\n\n const { lat, lng, zoom, showMarker } = this.state\n\n // 지도의 중심 좌표\n const center = fromLonLat([lng || 126.9783882, lat || 37.5666103])\n\n // 타일 레이어 생성 (배경 지도)\n const tileLayer = new TileLayer({\n source: new OSM({\n attributions: ''\n })\n })\n\n // 벡터 레이어 생성\n const styles: { [name: string]: Style } = {\n route: new Style({\n stroke: new Stroke({\n width: 6,\n color: [237, 212, 0, 0.8]\n })\n }),\n marker: Openlayers.markerStyle,\n circle: new Style({\n image: new CircleStyle({\n radius: 7,\n stroke: new Stroke({\n color: 'black',\n width: 2\n })\n })\n })\n }\n\n const vectorSource = new VectorSource()\n const vectorLayer = new VectorLayer({\n source: vectorSource,\n style: function (feature) {\n return styles[feature.get('type')]\n }\n })\n\n // 지도 생성\n const map = new Map({\n target: this._anchor,\n layers: [tileLayer, vectorLayer],\n view: new View({\n center,\n zoom\n })\n })\n\n this._map = map\n this._vectorSource = vectorSource\n\n if (showMarker) {\n const marker = new Feature({\n type: 'circle',\n geometry: new Point(center)\n })\n\n this._vectorSource.addFeatures([marker])\n }\n\n this.rescale()\n }\n\n get tagName() {\n return 'div'\n }\n\n get map() {\n return this._map\n }\n\n dispose() {\n super.dispose()\n\n delete this._anchor\n }\n\n setElementProperties(div: HTMLDivElement) {\n this.rescale()\n }\n\n onchange(after: Properties, before: Properties) {\n if (after.zoom) {\n const view = this.map?.getView()\n view?.setCenter(after.zoom)\n }\n\n if ('lat' in after || 'lng' in after) {\n let { lat, lng } = this.state\n const view = this.map?.getView()\n view?.setCenter(fromLonLat([lng, lat]))\n }\n\n super.onchange(after, before)\n\n this.rescale()\n }\n\n get latlng() {\n const { lat, lng } = this.state\n return { lat, lng }\n }\n\n set latlng(latlng) {\n this.setState(latlng)\n }\n\n get vectorSource() {\n return this._vectorSource\n }\n\n get nature() {\n return NATURE\n }\n}\n\nComponent.register('openlayers', Openlayers)\n"]}
|
1
|
+
{"version":3,"file":"openlayers.js","sourceRoot":"","sources":["../src/openlayers.ts"],"names":[],"mappings":"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","sourcesContent":["/*\n * Copyright © HatioLab Inc. All rights reserved.\n */\n\n// @ts-ignore\nimport OpenLayersStyle from '!!text-loader!ol/ol.css'\n\nimport { Feature, Map, View } from 'ol'\nimport { Circle as CircleStyle, Fill, Icon, Stroke, Style } from 'ol/style.js'\nimport { Tile as TileLayer, Vector as VectorLayer } from 'ol/layer'\nimport { Vector as VectorSource, OSM } from 'ol/source'\nimport { fromLonLat } from 'ol/proj'\nimport { Geometry, Point } from 'ol/geom'\n\nimport { Component, HTMLOverlayContainer, Properties, ComponentNature, error } from '@hatiolab/things-scene'\n\nconst MARKER_PATH =\n 'M 0,0 C -2,-20 -10,-22 -10,-30 A 10,10 0 1,1 10,-30 C 10,-22 2,-20 0,0 z M -2,-30 a 2,2 0 1,1 4,0 2,2 0 1,1 -4,0'\n\nconst NATURE: ComponentNature = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'number',\n label: 'latitude',\n name: 'lat',\n property: {\n step: 0.000001,\n max: 90,\n min: -90\n }\n },\n {\n type: 'number',\n label: 'longitude',\n name: 'lng',\n property: {\n step: 0.000001,\n min: -180,\n max: 180\n }\n },\n {\n type: 'number',\n label: 'zoom',\n name: 'zoom'\n },\n {\n type: 'boolean',\n label: 'show-marker',\n name: 'showMarker'\n }\n ],\n 'value-property': 'latlng',\n help: 'scene/component/openlayers'\n}\n\nfunction getGlobalScale(component: Component) {\n var scale = { x: 1, y: 1 }\n var parent = component\n\n while (parent) {\n let { x, y } = parent.get('scale') || { x: 1, y: 1 }\n scale.x *= x || 1\n scale.y *= y || 1\n\n parent = parent.parent\n }\n return scale\n}\n\nexport default class Openlayers extends HTMLOverlayContainer {\n static markerStyle: Style = new Style({\n image: new Icon({\n src:\n 'data:image/svg+xml;charset=utf-8,' +\n encodeURIComponent('<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 20 20\">' + MARKER_PATH + '</svg>'),\n anchor: [0.5, 1]\n })\n })\n\n _anchor?: HTMLDivElement\n _map: Map | null = null\n _listenTo?: Component\n _listener?: Function\n _vectorSource?: VectorSource<Geometry>\n _marker: Feature | null = null\n\n get eventMap() {\n return {\n 'model-layer': {\n '(self)': {\n change: (after: any) => {\n after.scale && this.rescale()\n }\n }\n }\n }\n }\n\n /*\n * 부모의 스케일의 역으로 transform해서, scale을 1로 맞추어준다.\n */\n rescale() {\n var anchor = this._anchor\n if (!anchor) {\n return\n }\n\n var scale = getGlobalScale(this)\n\n var sx = 1 / scale.x\n var sy = 1 / scale.y\n\n var transform = `scale(${sx}, ${sy})`\n\n anchor!.style.transform = transform\n anchor!.style.transformOrigin = '0px 0px'\n\n var { width, height } = this.state\n anchor.style.width = width * scale.x + 'px'\n anchor.style.height = height * scale.y + 'px'\n }\n\n createElement() {\n super.createElement()\n this._anchor = document.createElement('div')\n\n const style = document.createElement('style')\n style.textContent = `\n ${OpenLayersStyle}\n `\n\n this.element.appendChild(style)\n this.element.appendChild(this._anchor)\n\n const { lat, lng, zoom, showMarker } = this.state\n\n // 지도의 중심 좌표\n const center = fromLonLat([lng || 126.9783882, lat || 37.5666103])\n\n // 타일 레이어 생성 (배경 지도)\n const tileLayer = new TileLayer({\n source: new OSM({\n attributions: ''\n })\n })\n\n // 벡터 레이어 생성\n const styles: { [name: string]: Style } = {\n route: new Style({\n stroke: new Stroke({\n width: 6,\n color: [237, 212, 0, 0.8]\n })\n }),\n marker: Openlayers.markerStyle,\n circle: new Style({\n image: new CircleStyle({\n radius: 7,\n stroke: new Stroke({\n color: 'black',\n width: 2\n })\n })\n })\n }\n\n const vectorSource = new VectorSource()\n const vectorLayer = new VectorLayer({\n source: vectorSource,\n style: function (feature) {\n return styles[feature.get('type')]\n }\n })\n\n // 지도 생성\n const map = new Map({\n target: this._anchor,\n layers: [tileLayer, vectorLayer],\n view: new View({\n center,\n zoom\n })\n })\n\n this._map = map\n this._vectorSource = vectorSource\n\n showMarker && this.refreshMarker()\n\n this.rescale()\n }\n\n get tagName() {\n return 'div'\n }\n\n get map() {\n return this._map\n }\n\n dispose() {\n super.dispose()\n\n delete this._anchor\n }\n\n setElementProperties(div: HTMLDivElement) {\n this.rescale()\n }\n\n refreshMarker() {\n const { showMarker, lat, lng } = this.state\n\n if (this._marker) {\n this.vectorSource?.removeFeature(this._marker)\n this._marker = null\n }\n\n if (showMarker) {\n // 지도의 중심 좌표\n const center = fromLonLat([lng || 126.9783882, lat || 37.5666103])\n\n this._marker = new Feature({\n type: 'circle',\n geometry: new Point(center)\n })\n\n this.vectorSource?.addFeatures([this._marker])\n }\n }\n\n onchange(after: Properties, before: Properties) {\n if ('zoom' in after) {\n const view = this.map?.getView()\n view?.setZoom(after.zoom)\n }\n\n if ('lat' in after || 'lng' in after) {\n let { lat, lng } = this.state\n const view = this.map?.getView()\n view?.setCenter(fromLonLat([lng, lat]))\n\n if (this._marker) {\n const geometry = this._marker.getGeometry()\n if (geometry instanceof Point) {\n geometry.setCoordinates(fromLonLat([lng, lat]))\n }\n }\n }\n\n if ('showMarker' in after) {\n this.refreshMarker()\n }\n\n super.onchange(after, before)\n\n this.rescale()\n }\n\n get latlng() {\n const { lat, lng } = this.state\n return { lat, lng }\n }\n\n set latlng(latlng) {\n this.setState(latlng)\n }\n\n get vectorSource() {\n return this._vectorSource\n }\n\n get nature() {\n return NATURE\n }\n}\n\nComponent.register('openlayers', Openlayers)\n"]}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
## OpenLayersMarker
|
2
|
+
|
3
|
+
`OpenLayersMarker` コンポーネントは、OpenLayers マップ上にマーカーを表示し、管理する機能を提供します。
|
4
|
+
|
5
|
+
## 概要
|
6
|
+
|
7
|
+
`OpenLayersMarker` コンポーネントは、位置情報を視覚的に表示し、OpenLayers マップ上にマーカーを生成し、管理するためのものです。特定の場所にマーカーを表示し、関連する情報ウィンドウを開いたり、ユーザーとのインタラクションを処理したりすることができます。
|
8
|
+
|
9
|
+
## プロパティ
|
10
|
+
|
11
|
+
`OpenLayersMarker` コンポーネントは、次のプロパティを持っています:
|
12
|
+
|
13
|
+
- **targetMap**:マーカーが表示される OpenLayers コンポーネントの ID を設定します。
|
14
|
+
- **lat**:マーカーの緯度を設定します。
|
15
|
+
- **lng**:マーカーの経度を設定します。
|
16
|
+
- **style**:マーカーのスタイルを設定します。"circle" または "marker" を選択できます。
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# OpenLayersMarker
|
2
|
+
|
3
|
+
`OpenLayersMarker` 컴포넌트는 OpenLayers 지도 위에 마커를 표시하고 관리하는 기능을 제공합니다.
|
4
|
+
|
5
|
+
## 소개
|
6
|
+
|
7
|
+
`OpenLayersMarker` 컴포넌트는 OpenLayers 지도 환경에서 위치 정보를 시각적으로 나타내기 위한 마커를 생성하고 관리합니다. 이 컴포넌트를 사용하여 특정 위치에 마커를 표시하고 관련된 정보 창을 열거나 사용자와의 상호작용을 처리할 수 있습니다.
|
8
|
+
|
9
|
+
## 속성
|
10
|
+
|
11
|
+
`OpenLayersMarker` 컴포넌트는 다음과 같은 속성을 가지고 있습니다:
|
12
|
+
|
13
|
+
- **targetMap**: 마커가 표시될 OpenLayers 컴포넌트의 ID를 설정합니다.
|
14
|
+
- **lat**: 마커의 위도를 설정합니다.
|
15
|
+
- **lng**: 마커의 경도를 설정합니다.
|
16
|
+
- **style**: 마커의 스타일을 설정합니다. "circle" 또는 "marker"를 선택할 수 있습니다.
|
@@ -0,0 +1,16 @@
|
|
1
|
+
## OpenLayersMarker
|
2
|
+
|
3
|
+
The `OpenLayersMarker` component provides the functionality to display and manage markers on an OpenLayers map.
|
4
|
+
|
5
|
+
## Introduction
|
6
|
+
|
7
|
+
The `OpenLayersMarker` component is designed to create and manage markers on an OpenLayers map to visually represent location-based information. It allows you to display markers at specific locations on the map, open related info windows, and handle interactions with users.
|
8
|
+
|
9
|
+
## Properties
|
10
|
+
|
11
|
+
The `OpenLayersMarker` component has the following properties:
|
12
|
+
|
13
|
+
- **targetMap**: Sets the ID of the OpenLayers component where the marker will be displayed.
|
14
|
+
- **lat**: Sets the latitude of the marker's position.
|
15
|
+
- **lng**: Sets the longitude of the marker's position.
|
16
|
+
- **style**: Sets the style of the marker. Choose between "circle" or "marker".
|
@@ -0,0 +1,16 @@
|
|
1
|
+
## OpenLayersMarker
|
2
|
+
|
3
|
+
Komponen `OpenLayersMarker` menyediakan fungsionalitas untuk menampilkan dan mengelola penanda pada peta OpenLayers.
|
4
|
+
|
5
|
+
## Pengantar
|
6
|
+
|
7
|
+
Komponen `OpenLayersMarker` dirancang untuk membuat dan mengelola penanda pada peta OpenLayers untuk mewakili informasi berbasis lokasi secara visual. Anda dapat menampilkan penanda pada lokasi tertentu di peta, membuka jendela informasi terkait, dan mengatasi interaksi dengan pengguna.
|
8
|
+
|
9
|
+
## Properti
|
10
|
+
|
11
|
+
Komponen `OpenLayersMarker` memiliki properti berikut:
|
12
|
+
|
13
|
+
- **targetMap**: Mengatur ID komponen OpenLayers di mana penanda akan ditampilkan.
|
14
|
+
- **lat**: Mengatur lintang dari posisi penanda.
|
15
|
+
- **lng**: Mengatur bujur dari posisi penanda.
|
16
|
+
- **style**: Mengatur gaya penanda. Pilih antara "circle" atau "marker".
|
@@ -0,0 +1,16 @@
|
|
1
|
+
## OpenLayersMarker
|
2
|
+
|
3
|
+
`OpenLayersMarker` 组件提供了在 OpenLayers 地图上显示和管理标记的功能。
|
4
|
+
|
5
|
+
## 简介
|
6
|
+
|
7
|
+
`OpenLayersMarker` 组件用于在 OpenLayers 地图上创建和管理标记,以图形方式表示位置信息。您可以使用此组件在地图上的特定位置显示标记,打开相关信息窗口并处理与用户的交互。
|
8
|
+
|
9
|
+
## 属性
|
10
|
+
|
11
|
+
`OpenLayersMarker` 组件具有以下属性:
|
12
|
+
|
13
|
+
- **targetMap**:设置标记将显示在其中的 OpenLayers 组件的 ID。
|
14
|
+
- **lat**:设置标记的纬度。
|
15
|
+
- **lng**:设置标记的经度。
|
16
|
+
- **style**:设置标记的样式。可以选择 "circle" 或 "marker"。
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# OpenLayers
|
2
|
+
|
3
|
+
OpenLayers コンポーネントは地図を表示し、管理するために使用されます。
|
4
|
+
|
5
|
+
## OpenLayers の概要
|
6
|
+
|
7
|
+
OpenLayers コンポーネントは地図および関連するデータを視覚的に表示し、相互作用を行う機能を提供します。このコンポーネントを使用して位置情報を視覚的に表現し、さまざまな地図機能を活用することができます。
|
8
|
+
|
9
|
+
## OpenLayers コンポーネントのプロパティ
|
10
|
+
|
11
|
+
OpenLayers コンポーネントには次のプロパティがあります:
|
12
|
+
|
13
|
+
- **lat**:地図の中心の緯度を設定します。
|
14
|
+
- 例えば、ソウルの緯度は 37.5666103 です。
|
15
|
+
- **lng**:地図の中心の経度を設定します。
|
16
|
+
- 例えば、ソウルの経度は 126.9783882 です。
|
17
|
+
- **zoom**:地図の拡大/縮小度を設定します。
|
18
|
+
- 値 10 を最初に入力し、サイズを調整してみてください。
|
19
|
+
- **showMarker**:マーカーの表示有無を設定します。
|
20
|
+
- 指定した緯度/経度にマーカーを表示することができます。
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# OpenLayers
|
2
|
+
|
3
|
+
OpenLayers 컴포넌트는 지도를 표시하고 관리하는 데 사용됩니다.
|
4
|
+
|
5
|
+
## OpenLayers 소개
|
6
|
+
|
7
|
+
OpenLayers 컴포넌트는 지도 및 관련 데이터를 시각적으로 표시하고 상호작용할 수 있는 기능을 제공합니다. 이 컴포넌트를 사용하여 위치 기반 정보를 시각적으로 표현하고 다양한 지도 기능을 활용할 수 있습니다.
|
8
|
+
|
9
|
+
## OpenLayers 컴포넌트 속성
|
10
|
+
|
11
|
+
OpenLayers 컴포넌트는 다음과 같은 속성을 가지고 있습니다:
|
12
|
+
|
13
|
+
- **lat**: 지도의 중심 위도를 설정합니다.
|
14
|
+
- 예를 들어, 서울의 위도는 37.5666103 입니다.
|
15
|
+
- **lng**: 지도의 중심 경도를 설정합니다.
|
16
|
+
- 예를 들어, 서울의 경도는 126.9783882 입니다.
|
17
|
+
- **zoom**: 지도의 확대/축소 정도를 설정합니다.
|
18
|
+
- 값 10을 먼저 입력하고 크기를 조정해 보십시오.
|
19
|
+
- **showMarker**: 마커 표시 여부를 설정합니다.
|
20
|
+
- 주어진 위도/경도에 마커를 표시할 수 있습니다.
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# OpenLayers
|
2
|
+
|
3
|
+
The OpenLayers component is used to display and manage maps.
|
4
|
+
|
5
|
+
## Introduction to OpenLayers
|
6
|
+
|
7
|
+
The OpenLayers component visualizes maps and related data and provides interactive capabilities. You can use this component to visually represent location-based information and utilize various map features.
|
8
|
+
|
9
|
+
## Properties of the OpenLayers Component
|
10
|
+
|
11
|
+
The OpenLayers component has the following properties:
|
12
|
+
|
13
|
+
- **lat**: Sets the latitude of the map's center.
|
14
|
+
- For example, the latitude of Seoul is 37.5666103.
|
15
|
+
- **lng**: Sets the longitude of the map's center.
|
16
|
+
- For example, the longitude of Seoul is 126.9783882.
|
17
|
+
- **zoom**: Sets the zoom level of the map.
|
18
|
+
- Start with a value of 10 and adjust the size.
|
19
|
+
- **showMarker**: Sets whether to display a marker.
|
20
|
+
- You can display a marker at the given latitude/longitude.
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# OpenLayers
|
2
|
+
|
3
|
+
Komponen OpenLayers digunakan untuk menampilkan dan mengelola peta.
|
4
|
+
|
5
|
+
## Pengenalan OpenLayers
|
6
|
+
|
7
|
+
Komponen OpenLayers memvisualisasikan peta dan data terkait secara visual serta menyediakan fitur interaksi. Anda dapat menggunakan komponen ini untuk memvisualisasikan informasi berbasis lokasi secara visual dan memanfaatkan berbagai fitur peta.
|
8
|
+
|
9
|
+
## Properti Komponen OpenLayers
|
10
|
+
|
11
|
+
Komponen OpenLayers memiliki properti berikut:
|
12
|
+
|
13
|
+
- **lat**: Menetapkan
|
14
|
+
|
15
|
+
lintang pusat peta.
|
16
|
+
|
17
|
+
- Contoh, lintang Seoul adalah 37.5666103.
|
18
|
+
- **lng**: Menetapkan bujur pusat peta.
|
19
|
+
- Contoh, bujur Seoul adalah 126.9783882.
|
20
|
+
- **zoom**: Menetapkan tingkat perbesaran/pembesaran peta.
|
21
|
+
- Mulai dengan nilai 10 dan sesuaikan ukurannya.
|
22
|
+
- **showMarker**: Menetapkan apakah tanda akan ditampilkan atau tidak.
|
23
|
+
- Anda dapat menampilkan tanda pada lintang/bujur yang diberikan.
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# OpenLayers
|
2
|
+
|
3
|
+
OpenLayers 组件用于显示和管理地图。
|
4
|
+
|
5
|
+
## OpenLayers 简介
|
6
|
+
|
7
|
+
OpenLayers 组件可用于可视化地图及相关数据,并提供与其互动的功能。通过使用此组件,您可以将基于位置的信息进行可视化表示,并利用各种地图功能。
|
8
|
+
|
9
|
+
## OpenLayers 组件属性
|
10
|
+
|
11
|
+
OpenLayers 组件具有以下属性:
|
12
|
+
|
13
|
+
- **lat**:设置地图的中心纬度。
|
14
|
+
- 例如,首尔的纬度为 37.5666103。
|
15
|
+
- **lng**:设置地图的中心经度。
|
16
|
+
- 例如,首尔的经度为 126.9783882。
|
17
|
+
- **zoom**:设置地图的缩放程度。
|
18
|
+
- 值 10 可以作为初始值,然后调整大小。
|
19
|
+
- **showMarker**:设置是否显示标记。
|
20
|
+
- 可以在指定的纬度/经度上显示标记。
|
Binary file
|
Binary file
|
Binary file
|
@@ -6,9 +6,9 @@
|
|
6
6
|
"auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
|
7
7
|
"files": [
|
8
8
|
{
|
9
|
-
"date":
|
10
|
-
"name": "logs/application-2023-09-
|
11
|
-
"hash": "
|
9
|
+
"date": 1693913037819,
|
10
|
+
"name": "logs/application-2023-09-05-20.log",
|
11
|
+
"hash": "adaa8768d01f5284ecee6c26baa87c3930ab3646cec66432b512b12c519fe000"
|
12
12
|
}
|
13
13
|
],
|
14
14
|
"hashType": "sha256"
|
@@ -9,6 +9,21 @@
|
|
9
9
|
"date": 1693644479025,
|
10
10
|
"name": "logs/connections-2023-09-02-17.log",
|
11
11
|
"hash": "f4c542d3ea19229266eb51e27b792fff046b88ba32086d353d0f7cb32287f20f"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"date": 1693720236704,
|
15
|
+
"name": "logs/connections-2023-09-03-14.log",
|
16
|
+
"hash": "c3dcfdcede5ffed8fbb6c766aa5561a9180cb8640ffbd575fe2cdca81426c64b"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"date": 1693727736884,
|
20
|
+
"name": "logs/connections-2023-09-03-16.log",
|
21
|
+
"hash": "3cd7f8432eef55726446b1f607a26a9a2133baa6449a89b1e701dbd4335b52d5"
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"date": 1693913039130,
|
25
|
+
"name": "logs/connections-2023-09-05-20.log",
|
26
|
+
"hash": "3a1586eb1cce892c4a77abf15e3b3470b25c6c02b84b0a0c9a02d0d4e7a57c54"
|
12
27
|
}
|
13
28
|
],
|
14
29
|
"hashType": "sha256"
|
@@ -0,0 +1,10 @@
|
|
1
|
+
2023-09-05T20:23:58+09:00 info: File Storage is Ready.
|
2
|
+
2023-09-05T20:23:59+09:00 error: oracledb module loading failed
|
3
|
+
2023-09-05T20:23:59+09:00 error: oracledb module loading failed
|
4
|
+
2023-09-05T20:24:00+09:00 info: Default DataSource established
|
5
|
+
2023-09-05T20:24:14+09:00 info: File Storage is Ready.
|
6
|
+
2023-09-05T20:24:14+09:00 error: oracledb module loading failed
|
7
|
+
2023-09-05T20:24:14+09:00 error: oracledb module loading failed
|
8
|
+
2023-09-05T20:24:15+09:00 info: Default DataSource established
|
9
|
+
2023-09-05T20:24:15+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
10
|
+
2023-09-05T20:24:15+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
@@ -0,0 +1,38 @@
|
|
1
|
+
2023-09-03T14:50:52+09:00 info: Initializing ConnectionManager...
|
2
|
+
2023-09-03T14:50:52+09:00 info: Connector 'echo-back-server' started to ready
|
3
|
+
2023-09-03T14:50:52+09:00 info: Connector 'echo-back' started to ready
|
4
|
+
2023-09-03T14:50:52+09:00 info: Connector 'http-connector' started to ready
|
5
|
+
2023-09-03T14:50:52+09:00 info: Connector 'graphql-connector' started to ready
|
6
|
+
2023-09-03T14:50:52+09:00 info: Connector 'sqlite-connector' started to ready
|
7
|
+
2023-09-03T14:50:52+09:00 info: Connector 'postgresql-connector' started to ready
|
8
|
+
2023-09-03T14:50:52+09:00 info: Connector 'mqtt-connector' started to ready
|
9
|
+
2023-09-03T14:50:52+09:00 info: Connector 'mssql-connector' started to ready
|
10
|
+
2023-09-03T14:50:52+09:00 info: Connector 'oracle-connector' started to ready
|
11
|
+
2023-09-03T14:50:52+09:00 info: Connector 'mysql-connector' started to ready
|
12
|
+
2023-09-03T14:50:52+09:00 info: Connector 'socket-server' started to ready
|
13
|
+
2023-09-03T14:50:52+09:00 info: Connector 'msgraph-connector' started to ready
|
14
|
+
2023-09-03T14:50:52+09:00 info: echo-back-servers are ready
|
15
|
+
2023-09-03T14:50:52+09:00 info: echo-back connections are ready
|
16
|
+
2023-09-03T14:50:52+09:00 info: http-connector connections are ready
|
17
|
+
2023-09-03T14:50:52+09:00 info: graphql-connector connections are ready
|
18
|
+
2023-09-03T14:50:52+09:00 info: sqlite-connector connections are ready
|
19
|
+
2023-09-03T14:50:52+09:00 info: postgresql-connector connections are ready
|
20
|
+
2023-09-03T14:50:52+09:00 info: mqtt-connector connections are ready
|
21
|
+
2023-09-03T14:50:52+09:00 info: mssql-connector connections are ready
|
22
|
+
2023-09-03T14:50:52+09:00 info: oracle-connector connections are ready
|
23
|
+
2023-09-03T14:50:52+09:00 info: mysql-connector connections are ready
|
24
|
+
2023-09-03T14:50:52+09:00 info: socket servers are ready
|
25
|
+
2023-09-03T14:50:52+09:00 info: msgraph-connector connections are ready
|
26
|
+
2023-09-03T14:50:52+09:00 info: All connector for 'echo-back-server' ready
|
27
|
+
2023-09-03T14:50:52+09:00 info: All connector for 'echo-back' ready
|
28
|
+
2023-09-03T14:50:52+09:00 info: All connector for 'http-connector' ready
|
29
|
+
2023-09-03T14:50:52+09:00 info: All connector for 'graphql-connector' ready
|
30
|
+
2023-09-03T14:50:52+09:00 info: All connector for 'sqlite-connector' ready
|
31
|
+
2023-09-03T14:50:52+09:00 info: All connector for 'postgresql-connector' ready
|
32
|
+
2023-09-03T14:50:52+09:00 info: All connector for 'mqtt-connector' ready
|
33
|
+
2023-09-03T14:50:52+09:00 info: All connector for 'mssql-connector' ready
|
34
|
+
2023-09-03T14:50:52+09:00 info: All connector for 'oracle-connector' ready
|
35
|
+
2023-09-03T14:50:52+09:00 info: All connector for 'mysql-connector' ready
|
36
|
+
2023-09-03T14:50:52+09:00 info: All connector for 'socket-server' ready
|
37
|
+
2023-09-03T14:50:52+09:00 info: All connector for 'msgraph-connector' ready
|
38
|
+
2023-09-03T14:50:52+09:00 info: ConnectionManager initialization done:
|
@@ -0,0 +1,38 @@
|
|
1
|
+
2023-09-03T16:55:39+09:00 info: Initializing ConnectionManager...
|
2
|
+
2023-09-03T16:55:39+09:00 info: Connector 'echo-back-server' started to ready
|
3
|
+
2023-09-03T16:55:39+09:00 info: Connector 'echo-back' started to ready
|
4
|
+
2023-09-03T16:55:39+09:00 info: Connector 'http-connector' started to ready
|
5
|
+
2023-09-03T16:55:39+09:00 info: Connector 'graphql-connector' started to ready
|
6
|
+
2023-09-03T16:55:39+09:00 info: Connector 'sqlite-connector' started to ready
|
7
|
+
2023-09-03T16:55:39+09:00 info: Connector 'postgresql-connector' started to ready
|
8
|
+
2023-09-03T16:55:39+09:00 info: Connector 'mqtt-connector' started to ready
|
9
|
+
2023-09-03T16:55:39+09:00 info: Connector 'mssql-connector' started to ready
|
10
|
+
2023-09-03T16:55:39+09:00 info: Connector 'oracle-connector' started to ready
|
11
|
+
2023-09-03T16:55:39+09:00 info: Connector 'mysql-connector' started to ready
|
12
|
+
2023-09-03T16:55:39+09:00 info: Connector 'socket-server' started to ready
|
13
|
+
2023-09-03T16:55:39+09:00 info: Connector 'msgraph-connector' started to ready
|
14
|
+
2023-09-03T16:55:39+09:00 info: echo-back-servers are ready
|
15
|
+
2023-09-03T16:55:39+09:00 info: echo-back connections are ready
|
16
|
+
2023-09-03T16:55:39+09:00 info: http-connector connections are ready
|
17
|
+
2023-09-03T16:55:39+09:00 info: graphql-connector connections are ready
|
18
|
+
2023-09-03T16:55:39+09:00 info: sqlite-connector connections are ready
|
19
|
+
2023-09-03T16:55:39+09:00 info: postgresql-connector connections are ready
|
20
|
+
2023-09-03T16:55:39+09:00 info: mqtt-connector connections are ready
|
21
|
+
2023-09-03T16:55:39+09:00 info: mssql-connector connections are ready
|
22
|
+
2023-09-03T16:55:39+09:00 info: oracle-connector connections are ready
|
23
|
+
2023-09-03T16:55:39+09:00 info: mysql-connector connections are ready
|
24
|
+
2023-09-03T16:55:39+09:00 info: socket servers are ready
|
25
|
+
2023-09-03T16:55:39+09:00 info: msgraph-connector connections are ready
|
26
|
+
2023-09-03T16:55:39+09:00 info: All connector for 'echo-back-server' ready
|
27
|
+
2023-09-03T16:55:39+09:00 info: All connector for 'echo-back' ready
|
28
|
+
2023-09-03T16:55:39+09:00 info: All connector for 'http-connector' ready
|
29
|
+
2023-09-03T16:55:39+09:00 info: All connector for 'graphql-connector' ready
|
30
|
+
2023-09-03T16:55:39+09:00 info: All connector for 'sqlite-connector' ready
|
31
|
+
2023-09-03T16:55:39+09:00 info: All connector for 'postgresql-connector' ready
|
32
|
+
2023-09-03T16:55:39+09:00 info: All connector for 'mqtt-connector' ready
|
33
|
+
2023-09-03T16:55:39+09:00 info: All connector for 'mssql-connector' ready
|
34
|
+
2023-09-03T16:55:39+09:00 info: All connector for 'oracle-connector' ready
|
35
|
+
2023-09-03T16:55:39+09:00 info: All connector for 'mysql-connector' ready
|
36
|
+
2023-09-03T16:55:39+09:00 info: All connector for 'socket-server' ready
|
37
|
+
2023-09-03T16:55:39+09:00 info: All connector for 'msgraph-connector' ready
|
38
|
+
2023-09-03T16:55:39+09:00 info: ConnectionManager initialization done:
|
@@ -0,0 +1,38 @@
|
|
1
|
+
2023-09-05T20:24:15+09:00 info: Initializing ConnectionManager...
|
2
|
+
2023-09-05T20:24:15+09:00 info: Connector 'echo-back-server' started to ready
|
3
|
+
2023-09-05T20:24:15+09:00 info: Connector 'echo-back' started to ready
|
4
|
+
2023-09-05T20:24:15+09:00 info: Connector 'http-connector' started to ready
|
5
|
+
2023-09-05T20:24:15+09:00 info: Connector 'graphql-connector' started to ready
|
6
|
+
2023-09-05T20:24:15+09:00 info: Connector 'sqlite-connector' started to ready
|
7
|
+
2023-09-05T20:24:15+09:00 info: Connector 'postgresql-connector' started to ready
|
8
|
+
2023-09-05T20:24:15+09:00 info: Connector 'mqtt-connector' started to ready
|
9
|
+
2023-09-05T20:24:15+09:00 info: Connector 'mssql-connector' started to ready
|
10
|
+
2023-09-05T20:24:15+09:00 info: Connector 'oracle-connector' started to ready
|
11
|
+
2023-09-05T20:24:15+09:00 info: Connector 'mysql-connector' started to ready
|
12
|
+
2023-09-05T20:24:15+09:00 info: Connector 'socket-server' started to ready
|
13
|
+
2023-09-05T20:24:15+09:00 info: Connector 'msgraph-connector' started to ready
|
14
|
+
2023-09-05T20:24:15+09:00 info: echo-back-servers are ready
|
15
|
+
2023-09-05T20:24:15+09:00 info: echo-back connections are ready
|
16
|
+
2023-09-05T20:24:15+09:00 info: http-connector connections are ready
|
17
|
+
2023-09-05T20:24:15+09:00 info: graphql-connector connections are ready
|
18
|
+
2023-09-05T20:24:15+09:00 info: sqlite-connector connections are ready
|
19
|
+
2023-09-05T20:24:15+09:00 info: postgresql-connector connections are ready
|
20
|
+
2023-09-05T20:24:15+09:00 info: mqtt-connector connections are ready
|
21
|
+
2023-09-05T20:24:15+09:00 info: mssql-connector connections are ready
|
22
|
+
2023-09-05T20:24:15+09:00 info: oracle-connector connections are ready
|
23
|
+
2023-09-05T20:24:15+09:00 info: mysql-connector connections are ready
|
24
|
+
2023-09-05T20:24:15+09:00 info: socket servers are ready
|
25
|
+
2023-09-05T20:24:15+09:00 info: msgraph-connector connections are ready
|
26
|
+
2023-09-05T20:24:15+09:00 info: All connector for 'echo-back-server' ready
|
27
|
+
2023-09-05T20:24:15+09:00 info: All connector for 'echo-back' ready
|
28
|
+
2023-09-05T20:24:15+09:00 info: All connector for 'http-connector' ready
|
29
|
+
2023-09-05T20:24:15+09:00 info: All connector for 'graphql-connector' ready
|
30
|
+
2023-09-05T20:24:15+09:00 info: All connector for 'sqlite-connector' ready
|
31
|
+
2023-09-05T20:24:15+09:00 info: All connector for 'postgresql-connector' ready
|
32
|
+
2023-09-05T20:24:15+09:00 info: All connector for 'mqtt-connector' ready
|
33
|
+
2023-09-05T20:24:15+09:00 info: All connector for 'mssql-connector' ready
|
34
|
+
2023-09-05T20:24:15+09:00 info: All connector for 'oracle-connector' ready
|
35
|
+
2023-09-05T20:24:15+09:00 info: All connector for 'mysql-connector' ready
|
36
|
+
2023-09-05T20:24:15+09:00 info: All connector for 'socket-server' ready
|
37
|
+
2023-09-05T20:24:15+09:00 info: All connector for 'msgraph-connector' ready
|
38
|
+
2023-09-05T20:24:15+09:00 info: ConnectionManager initialization done:
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@operato/scene-openlayers",
|
3
3
|
"description": "OpenLayers component for things-scene",
|
4
|
-
"version": "1.2.
|
4
|
+
"version": "1.2.56",
|
5
5
|
"license": "MIT",
|
6
6
|
"things-scene": true,
|
7
7
|
"browser": "src/index.js",
|
@@ -59,5 +59,5 @@
|
|
59
59
|
"prettier --write"
|
60
60
|
]
|
61
61
|
},
|
62
|
-
"gitHead": "
|
62
|
+
"gitHead": "6e7f0a68d1b0bf7db8d057e0e21e004b688a7216"
|
63
63
|
}
|
package/src/ol-marker.ts
CHANGED
@@ -56,8 +56,8 @@ const NATURE = {
|
|
56
56
|
}
|
57
57
|
}
|
58
58
|
],
|
59
|
-
'value-property': 'latlng'
|
60
|
-
|
59
|
+
'value-property': 'latlng',
|
60
|
+
help: 'scene/component/ol-marker'
|
61
61
|
}
|
62
62
|
|
63
63
|
const MARKER_PATH = 'M10 0 C14.42 0 18 3.58 18 8 C18 12.42 14.42 16 10 16 C5.58 16 2 12.42 2 8 C2 3.58 5.58 0 10 0 Z'
|
@@ -101,32 +101,11 @@ export default class OpenLayersMarker extends RectPath(Shape) {
|
|
101
101
|
|
102
102
|
get infoWindow() {
|
103
103
|
if (!this._infoWindow) {
|
104
|
-
// this._infoWindow = new google.maps.InfoWindow()
|
105
|
-
|
106
|
-
// 인포윈도우 생성
|
107
104
|
this._infoWindow = new Overlay({
|
108
105
|
element: document.getElementById('info')!,
|
109
106
|
positioning: 'bottom-center',
|
110
107
|
stopEvent: false
|
111
108
|
})
|
112
|
-
|
113
|
-
// // 마커 클릭 이벤트 리스너 추가
|
114
|
-
// marker.on('click', event => {
|
115
|
-
// const coordinate = event.coordinate
|
116
|
-
// const content = '<div>Hello, This is InfoWindow!</div>'
|
117
|
-
// infoWindow.setPosition(coordinate)
|
118
|
-
// infoWindow.getElement().innerHTML = content
|
119
|
-
// map.addOverlay(infoWindow)
|
120
|
-
// })
|
121
|
-
|
122
|
-
// // 지도에 레이어 추가
|
123
|
-
// map.addLayer(markerLayer)
|
124
|
-
|
125
|
-
// // 인포윈도우를 닫는 함수
|
126
|
-
// const closeInfoWindow = () => {
|
127
|
-
// infoWindow.setPosition(undefined)
|
128
|
-
// infoWindow.getElement().innerHTML = ''
|
129
|
-
// }
|
130
109
|
}
|
131
110
|
|
132
111
|
return this._infoWindow
|
@@ -302,7 +281,13 @@ export default class OpenLayersMarker extends RectPath(Shape) {
|
|
302
281
|
|
303
282
|
set latlng(latlng) {
|
304
283
|
var { lat, lng } = latlng
|
305
|
-
|
284
|
+
|
285
|
+
if (this.marker) {
|
286
|
+
const geometry = this.marker.getGeometry()
|
287
|
+
if (geometry instanceof Point) {
|
288
|
+
geometry.setCoordinates(fromLonLat([lng, lat]))
|
289
|
+
}
|
290
|
+
}
|
306
291
|
|
307
292
|
this.setState({
|
308
293
|
lat,
|
package/src/openlayers.ts
CHANGED
@@ -86,6 +86,7 @@ export default class Openlayers extends HTMLOverlayContainer {
|
|
86
86
|
_listenTo?: Component
|
87
87
|
_listener?: Function
|
88
88
|
_vectorSource?: VectorSource<Geometry>
|
89
|
+
_marker: Feature | null = null
|
89
90
|
|
90
91
|
get eventMap() {
|
91
92
|
return {
|
@@ -188,14 +189,7 @@ export default class Openlayers extends HTMLOverlayContainer {
|
|
188
189
|
this._map = map
|
189
190
|
this._vectorSource = vectorSource
|
190
191
|
|
191
|
-
|
192
|
-
const marker = new Feature({
|
193
|
-
type: 'circle',
|
194
|
-
geometry: new Point(center)
|
195
|
-
})
|
196
|
-
|
197
|
-
this._vectorSource.addFeatures([marker])
|
198
|
-
}
|
192
|
+
showMarker && this.refreshMarker()
|
199
193
|
|
200
194
|
this.rescale()
|
201
195
|
}
|
@@ -218,16 +212,48 @@ export default class Openlayers extends HTMLOverlayContainer {
|
|
218
212
|
this.rescale()
|
219
213
|
}
|
220
214
|
|
215
|
+
refreshMarker() {
|
216
|
+
const { showMarker, lat, lng } = this.state
|
217
|
+
|
218
|
+
if (this._marker) {
|
219
|
+
this.vectorSource?.removeFeature(this._marker)
|
220
|
+
this._marker = null
|
221
|
+
}
|
222
|
+
|
223
|
+
if (showMarker) {
|
224
|
+
// 지도의 중심 좌표
|
225
|
+
const center = fromLonLat([lng || 126.9783882, lat || 37.5666103])
|
226
|
+
|
227
|
+
this._marker = new Feature({
|
228
|
+
type: 'circle',
|
229
|
+
geometry: new Point(center)
|
230
|
+
})
|
231
|
+
|
232
|
+
this.vectorSource?.addFeatures([this._marker])
|
233
|
+
}
|
234
|
+
}
|
235
|
+
|
221
236
|
onchange(after: Properties, before: Properties) {
|
222
|
-
if (after
|
237
|
+
if ('zoom' in after) {
|
223
238
|
const view = this.map?.getView()
|
224
|
-
view?.
|
239
|
+
view?.setZoom(after.zoom)
|
225
240
|
}
|
226
241
|
|
227
242
|
if ('lat' in after || 'lng' in after) {
|
228
243
|
let { lat, lng } = this.state
|
229
244
|
const view = this.map?.getView()
|
230
245
|
view?.setCenter(fromLonLat([lng, lat]))
|
246
|
+
|
247
|
+
if (this._marker) {
|
248
|
+
const geometry = this._marker.getGeometry()
|
249
|
+
if (geometry instanceof Point) {
|
250
|
+
geometry.setCoordinates(fromLonLat([lng, lat]))
|
251
|
+
}
|
252
|
+
}
|
253
|
+
}
|
254
|
+
|
255
|
+
if ('showMarker' in after) {
|
256
|
+
this.refreshMarker()
|
231
257
|
}
|
232
258
|
|
233
259
|
super.onchange(after, before)
|
package/translations/en.json
CHANGED
package/translations/ko.json
CHANGED
package/translations/ms.json
CHANGED
package/translations/zh.json
CHANGED
package/tsconfig.tsbuildinfo
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/tslib/tslib.d.ts","../../node_modules/ol/events/event.d.ts","../../node_modules/ol/disposable.d.ts","../../node_modules/ol/events.d.ts","../../node_modules/ol/events/target.d.ts","../../node_modules/ol/observable.d.ts","../../node_modules/ol/objecteventtype.d.ts","../../node_modules/ol/object.d.ts","../../node_modules/ol/collection.d.ts","../../node_modules/ol/color.d.ts","../../node_modules/ol/colorlike.d.ts","../../node_modules/ol/style/fill.d.ts","../../node_modules/ol/style/stroke.d.ts","../../node_modules/ol/proj/units.d.ts","../../node_modules/ol/pixel.d.ts","../../node_modules/ol/transform.d.ts","../../node_modules/ol/geom/simplegeometry.d.ts","../../node_modules/ol/geom/circle.d.ts","../../node_modules/ol/coordinate.d.ts","../../node_modules/ol/size.d.ts","../../node_modules/ol/extent.d.ts","../../node_modules/ol/tilecoord.d.ts","../../node_modules/ol/tilerange.d.ts","../../node_modules/ol/array.d.ts","../../node_modules/ol/tilegrid/tilegrid.d.ts","../../node_modules/ol/proj/projection.d.ts","../../node_modules/ol/proj.d.ts","../../node_modules/ol/geom/geometry.d.ts","../../node_modules/ol/geom/geometrycollection.d.ts","../../node_modules/ol/geom/linearring.d.ts","../../node_modules/ol/geom/linestring.d.ts","../../node_modules/ol/geom/multilinestring.d.ts","../../node_modules/ol/geom/point.d.ts","../../node_modules/ol/geom/multipoint.d.ts","../../node_modules/ol/geom/polygon.d.ts","../../node_modules/ol/geom/multipolygon.d.ts","../../node_modules/ol/geom.d.ts","../../node_modules/ol/render/feature.d.ts","../../node_modules/ol/tile.d.ts","../../node_modules/ol/datatile.d.ts","../../node_modules/ol/style/image.d.ts","../../node_modules/ol/style/text.d.ts","../../node_modules/ol/render/canvas.d.ts","../../node_modules/ol/render/canvas/executor.d.ts","../../node_modules/ol/render/vectorcontext.d.ts","../../node_modules/ol/render/canvas/immediate.d.ts","../../node_modules/ol/structs/priorityqueue.d.ts","../../node_modules/ol/tilequeue.d.ts","../../node_modules/ol/mapevent.d.ts","../../node_modules/ol/mapbrowserevent.d.ts","../../node_modules/ol/centerconstraint.d.ts","../../node_modules/ol/resolutionconstraint.d.ts","../../node_modules/ol/rotationconstraint.d.ts","../../node_modules/ol/view.d.ts","../../node_modules/ol/render/eventtype.d.ts","../../node_modules/ol/source/source.d.ts","../../node_modules/ol/render/canvas/executorgroup.d.ts","../../node_modules/ol/source/tileeventtype.d.ts","../../node_modules/ol/structs/lrucache.d.ts","../../node_modules/ol/tilecache.d.ts","../../node_modules/ol/source/tile.d.ts","../../node_modules/ol/render/canvas/buildergroup.d.ts","../../node_modules/ol/renderer/vector.d.ts","../../node_modules/ol/renderer/map.d.ts","../../node_modules/ol/resolution.d.ts","../../node_modules/ol/image.d.ts","../../node_modules/ol/renderer/layer.d.ts","../../node_modules/ol/layer/layer.d.ts","../../node_modules/ol/layer/base.d.ts","../../node_modules/ol/events/eventtype.d.ts","../../node_modules/ol/layer/group.d.ts","../../node_modules/ol/control/control.d.ts","../../node_modules/ol/interaction/interaction.d.ts","../../node_modules/ol/overlay.d.ts","../../node_modules/ol/mapbrowsereventtype.d.ts","../../node_modules/ol/mapeventtype.d.ts","../../node_modules/ol/map.d.ts","../../node_modules/ol/render/event.d.ts","../../node_modules/ol/render.d.ts","../../node_modules/ol/style/style.d.ts","../../node_modules/ol/feature.d.ts","../../node_modules/ol/geolocation.d.ts","../../node_modules/ol/source/vectoreventtype.d.ts","../../node_modules/ol/format/feature.d.ts","../../node_modules/ol/vectortile.d.ts","../../node_modules/ol/featureloader.d.ts","../../node_modules/ol/source/vector.d.ts","../../node_modules/ol/renderer/canvas/layer.d.ts","../../node_modules/ol/source/urltile.d.ts","../../node_modules/ol/vectorrendertile.d.ts","../../node_modules/ol/source/vectortile.d.ts","../../node_modules/ol/style/icon.d.ts","../../node_modules/ol/expr/expression.d.ts","../../node_modules/ol/style/flat.d.ts","../../node_modules/ol/layer/basetile.d.ts","../../node_modules/ol/layer/vectortile.d.ts","../../node_modules/ol/layer/tile.d.ts","../../node_modules/ol/imagetile.d.ts","../../node_modules/ol/renderer/canvas/tilelayer.d.ts","../../node_modules/ol/renderer/canvas/vectortilelayer.d.ts","../../node_modules/ol/source/image.d.ts","../../node_modules/ol/layer/baseimage.d.ts","../../node_modules/ol/layer/image.d.ts","../../node_modules/ol/renderer/canvas/imagelayer.d.ts","../../node_modules/ol/layer/vectorimage.d.ts","../../node_modules/ol/renderer/canvas/vectorimagelayer.d.ts","../../node_modules/ol/webgl.d.ts","../../node_modules/ol/webgl/buffer.d.ts","../../node_modules/ol/webgl/rendertarget.d.ts","../../node_modules/ol/webgl/helper.d.ts","../../node_modules/ol/renderer/webgl/layer.d.ts","../../node_modules/ol/renderer/webgl/pointslayer.d.ts","../../node_modules/ol/layer/basevector.d.ts","../../node_modules/ol/renderer/canvas/vectorlayer.d.ts","../../node_modules/ol/layer/vector.d.ts","../../node_modules/ol/layer/graticule.d.ts","../../node_modules/ol/imagecanvas.d.ts","../../node_modules/ol/kinetic.d.ts","../../node_modules/ol/mapbrowsereventhandler.d.ts","../../node_modules/ol/util.d.ts","../../node_modules/ol/index.d.ts","../../node_modules/ol/style/regularshape.d.ts","../../node_modules/ol/style/circle.d.ts","../../node_modules/ol/style/iconimage.d.ts","../../node_modules/ol/style.d.ts","../../node_modules/ol/layer/heatmap.d.ts","../../node_modules/ol/webgl/palettetexture.d.ts","../../node_modules/ol/style/expressions.d.ts","../../node_modules/ol/style/literal.d.ts","../../node_modules/ol/layer/webglpoints.d.ts","../../node_modules/ol/reproj/tile.d.ts","../../node_modules/ol/webgl/basetilerepresentation.d.ts","../../node_modules/ol/webgl/tiletexture.d.ts","../../node_modules/ol/renderer/webgl/tilelayerbase.d.ts","../../node_modules/ol/renderer/webgl/tilelayer.d.ts","../../node_modules/ol/source/datatile.d.ts","../../node_modules/ol/source/tileimage.d.ts","../../node_modules/ol/layer/webgltile.d.ts","../../node_modules/ol/layer.d.ts","../../node_modules/ol/source/bingmaps.d.ts","../../node_modules/ol/source/xyz.d.ts","../../node_modules/ol/source/cartodb.d.ts","../../node_modules/ol/source/cluster.d.ts","../../node_modules/geotiff/dist-node/compression/basedecoder.d.ts","../../node_modules/geotiff/dist-node/globals.d.ts","../../node_modules/geotiff/dist-node/rgb.d.ts","../../node_modules/geotiff/dist-node/compression/index.d.ts","../../node_modules/geotiff/dist-node/logging.d.ts","../../node_modules/geotiff/dist-node/pool.d.ts","../../node_modules/geotiff/dist-node/source/basesource.d.ts","../../node_modules/geotiff/dist-node/geotiffimage.d.ts","../../node_modules/geotiff/dist-node/dataslice.d.ts","../../node_modules/geotiff/dist-node/geotiff.d.ts","../../node_modules/ol/source/geotiff.d.ts","../../node_modules/ol/source/iiif.d.ts","../../node_modules/ol/source/imagearcgisrest.d.ts","../../node_modules/ol/source/imagecanvas.d.ts","../../node_modules/ol/source/imagemapguide.d.ts","../../node_modules/ol/source/imagestatic.d.ts","../../node_modules/ol/source/wms.d.ts","../../node_modules/ol/source/imagewms.d.ts","../../node_modules/ol/source/ogcmaptile.d.ts","../../node_modules/ol/source/ogcvectortile.d.ts","../../node_modules/ol/source/osm.d.ts","../../node_modules/ol/source/raster.d.ts","../../node_modules/ol/source/stadiamaps.d.ts","../../node_modules/ol/source/tilearcgisrest.d.ts","../../node_modules/ol/source/tiledebug.d.ts","../../node_modules/ol/source/tilejson.d.ts","../../node_modules/ol/source/tilewms.d.ts","../../node_modules/ol/source/utfgrid.d.ts","../../node_modules/ol/tilegrid/wmts.d.ts","../../node_modules/ol/source/wmts.d.ts","../../node_modules/ol/source/zoomify.d.ts","../../node_modules/ol/source/arcgisrest.d.ts","../../node_modules/ol/source/static.d.ts","../../node_modules/ol/source/mapguide.d.ts","../../node_modules/ol/source.d.ts","../../node_modules/@hatiolab/things-scene/things-scene.d.ts","./src/openlayers.ts","./src/ol-marker.ts","./src/index.ts","./src/editors/index.ts","./src/groups/geography.ts","./src/groups/index.ts","./src/templates/openlayers.ts","./src/templates/ol-marker.ts","./src/templates/index.ts","./src/templates/ol-path.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","37df1bef1c2e596406a45144279f572748a69a29424fc80e908c12be0b8a74f1","a01ea57d11d535163e9a2566af56d23ee7c03d3a23c0f8331fb0c9bdbfe1e724","b01b7753d9dbcf3c03f9cd23d1ed845219943147f1870ffef7126057335358a8","1b5ffa7de8f5a3de507680cc41d9d9aced8c6b8fee4b8fa7a751c4ba6b90d42c","6d14b4b339740a95581ffb0af973d189faa59b7ffc958892c47f3067019a1b56","89f8942bc3baf8207538fb08f7321c59f982156417d814939d7ec8474a47f8ec","0d0e120c7338db86fa7a072ddec40c61a10bcfe4f979345548f697663bfc047d","88d60d4ad08076127e1cb7471a8aecf0c90a259a9e23048b41368424458c73a2","3af757e431fa3049f7d6894965c9715c7af191a3f14c200f840ff12530c27af6","1a43e41218b653799c374427fb5eb18f33f0a1474daffa69d72cc6960a9d04a3","46ac4d9fd0b5477cd993fa05b6ee50297a79dfc3a2285cdaa183bd8a3e894667","d9c3bf0e2d495e69d721c97bf17223b85d0a48011792acc5b52a1add787c409c","cc68053b061296e55aea067f00fcf3e1803d8b94e52fafadf3e586e44fd991cf","4db0245c57b77973c86e295175f44bf307df06ed93bf21803043b1a7c66ac1a3","05cb4ed7c010b962acc5d5ad68763945a2211732bba3de3adfcdaeb8cc0bdc3b","d398bbb9f2b2e496fbb15e3701286a799d7b110c26d5b95cc79813c5ebbf76fc","138beb5176e7b66bd1bedc34ebe4b81e1d4e7408dda2a366a43456a3716b158b","4c400ef70fffd5942c4869a72ab8f670bf293a3df53d2d9bba7edbc1893391d9","db0642878704403e79ad24fffa3612b9c369e7b42ebbb6b7906effff17647e77","3c5daba81c256bf19b424fc424c0af84eb96aa0e191d532125783f6315549469","b8c696c0592e7c9020aa5656bf8a51f686d6e05196fb91f7ae4cecd4a343d222","f6db2ec65508f872399fbb42ca5c644684f080522e187307a01dbd68e918b11c","a118e1e31be16f0f7fca03cbc529f1f0f7f13a842061ba07f7dd6cdbb11e22a6","ea0c069dbec39c1b5cb1a90f2c34dfa21ad822f41743cee766c71d4568315309","f743a1b48c7555e9adb36156d05611169973d99e07e21833717875954f83eec9","9b65177fc826dec84b74033911be24896ee2f3cdd9c00851648c1ee4ef59c053","99de8757cb9bfc9869c3425442f06747d91fff9ff6c6b789e2718409daa24a00","ae8f59dbd8a54876dafefd823a47e8994956b172667564479bd5978b778944e6","6bf2eccce66f95ef7510a695243057faeb5ec27eb4f10fe2c52d1b19f0cca6e4","8d28e9c1c661a9d78a9ca8af6f007e7bee119c928eb5b48579d72b676a16ae88","948d5bd3ec4a91dec9b2c0ee10e6656144bfb1dd38e410e526ff48c2e0c07995","4ef8fb1ec8703f6b170042a1d770228585a4ba0ba32e8faa4c4e4e54f93207e3","50e4fb6c08a89af27d36354716cff10b41c874c203f9b718d2070813694c5929","81dd2f7b5f056dd1df741ab85d3b95acf877dd6b5b1e7a63b6552d4f8441e94c","10d5aad5fd86550f4513f3a403a650c186315f8056756902fe97f618da65d44b","91696aca30467c20342ae0cd90dd6b4068255433174e0ee9dfef8bd519c800b1","27f1fee3da43b03de3e7563641987f0323efb555b326c423fafd950fa9469819","5d82277493d0ef266939c0176622cc42f47ee473ce4d39a8cb3824237022baca","a01498a8dde3f1c1b493b50292082a46ffe8914c538c8f3ce93becc213955800","dcd3d2eea82264fda4a55d6fd0553b122958a56fef900ad329b44822b23330fe","fbbb4c2957c9e3bed8b155117a4a534b692504bfdbeed6977a04c9049c32e1bb","5311ad8dd41c4d9ce74b1b284abcf7952ced9958306be8e5f7e7e3b965fa29d6","7eecc5afa366a435ffe49a245923b24d501a5ade2adbf06ed922683ac67d391c","6849254fc851c91087fa9688b617acd59fe48fcbd7bc2314ea6a35efa2585126","cde92fa03022c7ac3d7d485f5ceb1cc1264ee22654a686959749de986be71109","b5e3e7307de8b755fe3fab27a234721572743f8c52b4fdc51b9aeaa047cc2d73","288d54de8442fd8c652a2c6fc9c0015e6d5bc27afecd5f413b8d38fd4c3cd6a5","26bd3fd4311d248e5d5a610354fef2c5f9de05554cb97bb786bdb8dbcecd5161","6c7e5301ce1bdbb0261ca994db982cdffefbbd7382de91b61fb9bea6dfe10cf2","a2e5839309d27056cc2b8f2a18d62a4ff32df184a904cf21f47cd341e369018d","a561e0c810366fd6146cb99fe54e23450b100766ce3184b44b57e1a9981c0082","8c61c6ab9cdef76768700e83cf94124c750bccaaa1cc9aa52c161160bf5e7a6e","5d80716e2b7c5fe584a75de98934e9a36f7b3f680446d9cffac8562b0fe39107","e7500c857e7eab70a618a07cd3c9d53cec8a375c1a7f3bce171aa818d7939f41","e4f8cac6b42c4a77d82bd03834484a727965b61296600d2040504e6ddc2ec530","fad1a6e78141f81260b644f82594b474fabcf5bba1b179e8defe695c9026be31","669437bba68c48efc51d96d35e85e20738b276e3551a4548889c7b71f37850a1","b4e820c00f00374d37da986d29842aebab80a7ab7e9affecffb816ea811a35fa","b39fa4482ca51ce365973794f94e2306569ba897403f4bcb246e0eef0d0d2e29","dba567c6afca08bbd4616bf0ea3a128aeba083f932e1ec7753d194d057e35b58","f59ea33bd574d11cdf5227130090b63664bc0cd6015af9ca4a99d3b783f10c5e","00064851af96110dc8cea7c84fcee9fe209e0a5e98968f2d60f585b0e0dcf078","159af4701f917a10a89cccf1f644f6f40f220d4ba8610227fea68f0eb9c3205f","cf6cf7979e945e58880f260079f89a69a32bef09ee03d3ec64a984f36c86adce","80aff7afd99f57cec1a70876a7f34aa0ee82d354f7258d3f3829f4b8ff5829f5","1f6d5c7a3ee16920d19aed8777281cb065bcfabeb3e51bcac0386c372e5e0677","79ea7a193440268f82e4d7c6a0d395a9d3d55f1de797d29f7f88bd6d587fa488","9c324ecb46587fa931c400dca194d55b9dbe07c15e8a4e9ae86f06b56a5953c0","7b10d36e808c643668c5ed3c12b73a97495ec0ec68f7b8cc31db9139e6740105","ff5304ef796250a681bfe1d6422a7b5decb8204b37755015358cc7241ca134d6","4801186a50f323065b9f5737b6234abed8577fc1e5ebb5e749ba1e35ebf77f9d","138cda5d763fac6e1a6f31d28a3c7f3dce0bd7f14eae7ce10f19c03a97baff1b","a4e4b9c051d0f71403a20ec58bf68f29e7c35d708c495b6a21776ca0469ce456","cf69621bf0ecc07b6aa01eea23be4f8e75c10330096dbb5dfa53f61af730f821","58404c09a7a50fd9906ac2ecc2f70aec65848a5fdba3497ce2454440976636e2","238adc7f460b4703c35d82981dbe2912c01d332309203dda953732ed4c0c3546","840f99e579b8fffb2a8f57e0e97f68ccfd76ea1d43e9164188662449b4981ea6","de951da1e450e0f7713f95a550508eb7b7f7cba10640ed7cf3a5fba7ca189aa0","12977e1335830ea72e484ee1f0823d672a016e6d0df7e1369810d654d9935308","5017436c94942ea52df0e70f00907d772fe2bd27194274f882003d3d7ee7829a","8d91a185898da172a81042720823215304fc8d6258da9c720476012e997d2bb5","0d14977b110e40c89ec3a6cd50eadaf257400c08f6fb545b3002adb8f5adda35","4659d957ba537bbcee4ee7c34b23fe4c9b305f65701802621fc57a6e38967292","51cf79ac7b47e3eea4627869c044f0d563d3bdb113889f1901b6d33783b1781f","b7b5d5ffb7d958e00a4dc16106202f9c71aa57c1c53e4f251d13170f36b7cae9","8a42736cd1b0d1680a05f63fe7b6e378ba68a3c5e74edfbcea9b48d8ab885825","7b6450a2363a741a4fec239afd93b55b6679197b35b28c108a49e7daa3123bc7","c7745f8f4139806378b38db9fb2e44aaaa329ce822fda2739a90126a84d3d0ad","6f9ae463a84ace3771ca556baa7bf6fe2e5e58e4520ace6c9c9d5a3156f13004","7e1cfdde676a9042e3feef5b3bd8fa8198e48e003c0db57aab225247757c3f61","daf8ef8f3714b38e9f3fbffd50704340987966de7f8cacd17b06c6d53b673246","d2e829175e3689ab0a9eddfa594b9e9411c4f285d1d0a1f3d779ef0d5c730f2a","07e2f56b9c07bde30662588166e2413e229e9f42e58e27afe36d6684a55f2bf5","cf46eed8b500044434833782f76c9f3134cd47b20e27ca4a70179779dc7e6875","cc108dcf9b287bffdccadc4f3e26e683bc7a06b94143b15b28da8d4894d5f46b","35fc9dd7a1ea9ac144f26095ae7290eb7493d71e06a3e61d2da2ab60a0c33dd6","568426d28353f8bc686d3fb96cfbaecebd6e8ff50cdebfed2010a1c19b78cfa2","f54057b5c747c33f5cd4f972faa04598e534fdd2437a01ee7aa484967b4bd323","79d562813d05e1e60bff8e7da5415ef8d8fb392e45ac44fcd2ad19cd5e5823df","af5086e2881b82d7605ab9ad26966676314d9f71bb7737042321c59d26743787","3d82826182b2ac9e894a292a11ce7b4d8a9c1be9bfa213f35e1601cfb2a0e25c","f0f226728ca9a191a464817c5df2fc9d7e1b0424b2a2345eb279725660ad7688","df35a4570d3a5b9b302e36af1a765a7219d7d92ddc658e76316f68de0e1cdb92","0e2bbcac4aa37f2fd5103820d5bb7bf83ff7bd0f9edce8217857b1803367ecab","c8a8977122db663648c6d91f5f214505477a93e9238b3d486823a40a734521f4","6f7cc8f6aaa5061b348f468a028c3163dfdddc1b704d183a794388cadb41932f","fba62647de7927d3558ae41406e3dca5a34010702ed6428d071b6acf64d9b99a","374acfaae252703d35a7cf518c6a48205fd4bbc8fd51e42b4740c48bf2c15159","7b95cbc73d21bae8f82459a3a7546628a9d7d9184dd3e5f657f4332e336c5e30","9c7dd4f4b897099e8dc51e995751827507cf869a954d117a7bbd31add0ea3c5c","9ea6d6258cf3e3cda154388b012e0982262df87cd9f2f3e032a47410913aa10f","7176c2b507c632d101701bafcc0a6a452d02a6a09616ae53ef5e196465168953","9e06ccbfd42cf165db6dbbdbfe43339bea942af997668d9358622f7551cd762b","1fcebc10892731b4b4fc8f12aadd8ce1df2672a0c1b7695b76c0916061e769da","5c835bb073b3e71d3340a8d0005003cbc61d324223c8816619d8f6d17bad90cc","39c3228bec27a17768cf66f3ec723394aef035cb5694a85276238d92e897f257","3785578856de4b020c410ea0690e14132e175298425a7f29f344012aac4ab795","67e135c1eff1ceb76432ca402f9c300fb8f00e1da9af6fa04dc98160efa67ded","9677f7d3f19218dd6fc02151f43c7ef9870a99040c60e26efa1de35351f005c5","15f5bf20d5a46817c689227b6b5a519a37a5dedeed35a4f28fdf905d8b113b98","78abc00dc67dca85b32b4b50b47aae3c864f2d178a6d4a5cb6f31a0dd630fd7c","c9ec670902faff631508df22f593a770d9f57f6ef7d0127424df031efbb945ba","eb365debf5b8a707a69d88b14c7c487f61fd60a2b8750c6d849c691cf0038381","a430884211109a78a9397db15faad69c96941c38e9da890ca5c398a508bc5170","038df71ede5869295b2f64f59e2d6ebaf9398f732376c5752ac6e97b8d209eed","b834ed8a53237d79982f3c65f82652f462e7abe49e6b16efbd9e4dd6bf4d4973","c91d8180295aeaf611929f72cc9c47fe1e85140cf0734505f45e56e4e996a1e3","d764842addb951561dee836d8940ad58a5419382ddb666444602e3bbaff81057","92b95dc0207b98c7764b52a6a30de9125d0a5b9e89442a66143b3e504ee215f9","b547b763c576afeac2bc97820ef4a385603aa2e306a17aa6019f037a3cfc02f3","791af775fbc64a8187503710ebe44b61f0a04affec19cdaa39285a2c333c376f","2f35ac4a94034a75a110f87156b1fa89f679ae00d01bd232c55a33624da178df","eb21612598db8ba85496f041e756d3f9bffa1882c1885b685c1137b06bc8802a","199650ed2704f9dfcc679c94cf066c3b46d907b70bd3c74de1093e45570aa503","ca141bfbf219b9f0c144bd278d5f1edc4412b7ca09a00121466c586d0995e264","99a0c762f3b042b7fe7c449c91e7aaee425e9a2b2ee8fa5c59be1e9b3bb55766","04f50e29badda93ca5d5b3f7745ffb9cf606e588af4c17b68ba6eed867fe047d","a0fd9aaca64673ee543be1c7083efe73a801bbfc2d86f4d74f1d610eb401e2eb","8d244c71792f50a54a86de454168f0d48d54e45539a9431865e649337fd8e7e7","c47b68d301d8dd045807548bf6e053889a909e3866231aab2586d01beb65b9ce","87da701a4488a17c765fd0fd0a25504b21fa108b2b9bbcc28fa8058323938ee0","899caab3ba9a3dc13536401e7590bb22e2f0385f955658433ccde7f2fac1d040","18e496f03a0dac2230893cd955ec5895467a7cb9c399dd35eacbcb7a7dc4e164","121411fa6571f666c4b74b868f8799660f978a45c623e453a623009e08a0c656","57c6df1fb93aeb862ddd8cb8770f12b473b3d3cb4aa659d1015e4251424d5596","0f9530750161bf0b4cca0f8e9ebe2c61df5c894cda213427a3f0560defe5598d","2809aa91788e2e60d340edbded8c1dbd7d72771e3416b14b9985e3a444a420c5","00e67c1002bb58a27333688e4164814b75561e3df850d61cfd1cde8ad1c8a5ee","5c46d41a962b5002b029582acf4d3d3b6f151c5e6c506d90cc49669c5722cbfa","a48625313ec9d35e9858e3fb9eeb28e8fff697dfb1226c8404a346730486f174","92978696f61af1026516c78b37d3a9787f335e46028cddf6b1b23801839827b4","ebed0352846677c97884426726b8b6b5ed8ee6b7bdeadb36d2779ef5caa1dd61","4490073a656a939c432bfb3fa05e5afb3f50cd4274afb645d361c800ffd21b41","8764c6550730a1fd8aee6a23ece45dd5e48554fd1d3648f35bf44e067042b2d0","6cfd5368a3b9178083f314790fa752f4ffa2f23350fd7966b2abe7d019eabf88","f7a620ebf354c052a656c027c1b9cd6c45382c8b850b17356d380892483f87e9","f21c823d9fdbc21af67e422a87e390ae8bf0fb945a62f3d93390766f79b2f0fb","8c1671b1acdb4d960104cfe4384af6ac731ddf0d7be954dd105bb61d9a29280a","09fa121e2dbf5b725fe5c502602c1ae6b4b7a6d5fc3a6aef68bfbe818115dcce","1689ef8d6af4dfb417b4bf890da443b3377331522d96991fb4a67eee93ccf6b4","dc9374f06c66112d61c1b53db3f1dbcf02253750490a97bd737ac792948877ef","f7eefb8cc69f69836e36d8f2e4c47ff12823f05bb192902cf937db3ddecbd798","296f95dff6a68a78b17e1899556c379eb86c008b44845dc62f74ea5fb81bccc3","b22ae9acbf95b556a7adf915831c015edf504fce58b442cd47752ce128acc025","3078b87cee6fc33eaf042a35688ca5027ac12e5768e423624ab36ccf1993b1cf","af1b7571c9976ac2b81cfa82caf3ff75afa43ae20c3bc833e681c43e25bf46e0","16720d6851e11807440a6f83d588ca2b4e24a655143a0974971c97055d056ce7","7b3e11221b7bda7c4f0e4916fdd509e4e25512075e4b1e19c435f60a283005ea","15baae571ca91d88ba323ddd0cbe3f910603dcd9945e4c4f4daf49d371c216a7","b3f2713c7a0851f2a11a4ddfce3079bd51fe8183fb2f7ea32b8fc22843129746","402209d81dadfbc1559e2e7dc445f894da11ef2e9bb7ed54dec7652f24d28add","076be6b6d57171b4da5e3796465ff03462c89f975ce2ef8803555372fc650dc9","3cb8e1eba960a7db20a5ce2ba0b8b3faf4bb3f844e3fcc378747876f224bc3f6","d0458ea3bee892768bc555a9f2a9245334c1fc21bc45c8787da5f22e524f826b","9049e275aa6ab96a5672eb9ae5cc4e2929927e2ff963c1ebb9baf47397ce0ef6","1790a89f79b5e65e2b2a5b5f5de8c3fb6cfd9c13599a3291f49babe33c97006c","055ea1ef508723c51e9851460c2e5d9d476ec1c911bfa8c655ddaaf28d3882db","7116a83b274d2f842d0269c1d35a36158289a4ed4a9b11ddb6d52aff5d1ae8aa",{"version":"e48cb73c078c6585c5a4d4a08266af1d6e04f82b96553dde71b151d93e5ec0a4","signature":"66cc15b86474894ec3d5570e023d09a72fcf01d90a810af3d2d10cfc761af5a2"},{"version":"451068d1a582a6fe2a53756e30338ce99d72da47d522726def98ff66f345a626","signature":"ababa980fa03b83390f809e18dbf9f1b29c0470ae40685f9a21333c2956bbd38"},{"version":"2695ee80cf5f077e6d517e09d2d27caf639b7d4f234970a1acb7cd706c42377c","signature":"954a11d0b0b0e6b533c2ced7c0362bae6709d7b1caaca80b2e9835a4c007fc2b"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"db7b636ea0f25259a453456b509a9c62df8e3706abc1cda9d04766a125cf8330","signature":"57dad3c48bc2ec75c4ffdd67fc0e8004abc8d569662936b0a2344b8d51def36f"},{"version":"8b8762fe71bd917de9d0ff1b22685c5a19c6696e93aa65acefc33a0a0116d6d6","signature":"f1f4f25dcab6dfc37bfd690aab5680a01609b290502c8462ed4eaf79063dc131"},{"version":"38fe2524bc380f2b39083817f4243dad81d37686b5c96c745906671beb5ca219","signature":"8f017a2a1956f37846a0ad1a2fd4892474a057b3163cf9181478e03e2c646968"},{"version":"7befd486e1a9d2ae992c3d563ad7a4cf01b747f7158131c86fd3af118900cbc5","signature":"8f017a2a1956f37846a0ad1a2fd4892474a057b3163cf9181478e03e2c646968"},{"version":"aed23462b8ecb3c6c9a0542b06003794f428e125a8713332435974f31277d69b","signature":"e4ca4d8a87d3c81f481decf9000b72ba30371c8088de609814b2f0be74314bb2"},{"version":"614714a56925f9d97615be5672f733a9f761b238a1f86effd0f2e772a6b12c4a","signature":"8f017a2a1956f37846a0ad1a2fd4892474a057b3163cf9181478e03e2c646968"}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./dist","rootDir":"./src","sourceMap":true,"strict":true,"target":5},"fileIdsList":[[176,177,178,179,180,181,183,184],[181,182,185],[51,52,53],[34,36,38,39,40],[42],[36,40,81,109],[50,58],[52,54,71],[34,37],[34],[34,35,36],[51,52,58,59],[34,36,38,39,40,60,70,112],[53,58,113,116,117,119],[53,58,59,60,113],[34,36,38,39,40,51,58,59,67],[49,50,60,61,62,63,64,65,66,67,68],[49,51,60],[40,51,53,59],[36,60],[49,51,60,63],[49,51,60,65],[49,51,60,66,67],[49,50,51,53,60,62,65],[48,51,60],[37,53,72,97,98],[53,98],[54,71],[35,38,40,41,55,71,80,81,82,86,92,98,106,109,113,114,117,122,130,148,149,150,151,152],[34,36,38,39,40,51,82,86,109],[100,103,128,129,135,137,147,148,158,162,170],[34,36,38,39,40,53,88,99,100],[53,99,100,109,133],[34,36,38,40,53,87,93,99,100,101,109,110],[53,60,100,101,109,111,112,113,119,123,126,132,138,144,146],[45,53,58,60,63,65,74,119,147],[34,36,38,40,41,53,101,102],[53,60,65,113,119,144,145],[133,134,136],[34,36,38,40,47,53,86,87,88,99,100,101,109,110,113],[93,127,128,131],[60,119,145,146],[53,60,109,111,112,119,138,145],[34,36,38,40,53,87,100,101,109,110,111,112,123,132,145],[53,65,100,119,144,161],[53,109,127,142,159,160,167,168,169],[34,36,38,39,40,41,47,48,49,51,52,53,71,80,81,82,86,87,88,96,100,101,103,104,105,106,107,108,110,113],[47,51,81,109],[37,109],[34,109],[34,36,38,39],[34,36,37],[34,36,38,39,40,47,51,52,53,109],[46,51,53,58],[46,51,53,57],[47,49,52,78,110,113],[40,43,44,45,48,52,74,76],[53,75,77],[48,49,51,53,75,113],[48,50,53,59,60,61,63,64,65,66,67,68,70,73,74,77],[34,48,109],[53,59,60,69,112,113],[44,45,49,50,60,61,63,64,65,66,67,68,70,73,74,76,112,113],[47,72,98,109,120,135],[48,51,53,72,88,99,100,109],[47,53,57,58,71,93,109,120,128,129,130],[47,113,136,137],[47,59,89,94,109,112,113,120,145],[58,94,109,112,113,122,128,131],[38,47,51,55,58,71,88,89,93,95,96,98,100,109,113],[35,49,51,95,100,109,113],[34,49,59,88,94,100,112,113],[88,99,100,109,142],[36,53,69,100,109,113,140,142,143],[47,142,159,165,166,170],[48,51,52,53,71,91,109,127,142,143,164],[54,57,58,71,130],[52,53],[53,54,57,88,93,119,121,123,133,168,169,172,173,174,175,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,207,208,209],[53,58,59,72,98],[54,56,71,169],[56,59,88,173],[53,60,65,88,113,119],[34,52,57,58,59,72,88,93],[59,168,185],[52,53,56,59,88,169],[34,36,38,39,40,53,58,59,88,98],[59,88,98,133],[52,53,58,59,88,133,149],[59,98,133],[53,59,88,98,133],[51,59,88,98,133,192],[72,98],[59,71,88,169],[56,59,88,116,117,123],[56,71,88,173],[34,35,36,38,39,40,53,58,88,100,109,133,149],[40,58,59,86,88],[56,71,173],[53,72,98],[34,36,38,39,40,52,54,55,56,57,58,59,71,88,90,92],[56,57,59,71,88,169],[56,57,59,173],[56,57,58,59,71,88,92,121,130,163],[52,56,71,88,169],[51,56,57,59,71,88,130,169,192],[34,54,56,57,58,59,71,88,93],[51,53,54,56,58,71,93,201],[34,36,38,39,40,41,51,53,58,60,88,113,115,116,118],[52,53,56,57,58,59,71,88,113,116,117,121,122],[52,53,58,59,72,98,192],[56,59,71,88,130,169,204],[52,56,57,59,71,88,169],[52,53,54,56,59,71,88,130,169],[44,45,73,74,112,124,154,155,156],[44,45,52,154],[42,113,159,161],[42,43],[42,52,124,125],[42,52,73],[37,42,52],[34,52,72],[42,52,124,160],[43,44,45,52,73],[44,45,51,60,70,73,74,111,113],[44,45,52],[37,54,58],[91],[57],[51,52,53,54,55,56],[51,52,53,57],[34,51,71,79,109],[52,54],[47,51],[54,71,89,100,111,117],[53,54,58,71,113,116,118],[34,36,38,39,40,47,49,51,52,53,58,59,83,84,85,100],[37,57,71,142],[139],[35,48,109,139,140,141],[142],[72,130,140,163,164],[33],[33,216],[33,212,213],[33,59,65,153,157,171,210,211,212],[33,59,69,153,157,171,210,211],[33,218,219],[212,213],[153,157,211,212],[69,153,157,210,211]],"referencedMap":[[185,1],[183,2],[83,3],[41,4],[43,5],[104,6],[51,7],[72,8],[36,9],[34,10],[37,11],[53,12],[113,13],[118,14],[116,15],[114,16],[69,17],[50,18],[60,19],[61,20],[62,18],[63,18],[64,21],[66,22],[68,23],[65,18],[67,24],[49,25],[98,26],[149,27],[130,28],[153,29],[105,30],[171,31],[101,32],[134,33],[127,34],[145,35],[148,36],[103,37],[158,38],[135,39],[100,40],[129,41],[147,42],[137,43],[128,44],[162,45],[170,46],[109,47],[82,48],[151,49],[81,50],[40,51],[38,52],[106,53],[59,54],[58,55],[111,56],[75,57],[94,58],[76,59],[89,59],[78,60],[110,61],[70,62],[77,63],[136,64],[120,65],[131,66],[138,67],[146,68],[132,69],[99,70],[96,71],[95,72],[143,73],[144,74],[167,75],[166,76],[163,77],[84,78],[210,79],[207,80],[172,81],[174,82],[175,83],[168,84],[186,85],[187,86],[133,87],[188,88],[189,89],[190,90],[191,91],[193,92],[209,93],[194,94],[195,95],[196,96],[197,97],[88,98],[198,99],[208,100],[93,101],[199,102],[200,103],[169,104],[201,105],[202,106],[121,107],[203,108],[119,109],[123,110],[192,111],[205,112],[173,113],[206,114],[157,115],[155,116],[160,117],[44,118],[126,119],[124,120],[156,121],[73,122],[161,123],[154,124],[45,118],[112,125],[74,126],[71,127],[92,128],[54,129],[57,130],[204,131],[80,132],[55,133],[48,134],[122,135],[117,136],[86,137],[164,138],[140,139],[142,140],[141,141],[165,142],[216,143],[217,144],[214,145],[213,146],[212,147],[220,148],[219,143],[221,143],[218,143]],"exportedModulesMap":[[185,1],[183,2],[83,3],[41,4],[43,5],[104,6],[51,7],[72,8],[36,9],[34,10],[37,11],[53,12],[113,13],[118,14],[116,15],[114,16],[69,17],[50,18],[60,19],[61,20],[62,18],[63,18],[64,21],[66,22],[68,23],[65,18],[67,24],[49,25],[98,26],[149,27],[130,28],[153,29],[105,30],[171,31],[101,32],[134,33],[127,34],[145,35],[148,36],[103,37],[158,38],[135,39],[100,40],[129,41],[147,42],[137,43],[128,44],[162,45],[170,46],[109,47],[82,48],[151,49],[81,50],[40,51],[38,52],[106,53],[59,54],[58,55],[111,56],[75,57],[94,58],[76,59],[89,59],[78,60],[110,61],[70,62],[77,63],[136,64],[120,65],[131,66],[138,67],[146,68],[132,69],[99,70],[96,71],[95,72],[143,73],[144,74],[167,75],[166,76],[163,77],[84,78],[210,79],[207,80],[172,81],[174,82],[175,83],[168,84],[186,85],[187,86],[133,87],[188,88],[189,89],[190,90],[191,91],[193,92],[209,93],[194,94],[195,95],[196,96],[197,97],[88,98],[198,99],[208,100],[93,101],[199,102],[200,103],[169,104],[201,105],[202,106],[121,107],[203,108],[119,109],[123,110],[192,111],[205,112],[173,113],[206,114],[157,115],[155,116],[160,117],[44,118],[126,119],[124,120],[156,121],[73,122],[161,123],[154,124],[45,118],[112,125],[74,126],[71,127],[92,128],[54,129],[57,130],[204,131],[80,132],[55,133],[48,134],[122,135],[117,136],[86,137],[164,138],[140,139],[142,140],[141,141],[165,142],[214,149],[213,150],[212,151]],"semanticDiagnosticsPerFile":[211,176,179,184,185,183,177,180,181,178,182,56,83,41,42,43,104,51,72,35,36,34,102,37,125,53,113,118,116,114,69,50,60,61,62,63,64,66,68,65,67,49,98,149,130,153,105,150,171,101,134,127,145,148,103,158,135,100,129,147,137,128,162,170,109,82,151,107,81,108,40,39,38,106,47,59,58,46,111,75,94,76,89,78,110,87,70,77,136,120,131,138,146,132,99,96,95,143,144,167,166,163,97,84,85,52,210,207,172,174,175,168,186,187,133,188,189,190,191,193,209,194,195,196,197,88,198,208,93,199,200,90,169,201,202,121,203,119,115,123,192,205,173,206,91,79,157,155,160,44,126,124,156,73,161,154,45,112,74,71,92,54,57,204,80,55,48,152,122,117,86,139,164,140,142,159,141,165,33,7,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,32,29,30,31,1,215,216,217,214,213,212,220,219,221,218]},"version":"4.9.5"}
|
1
|
+
{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.dom.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/tslib/tslib.d.ts","../../node_modules/ol/events/event.d.ts","../../node_modules/ol/disposable.d.ts","../../node_modules/ol/events.d.ts","../../node_modules/ol/events/target.d.ts","../../node_modules/ol/observable.d.ts","../../node_modules/ol/objecteventtype.d.ts","../../node_modules/ol/object.d.ts","../../node_modules/ol/collection.d.ts","../../node_modules/ol/color.d.ts","../../node_modules/ol/colorlike.d.ts","../../node_modules/ol/style/fill.d.ts","../../node_modules/ol/style/stroke.d.ts","../../node_modules/ol/proj/units.d.ts","../../node_modules/ol/pixel.d.ts","../../node_modules/ol/transform.d.ts","../../node_modules/ol/geom/simplegeometry.d.ts","../../node_modules/ol/geom/circle.d.ts","../../node_modules/ol/coordinate.d.ts","../../node_modules/ol/size.d.ts","../../node_modules/ol/extent.d.ts","../../node_modules/ol/tilecoord.d.ts","../../node_modules/ol/tilerange.d.ts","../../node_modules/ol/array.d.ts","../../node_modules/ol/tilegrid/tilegrid.d.ts","../../node_modules/ol/proj/projection.d.ts","../../node_modules/ol/proj.d.ts","../../node_modules/ol/geom/geometry.d.ts","../../node_modules/ol/geom/geometrycollection.d.ts","../../node_modules/ol/geom/linearring.d.ts","../../node_modules/ol/geom/linestring.d.ts","../../node_modules/ol/geom/multilinestring.d.ts","../../node_modules/ol/geom/point.d.ts","../../node_modules/ol/geom/multipoint.d.ts","../../node_modules/ol/geom/polygon.d.ts","../../node_modules/ol/geom/multipolygon.d.ts","../../node_modules/ol/geom.d.ts","../../node_modules/ol/render/feature.d.ts","../../node_modules/ol/tile.d.ts","../../node_modules/ol/datatile.d.ts","../../node_modules/ol/style/image.d.ts","../../node_modules/ol/style/text.d.ts","../../node_modules/ol/render/canvas.d.ts","../../node_modules/ol/render/canvas/executor.d.ts","../../node_modules/ol/render/vectorcontext.d.ts","../../node_modules/ol/render/canvas/immediate.d.ts","../../node_modules/ol/structs/priorityqueue.d.ts","../../node_modules/ol/tilequeue.d.ts","../../node_modules/ol/mapevent.d.ts","../../node_modules/ol/mapbrowserevent.d.ts","../../node_modules/ol/centerconstraint.d.ts","../../node_modules/ol/resolutionconstraint.d.ts","../../node_modules/ol/rotationconstraint.d.ts","../../node_modules/ol/view.d.ts","../../node_modules/ol/render/eventtype.d.ts","../../node_modules/ol/source/source.d.ts","../../node_modules/ol/render/canvas/executorgroup.d.ts","../../node_modules/ol/source/tileeventtype.d.ts","../../node_modules/ol/structs/lrucache.d.ts","../../node_modules/ol/tilecache.d.ts","../../node_modules/ol/source/tile.d.ts","../../node_modules/ol/render/canvas/buildergroup.d.ts","../../node_modules/ol/renderer/vector.d.ts","../../node_modules/ol/renderer/map.d.ts","../../node_modules/ol/resolution.d.ts","../../node_modules/ol/image.d.ts","../../node_modules/ol/renderer/layer.d.ts","../../node_modules/ol/layer/layer.d.ts","../../node_modules/ol/layer/base.d.ts","../../node_modules/ol/events/eventtype.d.ts","../../node_modules/ol/layer/group.d.ts","../../node_modules/ol/control/control.d.ts","../../node_modules/ol/interaction/interaction.d.ts","../../node_modules/ol/overlay.d.ts","../../node_modules/ol/mapbrowsereventtype.d.ts","../../node_modules/ol/mapeventtype.d.ts","../../node_modules/ol/map.d.ts","../../node_modules/ol/render/event.d.ts","../../node_modules/ol/render.d.ts","../../node_modules/ol/style/style.d.ts","../../node_modules/ol/feature.d.ts","../../node_modules/ol/geolocation.d.ts","../../node_modules/ol/source/vectoreventtype.d.ts","../../node_modules/ol/format/feature.d.ts","../../node_modules/ol/vectortile.d.ts","../../node_modules/ol/featureloader.d.ts","../../node_modules/ol/source/vector.d.ts","../../node_modules/ol/renderer/canvas/layer.d.ts","../../node_modules/ol/source/urltile.d.ts","../../node_modules/ol/vectorrendertile.d.ts","../../node_modules/ol/source/vectortile.d.ts","../../node_modules/ol/style/icon.d.ts","../../node_modules/ol/expr/expression.d.ts","../../node_modules/ol/style/flat.d.ts","../../node_modules/ol/layer/basetile.d.ts","../../node_modules/ol/layer/vectortile.d.ts","../../node_modules/ol/layer/tile.d.ts","../../node_modules/ol/imagetile.d.ts","../../node_modules/ol/renderer/canvas/tilelayer.d.ts","../../node_modules/ol/renderer/canvas/vectortilelayer.d.ts","../../node_modules/ol/source/image.d.ts","../../node_modules/ol/layer/baseimage.d.ts","../../node_modules/ol/layer/image.d.ts","../../node_modules/ol/renderer/canvas/imagelayer.d.ts","../../node_modules/ol/layer/vectorimage.d.ts","../../node_modules/ol/renderer/canvas/vectorimagelayer.d.ts","../../node_modules/ol/webgl.d.ts","../../node_modules/ol/webgl/buffer.d.ts","../../node_modules/ol/webgl/rendertarget.d.ts","../../node_modules/ol/webgl/helper.d.ts","../../node_modules/ol/renderer/webgl/layer.d.ts","../../node_modules/ol/renderer/webgl/pointslayer.d.ts","../../node_modules/ol/layer/basevector.d.ts","../../node_modules/ol/renderer/canvas/vectorlayer.d.ts","../../node_modules/ol/layer/vector.d.ts","../../node_modules/ol/layer/graticule.d.ts","../../node_modules/ol/imagecanvas.d.ts","../../node_modules/ol/kinetic.d.ts","../../node_modules/ol/mapbrowsereventhandler.d.ts","../../node_modules/ol/util.d.ts","../../node_modules/ol/index.d.ts","../../node_modules/ol/style/regularshape.d.ts","../../node_modules/ol/style/circle.d.ts","../../node_modules/ol/style/iconimage.d.ts","../../node_modules/ol/style.d.ts","../../node_modules/ol/layer/heatmap.d.ts","../../node_modules/ol/webgl/palettetexture.d.ts","../../node_modules/ol/style/expressions.d.ts","../../node_modules/ol/style/literal.d.ts","../../node_modules/ol/layer/webglpoints.d.ts","../../node_modules/ol/reproj/tile.d.ts","../../node_modules/ol/webgl/basetilerepresentation.d.ts","../../node_modules/ol/webgl/tiletexture.d.ts","../../node_modules/ol/renderer/webgl/tilelayerbase.d.ts","../../node_modules/ol/renderer/webgl/tilelayer.d.ts","../../node_modules/ol/source/datatile.d.ts","../../node_modules/ol/source/tileimage.d.ts","../../node_modules/ol/layer/webgltile.d.ts","../../node_modules/ol/layer.d.ts","../../node_modules/ol/source/bingmaps.d.ts","../../node_modules/ol/source/xyz.d.ts","../../node_modules/ol/source/cartodb.d.ts","../../node_modules/ol/source/cluster.d.ts","../../node_modules/geotiff/dist-node/compression/basedecoder.d.ts","../../node_modules/geotiff/dist-node/globals.d.ts","../../node_modules/geotiff/dist-node/rgb.d.ts","../../node_modules/geotiff/dist-node/compression/index.d.ts","../../node_modules/geotiff/dist-node/logging.d.ts","../../node_modules/geotiff/dist-node/pool.d.ts","../../node_modules/geotiff/dist-node/source/basesource.d.ts","../../node_modules/geotiff/dist-node/geotiffimage.d.ts","../../node_modules/geotiff/dist-node/dataslice.d.ts","../../node_modules/geotiff/dist-node/geotiff.d.ts","../../node_modules/ol/source/geotiff.d.ts","../../node_modules/ol/source/iiif.d.ts","../../node_modules/ol/source/imagearcgisrest.d.ts","../../node_modules/ol/source/imagecanvas.d.ts","../../node_modules/ol/source/imagemapguide.d.ts","../../node_modules/ol/source/imagestatic.d.ts","../../node_modules/ol/source/wms.d.ts","../../node_modules/ol/source/imagewms.d.ts","../../node_modules/ol/source/ogcmaptile.d.ts","../../node_modules/ol/source/ogcvectortile.d.ts","../../node_modules/ol/source/osm.d.ts","../../node_modules/ol/source/raster.d.ts","../../node_modules/ol/source/stadiamaps.d.ts","../../node_modules/ol/source/tilearcgisrest.d.ts","../../node_modules/ol/source/tiledebug.d.ts","../../node_modules/ol/source/tilejson.d.ts","../../node_modules/ol/source/tilewms.d.ts","../../node_modules/ol/source/utfgrid.d.ts","../../node_modules/ol/tilegrid/wmts.d.ts","../../node_modules/ol/source/wmts.d.ts","../../node_modules/ol/source/zoomify.d.ts","../../node_modules/ol/source/arcgisrest.d.ts","../../node_modules/ol/source/static.d.ts","../../node_modules/ol/source/mapguide.d.ts","../../node_modules/ol/source.d.ts","../../node_modules/@hatiolab/things-scene/things-scene.d.ts","./src/openlayers.ts","./src/ol-marker.ts","./src/index.ts","./src/editors/index.ts","./src/groups/geography.ts","./src/groups/index.ts","./src/templates/openlayers.ts","./src/templates/ol-marker.ts","./src/templates/index.ts","./src/templates/ol-path.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","37df1bef1c2e596406a45144279f572748a69a29424fc80e908c12be0b8a74f1","a01ea57d11d535163e9a2566af56d23ee7c03d3a23c0f8331fb0c9bdbfe1e724","b01b7753d9dbcf3c03f9cd23d1ed845219943147f1870ffef7126057335358a8","1b5ffa7de8f5a3de507680cc41d9d9aced8c6b8fee4b8fa7a751c4ba6b90d42c","6d14b4b339740a95581ffb0af973d189faa59b7ffc958892c47f3067019a1b56","89f8942bc3baf8207538fb08f7321c59f982156417d814939d7ec8474a47f8ec","0d0e120c7338db86fa7a072ddec40c61a10bcfe4f979345548f697663bfc047d","88d60d4ad08076127e1cb7471a8aecf0c90a259a9e23048b41368424458c73a2","3af757e431fa3049f7d6894965c9715c7af191a3f14c200f840ff12530c27af6","1a43e41218b653799c374427fb5eb18f33f0a1474daffa69d72cc6960a9d04a3","46ac4d9fd0b5477cd993fa05b6ee50297a79dfc3a2285cdaa183bd8a3e894667","d9c3bf0e2d495e69d721c97bf17223b85d0a48011792acc5b52a1add787c409c","cc68053b061296e55aea067f00fcf3e1803d8b94e52fafadf3e586e44fd991cf","4db0245c57b77973c86e295175f44bf307df06ed93bf21803043b1a7c66ac1a3","05cb4ed7c010b962acc5d5ad68763945a2211732bba3de3adfcdaeb8cc0bdc3b","d398bbb9f2b2e496fbb15e3701286a799d7b110c26d5b95cc79813c5ebbf76fc","138beb5176e7b66bd1bedc34ebe4b81e1d4e7408dda2a366a43456a3716b158b","4c400ef70fffd5942c4869a72ab8f670bf293a3df53d2d9bba7edbc1893391d9","db0642878704403e79ad24fffa3612b9c369e7b42ebbb6b7906effff17647e77","3c5daba81c256bf19b424fc424c0af84eb96aa0e191d532125783f6315549469","b8c696c0592e7c9020aa5656bf8a51f686d6e05196fb91f7ae4cecd4a343d222","f6db2ec65508f872399fbb42ca5c644684f080522e187307a01dbd68e918b11c","a118e1e31be16f0f7fca03cbc529f1f0f7f13a842061ba07f7dd6cdbb11e22a6","ea0c069dbec39c1b5cb1a90f2c34dfa21ad822f41743cee766c71d4568315309","f743a1b48c7555e9adb36156d05611169973d99e07e21833717875954f83eec9","9b65177fc826dec84b74033911be24896ee2f3cdd9c00851648c1ee4ef59c053","99de8757cb9bfc9869c3425442f06747d91fff9ff6c6b789e2718409daa24a00","ae8f59dbd8a54876dafefd823a47e8994956b172667564479bd5978b778944e6","6bf2eccce66f95ef7510a695243057faeb5ec27eb4f10fe2c52d1b19f0cca6e4","8d28e9c1c661a9d78a9ca8af6f007e7bee119c928eb5b48579d72b676a16ae88","948d5bd3ec4a91dec9b2c0ee10e6656144bfb1dd38e410e526ff48c2e0c07995","4ef8fb1ec8703f6b170042a1d770228585a4ba0ba32e8faa4c4e4e54f93207e3","50e4fb6c08a89af27d36354716cff10b41c874c203f9b718d2070813694c5929","81dd2f7b5f056dd1df741ab85d3b95acf877dd6b5b1e7a63b6552d4f8441e94c","10d5aad5fd86550f4513f3a403a650c186315f8056756902fe97f618da65d44b","91696aca30467c20342ae0cd90dd6b4068255433174e0ee9dfef8bd519c800b1","27f1fee3da43b03de3e7563641987f0323efb555b326c423fafd950fa9469819","5d82277493d0ef266939c0176622cc42f47ee473ce4d39a8cb3824237022baca","a01498a8dde3f1c1b493b50292082a46ffe8914c538c8f3ce93becc213955800","dcd3d2eea82264fda4a55d6fd0553b122958a56fef900ad329b44822b23330fe","fbbb4c2957c9e3bed8b155117a4a534b692504bfdbeed6977a04c9049c32e1bb","5311ad8dd41c4d9ce74b1b284abcf7952ced9958306be8e5f7e7e3b965fa29d6","7eecc5afa366a435ffe49a245923b24d501a5ade2adbf06ed922683ac67d391c","6849254fc851c91087fa9688b617acd59fe48fcbd7bc2314ea6a35efa2585126","cde92fa03022c7ac3d7d485f5ceb1cc1264ee22654a686959749de986be71109","b5e3e7307de8b755fe3fab27a234721572743f8c52b4fdc51b9aeaa047cc2d73","288d54de8442fd8c652a2c6fc9c0015e6d5bc27afecd5f413b8d38fd4c3cd6a5","26bd3fd4311d248e5d5a610354fef2c5f9de05554cb97bb786bdb8dbcecd5161","6c7e5301ce1bdbb0261ca994db982cdffefbbd7382de91b61fb9bea6dfe10cf2","a2e5839309d27056cc2b8f2a18d62a4ff32df184a904cf21f47cd341e369018d","a561e0c810366fd6146cb99fe54e23450b100766ce3184b44b57e1a9981c0082","8c61c6ab9cdef76768700e83cf94124c750bccaaa1cc9aa52c161160bf5e7a6e","5d80716e2b7c5fe584a75de98934e9a36f7b3f680446d9cffac8562b0fe39107","e7500c857e7eab70a618a07cd3c9d53cec8a375c1a7f3bce171aa818d7939f41","e4f8cac6b42c4a77d82bd03834484a727965b61296600d2040504e6ddc2ec530","fad1a6e78141f81260b644f82594b474fabcf5bba1b179e8defe695c9026be31","669437bba68c48efc51d96d35e85e20738b276e3551a4548889c7b71f37850a1","b4e820c00f00374d37da986d29842aebab80a7ab7e9affecffb816ea811a35fa","b39fa4482ca51ce365973794f94e2306569ba897403f4bcb246e0eef0d0d2e29","dba567c6afca08bbd4616bf0ea3a128aeba083f932e1ec7753d194d057e35b58","f59ea33bd574d11cdf5227130090b63664bc0cd6015af9ca4a99d3b783f10c5e","00064851af96110dc8cea7c84fcee9fe209e0a5e98968f2d60f585b0e0dcf078","159af4701f917a10a89cccf1f644f6f40f220d4ba8610227fea68f0eb9c3205f","cf6cf7979e945e58880f260079f89a69a32bef09ee03d3ec64a984f36c86adce","80aff7afd99f57cec1a70876a7f34aa0ee82d354f7258d3f3829f4b8ff5829f5","1f6d5c7a3ee16920d19aed8777281cb065bcfabeb3e51bcac0386c372e5e0677","79ea7a193440268f82e4d7c6a0d395a9d3d55f1de797d29f7f88bd6d587fa488","9c324ecb46587fa931c400dca194d55b9dbe07c15e8a4e9ae86f06b56a5953c0","7b10d36e808c643668c5ed3c12b73a97495ec0ec68f7b8cc31db9139e6740105","ff5304ef796250a681bfe1d6422a7b5decb8204b37755015358cc7241ca134d6","4801186a50f323065b9f5737b6234abed8577fc1e5ebb5e749ba1e35ebf77f9d","138cda5d763fac6e1a6f31d28a3c7f3dce0bd7f14eae7ce10f19c03a97baff1b","a4e4b9c051d0f71403a20ec58bf68f29e7c35d708c495b6a21776ca0469ce456","cf69621bf0ecc07b6aa01eea23be4f8e75c10330096dbb5dfa53f61af730f821","58404c09a7a50fd9906ac2ecc2f70aec65848a5fdba3497ce2454440976636e2","238adc7f460b4703c35d82981dbe2912c01d332309203dda953732ed4c0c3546","840f99e579b8fffb2a8f57e0e97f68ccfd76ea1d43e9164188662449b4981ea6","de951da1e450e0f7713f95a550508eb7b7f7cba10640ed7cf3a5fba7ca189aa0","12977e1335830ea72e484ee1f0823d672a016e6d0df7e1369810d654d9935308","5017436c94942ea52df0e70f00907d772fe2bd27194274f882003d3d7ee7829a","8d91a185898da172a81042720823215304fc8d6258da9c720476012e997d2bb5","0d14977b110e40c89ec3a6cd50eadaf257400c08f6fb545b3002adb8f5adda35","4659d957ba537bbcee4ee7c34b23fe4c9b305f65701802621fc57a6e38967292","51cf79ac7b47e3eea4627869c044f0d563d3bdb113889f1901b6d33783b1781f","b7b5d5ffb7d958e00a4dc16106202f9c71aa57c1c53e4f251d13170f36b7cae9","8a42736cd1b0d1680a05f63fe7b6e378ba68a3c5e74edfbcea9b48d8ab885825","7b6450a2363a741a4fec239afd93b55b6679197b35b28c108a49e7daa3123bc7","c7745f8f4139806378b38db9fb2e44aaaa329ce822fda2739a90126a84d3d0ad","6f9ae463a84ace3771ca556baa7bf6fe2e5e58e4520ace6c9c9d5a3156f13004","7e1cfdde676a9042e3feef5b3bd8fa8198e48e003c0db57aab225247757c3f61","daf8ef8f3714b38e9f3fbffd50704340987966de7f8cacd17b06c6d53b673246","d2e829175e3689ab0a9eddfa594b9e9411c4f285d1d0a1f3d779ef0d5c730f2a","07e2f56b9c07bde30662588166e2413e229e9f42e58e27afe36d6684a55f2bf5","cf46eed8b500044434833782f76c9f3134cd47b20e27ca4a70179779dc7e6875","cc108dcf9b287bffdccadc4f3e26e683bc7a06b94143b15b28da8d4894d5f46b","35fc9dd7a1ea9ac144f26095ae7290eb7493d71e06a3e61d2da2ab60a0c33dd6","568426d28353f8bc686d3fb96cfbaecebd6e8ff50cdebfed2010a1c19b78cfa2","f54057b5c747c33f5cd4f972faa04598e534fdd2437a01ee7aa484967b4bd323","79d562813d05e1e60bff8e7da5415ef8d8fb392e45ac44fcd2ad19cd5e5823df","af5086e2881b82d7605ab9ad26966676314d9f71bb7737042321c59d26743787","3d82826182b2ac9e894a292a11ce7b4d8a9c1be9bfa213f35e1601cfb2a0e25c","f0f226728ca9a191a464817c5df2fc9d7e1b0424b2a2345eb279725660ad7688","df35a4570d3a5b9b302e36af1a765a7219d7d92ddc658e76316f68de0e1cdb92","0e2bbcac4aa37f2fd5103820d5bb7bf83ff7bd0f9edce8217857b1803367ecab","c8a8977122db663648c6d91f5f214505477a93e9238b3d486823a40a734521f4","6f7cc8f6aaa5061b348f468a028c3163dfdddc1b704d183a794388cadb41932f","fba62647de7927d3558ae41406e3dca5a34010702ed6428d071b6acf64d9b99a","374acfaae252703d35a7cf518c6a48205fd4bbc8fd51e42b4740c48bf2c15159","7b95cbc73d21bae8f82459a3a7546628a9d7d9184dd3e5f657f4332e336c5e30","9c7dd4f4b897099e8dc51e995751827507cf869a954d117a7bbd31add0ea3c5c","9ea6d6258cf3e3cda154388b012e0982262df87cd9f2f3e032a47410913aa10f","7176c2b507c632d101701bafcc0a6a452d02a6a09616ae53ef5e196465168953","9e06ccbfd42cf165db6dbbdbfe43339bea942af997668d9358622f7551cd762b","1fcebc10892731b4b4fc8f12aadd8ce1df2672a0c1b7695b76c0916061e769da","5c835bb073b3e71d3340a8d0005003cbc61d324223c8816619d8f6d17bad90cc","39c3228bec27a17768cf66f3ec723394aef035cb5694a85276238d92e897f257","3785578856de4b020c410ea0690e14132e175298425a7f29f344012aac4ab795","67e135c1eff1ceb76432ca402f9c300fb8f00e1da9af6fa04dc98160efa67ded","9677f7d3f19218dd6fc02151f43c7ef9870a99040c60e26efa1de35351f005c5","15f5bf20d5a46817c689227b6b5a519a37a5dedeed35a4f28fdf905d8b113b98","78abc00dc67dca85b32b4b50b47aae3c864f2d178a6d4a5cb6f31a0dd630fd7c","c9ec670902faff631508df22f593a770d9f57f6ef7d0127424df031efbb945ba","eb365debf5b8a707a69d88b14c7c487f61fd60a2b8750c6d849c691cf0038381","a430884211109a78a9397db15faad69c96941c38e9da890ca5c398a508bc5170","038df71ede5869295b2f64f59e2d6ebaf9398f732376c5752ac6e97b8d209eed","b834ed8a53237d79982f3c65f82652f462e7abe49e6b16efbd9e4dd6bf4d4973","c91d8180295aeaf611929f72cc9c47fe1e85140cf0734505f45e56e4e996a1e3","d764842addb951561dee836d8940ad58a5419382ddb666444602e3bbaff81057","92b95dc0207b98c7764b52a6a30de9125d0a5b9e89442a66143b3e504ee215f9","b547b763c576afeac2bc97820ef4a385603aa2e306a17aa6019f037a3cfc02f3","791af775fbc64a8187503710ebe44b61f0a04affec19cdaa39285a2c333c376f","2f35ac4a94034a75a110f87156b1fa89f679ae00d01bd232c55a33624da178df","eb21612598db8ba85496f041e756d3f9bffa1882c1885b685c1137b06bc8802a","199650ed2704f9dfcc679c94cf066c3b46d907b70bd3c74de1093e45570aa503","ca141bfbf219b9f0c144bd278d5f1edc4412b7ca09a00121466c586d0995e264","99a0c762f3b042b7fe7c449c91e7aaee425e9a2b2ee8fa5c59be1e9b3bb55766","04f50e29badda93ca5d5b3f7745ffb9cf606e588af4c17b68ba6eed867fe047d","a0fd9aaca64673ee543be1c7083efe73a801bbfc2d86f4d74f1d610eb401e2eb","8d244c71792f50a54a86de454168f0d48d54e45539a9431865e649337fd8e7e7","c47b68d301d8dd045807548bf6e053889a909e3866231aab2586d01beb65b9ce","87da701a4488a17c765fd0fd0a25504b21fa108b2b9bbcc28fa8058323938ee0","899caab3ba9a3dc13536401e7590bb22e2f0385f955658433ccde7f2fac1d040","18e496f03a0dac2230893cd955ec5895467a7cb9c399dd35eacbcb7a7dc4e164","121411fa6571f666c4b74b868f8799660f978a45c623e453a623009e08a0c656","57c6df1fb93aeb862ddd8cb8770f12b473b3d3cb4aa659d1015e4251424d5596","0f9530750161bf0b4cca0f8e9ebe2c61df5c894cda213427a3f0560defe5598d","2809aa91788e2e60d340edbded8c1dbd7d72771e3416b14b9985e3a444a420c5","00e67c1002bb58a27333688e4164814b75561e3df850d61cfd1cde8ad1c8a5ee","5c46d41a962b5002b029582acf4d3d3b6f151c5e6c506d90cc49669c5722cbfa","a48625313ec9d35e9858e3fb9eeb28e8fff697dfb1226c8404a346730486f174","92978696f61af1026516c78b37d3a9787f335e46028cddf6b1b23801839827b4","ebed0352846677c97884426726b8b6b5ed8ee6b7bdeadb36d2779ef5caa1dd61","4490073a656a939c432bfb3fa05e5afb3f50cd4274afb645d361c800ffd21b41","8764c6550730a1fd8aee6a23ece45dd5e48554fd1d3648f35bf44e067042b2d0","6cfd5368a3b9178083f314790fa752f4ffa2f23350fd7966b2abe7d019eabf88","f7a620ebf354c052a656c027c1b9cd6c45382c8b850b17356d380892483f87e9","f21c823d9fdbc21af67e422a87e390ae8bf0fb945a62f3d93390766f79b2f0fb","8c1671b1acdb4d960104cfe4384af6ac731ddf0d7be954dd105bb61d9a29280a","09fa121e2dbf5b725fe5c502602c1ae6b4b7a6d5fc3a6aef68bfbe818115dcce","1689ef8d6af4dfb417b4bf890da443b3377331522d96991fb4a67eee93ccf6b4","dc9374f06c66112d61c1b53db3f1dbcf02253750490a97bd737ac792948877ef","f7eefb8cc69f69836e36d8f2e4c47ff12823f05bb192902cf937db3ddecbd798","296f95dff6a68a78b17e1899556c379eb86c008b44845dc62f74ea5fb81bccc3","b22ae9acbf95b556a7adf915831c015edf504fce58b442cd47752ce128acc025","3078b87cee6fc33eaf042a35688ca5027ac12e5768e423624ab36ccf1993b1cf","af1b7571c9976ac2b81cfa82caf3ff75afa43ae20c3bc833e681c43e25bf46e0","16720d6851e11807440a6f83d588ca2b4e24a655143a0974971c97055d056ce7","7b3e11221b7bda7c4f0e4916fdd509e4e25512075e4b1e19c435f60a283005ea","15baae571ca91d88ba323ddd0cbe3f910603dcd9945e4c4f4daf49d371c216a7","b3f2713c7a0851f2a11a4ddfce3079bd51fe8183fb2f7ea32b8fc22843129746","402209d81dadfbc1559e2e7dc445f894da11ef2e9bb7ed54dec7652f24d28add","076be6b6d57171b4da5e3796465ff03462c89f975ce2ef8803555372fc650dc9","3cb8e1eba960a7db20a5ce2ba0b8b3faf4bb3f844e3fcc378747876f224bc3f6","d0458ea3bee892768bc555a9f2a9245334c1fc21bc45c8787da5f22e524f826b","9049e275aa6ab96a5672eb9ae5cc4e2929927e2ff963c1ebb9baf47397ce0ef6","1790a89f79b5e65e2b2a5b5f5de8c3fb6cfd9c13599a3291f49babe33c97006c","055ea1ef508723c51e9851460c2e5d9d476ec1c911bfa8c655ddaaf28d3882db","7116a83b274d2f842d0269c1d35a36158289a4ed4a9b11ddb6d52aff5d1ae8aa",{"version":"6eb9c665b87e1891596f5b2aff7bab036efeacc987ef5a23cb888fe606ab5491","signature":"34f487c05f20a2a4c45fa068b18df048239f34c7bb205f7017d4356105eec616"},{"version":"afc723637464cb5a964ddeed34ec3e3c812b9f3a68b5ce9afba8275c32bddf07","signature":"44c6931197afadc587345b6e0ba9d24809df2e0cc53ee8a3a8b24bb225ef18a6"},{"version":"2695ee80cf5f077e6d517e09d2d27caf639b7d4f234970a1acb7cd706c42377c","signature":"954a11d0b0b0e6b533c2ced7c0362bae6709d7b1caaca80b2e9835a4c007fc2b"},"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",{"version":"db7b636ea0f25259a453456b509a9c62df8e3706abc1cda9d04766a125cf8330","signature":"57dad3c48bc2ec75c4ffdd67fc0e8004abc8d569662936b0a2344b8d51def36f"},{"version":"8b8762fe71bd917de9d0ff1b22685c5a19c6696e93aa65acefc33a0a0116d6d6","signature":"f1f4f25dcab6dfc37bfd690aab5680a01609b290502c8462ed4eaf79063dc131"},{"version":"38fe2524bc380f2b39083817f4243dad81d37686b5c96c745906671beb5ca219","signature":"8f017a2a1956f37846a0ad1a2fd4892474a057b3163cf9181478e03e2c646968"},{"version":"7befd486e1a9d2ae992c3d563ad7a4cf01b747f7158131c86fd3af118900cbc5","signature":"8f017a2a1956f37846a0ad1a2fd4892474a057b3163cf9181478e03e2c646968"},{"version":"aed23462b8ecb3c6c9a0542b06003794f428e125a8713332435974f31277d69b","signature":"e4ca4d8a87d3c81f481decf9000b72ba30371c8088de609814b2f0be74314bb2"},{"version":"614714a56925f9d97615be5672f733a9f761b238a1f86effd0f2e772a6b12c4a","signature":"8f017a2a1956f37846a0ad1a2fd4892474a057b3163cf9181478e03e2c646968"}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"esModuleInterop":false,"experimentalDecorators":true,"importHelpers":true,"inlineSources":true,"module":99,"noEmitOnError":true,"outDir":"./dist","rootDir":"./src","sourceMap":true,"strict":true,"target":5},"fileIdsList":[[176,177,178,179,180,181,183,184],[181,182,185],[51,52,53],[34,36,38,39,40],[42],[36,40,81,109],[50,58],[52,54,71],[34,37],[34],[34,35,36],[51,52,58,59],[34,36,38,39,40,60,70,112],[53,58,113,116,117,119],[53,58,59,60,113],[34,36,38,39,40,51,58,59,67],[49,50,60,61,62,63,64,65,66,67,68],[49,51,60],[40,51,53,59],[36,60],[49,51,60,63],[49,51,60,65],[49,51,60,66,67],[49,50,51,53,60,62,65],[48,51,60],[37,53,72,97,98],[53,98],[54,71],[35,38,40,41,55,71,80,81,82,86,92,98,106,109,113,114,117,122,130,148,149,150,151,152],[34,36,38,39,40,51,82,86,109],[100,103,128,129,135,137,147,148,158,162,170],[34,36,38,39,40,53,88,99,100],[53,99,100,109,133],[34,36,38,40,53,87,93,99,100,101,109,110],[53,60,100,101,109,111,112,113,119,123,126,132,138,144,146],[45,53,58,60,63,65,74,119,147],[34,36,38,40,41,53,101,102],[53,60,65,113,119,144,145],[133,134,136],[34,36,38,40,47,53,86,87,88,99,100,101,109,110,113],[93,127,128,131],[60,119,145,146],[53,60,109,111,112,119,138,145],[34,36,38,40,53,87,100,101,109,110,111,112,123,132,145],[53,65,100,119,144,161],[53,109,127,142,159,160,167,168,169],[34,36,38,39,40,41,47,48,49,51,52,53,71,80,81,82,86,87,88,96,100,101,103,104,105,106,107,108,110,113],[47,51,81,109],[37,109],[34,109],[34,36,38,39],[34,36,37],[34,36,38,39,40,47,51,52,53,109],[46,51,53,58],[46,51,53,57],[47,49,52,78,110,113],[40,43,44,45,48,52,74,76],[53,75,77],[48,49,51,53,75,113],[48,50,53,59,60,61,63,64,65,66,67,68,70,73,74,77],[34,48,109],[53,59,60,69,112,113],[44,45,49,50,60,61,63,64,65,66,67,68,70,73,74,76,112,113],[47,72,98,109,120,135],[48,51,53,72,88,99,100,109],[47,53,57,58,71,93,109,120,128,129,130],[47,113,136,137],[47,59,89,94,109,112,113,120,145],[58,94,109,112,113,122,128,131],[38,47,51,55,58,71,88,89,93,95,96,98,100,109,113],[35,49,51,95,100,109,113],[34,49,59,88,94,100,112,113],[88,99,100,109,142],[36,53,69,100,109,113,140,142,143],[47,142,159,165,166,170],[48,51,52,53,71,91,109,127,142,143,164],[54,57,58,71,130],[52,53],[53,54,57,88,93,119,121,123,133,168,169,172,173,174,175,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,207,208,209],[53,58,59,72,98],[54,56,71,169],[56,59,88,173],[53,60,65,88,113,119],[34,52,57,58,59,72,88,93],[59,168,185],[52,53,56,59,88,169],[34,36,38,39,40,53,58,59,88,98],[59,88,98,133],[52,53,58,59,88,133,149],[59,98,133],[53,59,88,98,133],[51,59,88,98,133,192],[72,98],[59,71,88,169],[56,59,88,116,117,123],[56,71,88,173],[34,35,36,38,39,40,53,58,88,100,109,133,149],[40,58,59,86,88],[56,71,173],[53,72,98],[34,36,38,39,40,52,54,55,56,57,58,59,71,88,90,92],[56,57,59,71,88,169],[56,57,59,173],[56,57,58,59,71,88,92,121,130,163],[52,56,71,88,169],[51,56,57,59,71,88,130,169,192],[34,54,56,57,58,59,71,88,93],[51,53,54,56,58,71,93,201],[34,36,38,39,40,41,51,53,58,60,88,113,115,116,118],[52,53,56,57,58,59,71,88,113,116,117,121,122],[52,53,58,59,72,98,192],[56,59,71,88,130,169,204],[52,56,57,59,71,88,169],[52,53,54,56,59,71,88,130,169],[44,45,73,74,112,124,154,155,156],[44,45,52,154],[42,113,159,161],[42,43],[42,52,124,125],[42,52,73],[37,42,52],[34,52,72],[42,52,124,160],[43,44,45,52,73],[44,45,51,60,70,73,74,111,113],[44,45,52],[37,54,58],[91],[57],[51,52,53,54,55,56],[51,52,53,57],[34,51,71,79,109],[52,54],[47,51],[54,71,89,100,111,117],[53,54,58,71,113,116,118],[34,36,38,39,40,47,49,51,52,53,58,59,83,84,85,100],[37,57,71,142],[139],[35,48,109,139,140,141],[142],[72,130,140,163,164],[33],[33,216],[33,212,213],[33,59,65,153,157,171,210,211,212],[33,59,69,153,157,171,210,211],[33,218,219],[212,213],[153,157,211,212],[69,153,157,210,211]],"referencedMap":[[185,1],[183,2],[83,3],[41,4],[43,5],[104,6],[51,7],[72,8],[36,9],[34,10],[37,11],[53,12],[113,13],[118,14],[116,15],[114,16],[69,17],[50,18],[60,19],[61,20],[62,18],[63,18],[64,21],[66,22],[68,23],[65,18],[67,24],[49,25],[98,26],[149,27],[130,28],[153,29],[105,30],[171,31],[101,32],[134,33],[127,34],[145,35],[148,36],[103,37],[158,38],[135,39],[100,40],[129,41],[147,42],[137,43],[128,44],[162,45],[170,46],[109,47],[82,48],[151,49],[81,50],[40,51],[38,52],[106,53],[59,54],[58,55],[111,56],[75,57],[94,58],[76,59],[89,59],[78,60],[110,61],[70,62],[77,63],[136,64],[120,65],[131,66],[138,67],[146,68],[132,69],[99,70],[96,71],[95,72],[143,73],[144,74],[167,75],[166,76],[163,77],[84,78],[210,79],[207,80],[172,81],[174,82],[175,83],[168,84],[186,85],[187,86],[133,87],[188,88],[189,89],[190,90],[191,91],[193,92],[209,93],[194,94],[195,95],[196,96],[197,97],[88,98],[198,99],[208,100],[93,101],[199,102],[200,103],[169,104],[201,105],[202,106],[121,107],[203,108],[119,109],[123,110],[192,111],[205,112],[173,113],[206,114],[157,115],[155,116],[160,117],[44,118],[126,119],[124,120],[156,121],[73,122],[161,123],[154,124],[45,118],[112,125],[74,126],[71,127],[92,128],[54,129],[57,130],[204,131],[80,132],[55,133],[48,134],[122,135],[117,136],[86,137],[164,138],[140,139],[142,140],[141,141],[165,142],[216,143],[217,144],[214,145],[213,146],[212,147],[220,148],[219,143],[221,143],[218,143]],"exportedModulesMap":[[185,1],[183,2],[83,3],[41,4],[43,5],[104,6],[51,7],[72,8],[36,9],[34,10],[37,11],[53,12],[113,13],[118,14],[116,15],[114,16],[69,17],[50,18],[60,19],[61,20],[62,18],[63,18],[64,21],[66,22],[68,23],[65,18],[67,24],[49,25],[98,26],[149,27],[130,28],[153,29],[105,30],[171,31],[101,32],[134,33],[127,34],[145,35],[148,36],[103,37],[158,38],[135,39],[100,40],[129,41],[147,42],[137,43],[128,44],[162,45],[170,46],[109,47],[82,48],[151,49],[81,50],[40,51],[38,52],[106,53],[59,54],[58,55],[111,56],[75,57],[94,58],[76,59],[89,59],[78,60],[110,61],[70,62],[77,63],[136,64],[120,65],[131,66],[138,67],[146,68],[132,69],[99,70],[96,71],[95,72],[143,73],[144,74],[167,75],[166,76],[163,77],[84,78],[210,79],[207,80],[172,81],[174,82],[175,83],[168,84],[186,85],[187,86],[133,87],[188,88],[189,89],[190,90],[191,91],[193,92],[209,93],[194,94],[195,95],[196,96],[197,97],[88,98],[198,99],[208,100],[93,101],[199,102],[200,103],[169,104],[201,105],[202,106],[121,107],[203,108],[119,109],[123,110],[192,111],[205,112],[173,113],[206,114],[157,115],[155,116],[160,117],[44,118],[126,119],[124,120],[156,121],[73,122],[161,123],[154,124],[45,118],[112,125],[74,126],[71,127],[92,128],[54,129],[57,130],[204,131],[80,132],[55,133],[48,134],[122,135],[117,136],[86,137],[164,138],[140,139],[142,140],[141,141],[165,142],[214,149],[213,150],[212,151]],"semanticDiagnosticsPerFile":[211,176,179,184,185,183,177,180,181,178,182,56,83,41,42,43,104,51,72,35,36,34,102,37,125,53,113,118,116,114,69,50,60,61,62,63,64,66,68,65,67,49,98,149,130,153,105,150,171,101,134,127,145,148,103,158,135,100,129,147,137,128,162,170,109,82,151,107,81,108,40,39,38,106,47,59,58,46,111,75,94,76,89,78,110,87,70,77,136,120,131,138,146,132,99,96,95,143,144,167,166,163,97,84,85,52,210,207,172,174,175,168,186,187,133,188,189,190,191,193,209,194,195,196,197,88,198,208,93,199,200,90,169,201,202,121,203,119,115,123,192,205,173,206,91,79,157,155,160,44,126,124,156,73,161,154,45,112,74,71,92,54,57,204,80,55,48,152,122,117,86,139,164,140,142,159,141,165,33,7,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,32,29,30,31,1,215,216,217,214,213,212,220,219,221,218]},"version":"4.9.5"}
|
@@ -1,15 +0,0 @@
|
|
1
|
-
2023-09-02T17:47:58+09:00 info: File Storage is Ready.
|
2
|
-
2023-09-02T17:47:59+09:00 error: oracledb module loading failed
|
3
|
-
2023-09-02T17:47:59+09:00 error: oracledb module loading failed
|
4
|
-
2023-09-02T17:48:00+09:00 info: Default DataSource established
|
5
|
-
2023-09-02T17:48:01+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
6
|
-
2023-09-02T17:48:01+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
7
|
-
2023-09-02T17:50:40+09:00 info: File Storage is Ready.
|
8
|
-
2023-09-02T17:50:41+09:00 error: oracledb module loading failed
|
9
|
-
2023-09-02T17:50:41+09:00 error: oracledb module loading failed
|
10
|
-
2023-09-02T17:50:46+09:00 info: File Storage is Ready.
|
11
|
-
2023-09-02T17:50:46+09:00 error: oracledb module loading failed
|
12
|
-
2023-09-02T17:50:46+09:00 error: oracledb module loading failed
|
13
|
-
2023-09-02T17:50:47+09:00 info: Default DataSource established
|
14
|
-
2023-09-02T17:50:47+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
15
|
-
2023-09-02T17:50:47+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|