[OpenLayers] Custom Icon Feature 추가Language/JavaScript2022. 12. 26. 22:52
Table of Contents
반응형
이전 글에서 설정한 Static Image 위에 주어진 위치의 아이콘을 표시하는 예제입니다.
OpenLayers 3 버전을 사용하였습니다.
Script
기존 코드에서 addVectorLayer
함수와 styles
객체가 추가되었습니다.
먼저 ol.style.Icon
을 이용해서 아이콘 경로를 설정합니다.
const styles = {
icon: new ol.style.Style({
image: new ol.style.Icon({
opacity: 1,
src: 'images/icon.png',
}),
}),
};
ol.Feature
, ol.layer.Vector
이용해서 Vector Layer를 생성하고 지도에 레이어를 추가합니다.
// 지도 정보
const mapInfo = {
map: null,
extent: null,
projection: null,
setProjection: function (w, h) {
this.extent = [0, 0, w, h];
this.projection = new ol.proj.Projection({
code: 'pixel',
units: 'pixels',
extent: this.extent,
});
},
init: function (imageName) {
const view = new ol.View({
projection: this.projection,
center: ol.extent.getCenter(this.extent),
zoom: 2,
maxZoom: 8,
});
const imageLayer = new ol.layer.Image({
source: new ol.source.ImageStatic({
url: 'images/' + imageName,
imageSize: [this.extent[2], this.extent[3]],
projection: this.projection,
imageExtent: this.extent,
}),
});
this.map = new ol.Map({
target: 'map',
layers: [imageLayer],
view: view,
});
this.zoomFit();
},
zoomFit: function () {
this.map.getView().fit(this.extent, { duration: 200 });
},
///////////////////////////////////////////////////////
// 추가된 부분
///////////////////////////////////////////////////////
addVectorLayer: function (x, y) {
const iconFeature = new ol.Feature({
geometry: new ol.geom.Point([x, y]),
type: 'icon',
name: 'icon',
});
const vectorLayer = new ol.layer.Vector({
source: new ol.source.Vector({
features: [iconFeature],
wrapX: false,
}),
style: function (feature) {
return styles[feature.get('type')];
},
});
this.map.addLayer(vectorLayer);
},
///////////////////////////////////////////////////////
};
// Initialize module
// ------------------------------
document.addEventListener('DOMContentLoaded', function () {
const width = 500;
const height = 500;
const imageName = 'image.png';
mapInfo.setProjection(width, height);
mapInfo.init(imageName);
mapInfo.addVectorLayer(100, 100);
});
결과
[100, 100] 위치에 아이콘이 표시됩니다.
참고
반응형
'Language > JavaScript' 카테고리의 다른 글
자동가입 방지문자(SimpleCaptcha) 사용 방법 (0) | 2023.08.30 |
---|---|
[OpenLayers] Feature Drag and Drop (0) | 2022.12.27 |
[OpenLayers] Static Image 사용 방법 (0) | 2022.12.21 |
[JavaScript] 주민등록번호 유효성 검사 (0) | 2022.11.08 |
[JavaScript] IE에서 작동하지 않는 BLOB 다운로드 (0) | 2022.11.02 |
@고지니어스 :: 규니의 개발 블로그
IT 기술과 개발 내용을 포스팅하는 블로그
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!