Loading views...
OL Map Layer3

OL Map Layer3

Date
Date
2020 Jan 31 0:0
Created by
Created by
Seonglae ChoSeonglae Cho
Created time
Created time
2023 Feb 28 12:39
Last edited by
Last edited by
Seonglae ChoSeonglae Cho
Last edited time
Last edited time
2023 Apr 15 16:53
Refs
Refs

Object - 여러 에러 수정과 실제 동작하게

 
resize Error
notion image
notion image
winResize 이벤트에 뭐가 부족한지 콘솔창 크기를 바꾸거나 할 때 이런 에러가 발생함
 
  1. osm 포함 범위가 바뀐다거나
  1. 네이버 카카오는 범위도 바뀌고 약간씩 밀린다거나
window zoom changed
notion image
이 에러도 마찬가지인데 심지어 원래 보정에서도 있는 에러다
resize 맵을 이벤트 연결시켰는데 하나만 바꿔주어서 문제였다 for server로 전부 windowResize
마다 넣어주니까 굉장히 잘댐
 
 
pvr 개수 에러

off 여도 pvr 개수는 업데이트 되야하는데 안되고있다

notion image
GetpvrRelation으로 값들 초기화 후
GetpvrRelationLocal 로 pvr 어레이 업데이트해야하는데
Makepvr 로 만들어야하는데
 
if vectorlayer 때문에 getpvr이 호출이 안되었다는거..
바꿈
 
 
 
zoom error 넘어서도 1 강제로 누르면 뜬다
notion image
자연스럽게 해결댐
 
 
어마어마한 녀석을 만들어내버렸으..
notion image
으메이징
요런 짜잘한 함수들과
Clustered Features
import 'ol/ol.css'; import Feature from 'ol/Feature'; import Map from 'ol/Map'; import View from 'ol/View'; import Point from 'ol/geom/Point'; import {Tile as TileLayer, Vector as VectorLayer} from 'ol/layer'; import {Cluster, OSM, Vector as VectorSource} from 'ol/source'; import {Circle as CircleStyle, Fill, Stroke, Style, Text} from 'ol/style'; var distance = document.getElementById('distance'); var
Clustered Features
여기를 참고하여 스타일이 뭔지를 깨닫고
 
최적화 위해서 png 안쓰고 전부 ol 기본도형으로 바꾸는중
Regular Shapes
This example shows how several regular shapes or symbols (representing x, cross, star, triangle and square) can be created.
Regular Shapes
여기에는 다양한 도형들을 얻을 수 있다
 
... 라는 전개연산자
{} = 비구조화 할당
 
 
 

Recommendations