기본 지도 맵 위에 이미지 타일 레이어를 추가합니다. 레이어 투명도를 설정할 수 있습니다. tileLayer options의 opacity를 0.0 ~ 1.0 사이값으로 입력합니다.
javascript
// 타일 레이어 변수를 생성합니다
var layer;
function showImage() {
// 타일이미지 url
var url= "http://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}";
var bound = new L.LatLngBounds([ [34.3, 126.56], [42.9, 131.9] ]);
layer = L.tileLayer(url,{
opacity: 0.6, //레이어 투명도 (범위: 0.0 ~ 1.0)
bounds:bound // 지도에 표시될 구간을 설정합니다.
}).addTo(mymap); // 지도 영역에 타일 레이어를 추가합니다
}
function hideImage() {
mymap.removeLayer(layer); // 지도 영역에 타일 레이어를 삭제합니다
layer = null;
}