분류 전체보기528 [IT] 국민은행 공인인증서 복사 방법 국민은행 접속 인증서 관리 인증서 가져오기 인증서 복사 하드디스크로 복사 그리고 공인 인증서 비밀번호 까지 적어주고 Enter 눌러주면 복사 된다. To be continued.. 2023. 2. 5. [Vscode] Vscode SVN Committing How can we commit a file through SVN ? Today We gotta commit some files at SVN. Method Click source control (the third option at the left sidebar) And Click Changes and select what you wanna commit files. After Select the files and Clicking the right mouse. (Now you can see the commit Selected like this image) And Writing some comments what you wanna say or indicate words You got it. To be conti.. 2023. 2. 3. [Vscode] Visual Studio Code SVN Setting I wanna try to kinda framework And It's important that we can use a lot of shells lol ,, Let's get it . Method First of all, You should download Visual Studio Code and SVN It's almost similar tointelliJ SVN setting method. ( I think It's same ) If you download the VScode that you can see this pic. So We start to download SVN tools CLICK : ctrl + shift + x and search the SVN and Click the most po.. 2023. 2. 2. [Openlayers] Openlayers Heatmap Usage How can I use Heatmap() in openlayer? It's easy to use than you think about it. Method If you finished this script You can handle heatmap Method that you want That's an example. achacha ⭐ Don't forget to inherit openlayers ⭐ Create map You need to make a map to put layers on. const openStreetMap = new ol.Map ({ target: 'o2map2', layers : [ new ol.layer.Tile({ source: new ol.source.OSM(), }) ], v.. 2023. 2. 1. [Openlayers] Openlayers code storage polygon, circle, dot ... and style const map = new ol.Map ({ target : 'o2map', layers : [ new ol.layer.Tile({ source: new ol.source.OSM() }) ], view: new ol.View ({ zoom: 5, projection : 'EPSG:4326', center: [127, 35.22], }) }) const featureSource = new ol.source.Vector ({ }) const featureLayer = new ol.layer.Vector ({ source: featureSource }) const dotLayer = new ol.Feature ({ geometry : new ol.. 2023. 1. 26. [Openlayers] Openlayer's sensitive properties ※ 오픈레이어스를 사용하기 위해서 상속을 받아야 된다. Method /* 오픈스트리트맵 */ const openSt = new ol.layer.Tile({ target: 'o2map' source: new ol.source.OSM(), visible: true, opacity: 1 }) if you use this code You face a error like this. (It wasn't working normally.) You should surround layer parameter by using array '[]' If you don't surround a layer parameter It will be not worked. Usage const map = new ol.Map ({ target:.. 2023. 1. 25. [Openlayers] 오픈레이어스 Polygon 사용방법 ※ 물론, 오픈레이어스를 사용하기 위해서 상속을 받아야 된다. (Obviously Before starting, You should inherit to use Openlayers) Method /* 여기안에는 그냥 배열 처리만 해줘도 사용 할 수 있다. */ const polygon = new ol.geom.Polygon([]); polygon.setCoordinates([[[120, 38],[120, 33],[126, 38] ,[126, 33]]]); const polygonFeature = new ol.Feature(polygon); polygon 사용하는 코드이다. (This is a code for using polygon.) 만약 여러개의 폴리곤을 사용하고 싶으면 (if you wanna try.. 2023. 1. 19. [Openlayers] 오픈레이어스 ol.geom.style 사용방법 이제 좀 오픈레이어스에 대해서 이해가 가기 시작한다. Method const circleFeature = new ol.Feature ({ geometry: new ol.geom.Circle([127, 38], 2), }) 다음과 같이 서클이 있는 상태에서 const circleStyle = new ol.style.Style({ stroke: new ol.style.Stroke ({ color: 'red', width: 5, }), }) 서클 스타일을 다음과 같이 만들어준다. 그리고 circleFeature.setStyle(circleStyle); 서클 객체에다가 setStyle(스타일) 넣어주게 되면 스타일이 적용이 된다. To be continue.. 2023. 1. 19. 이전 1 ··· 17 18 19 20 21 22 23 ··· 66 다음