ํฐ์คํ ๋ฆฌ ๋ทฐ
์นดํ
๊ณ ๋ฆฌ ์์
[ Openlayers ] openlayers ์์ vworld ๋ฐฐ๊ฒฝ์ง๋ ์ฌ์ฉํ๊ธฐ
Kithub 2020. 3. 25. 00:09๋ฐ์ํ
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.2.1/css/ol.css" type="text/css">
<style>
.map {
height: 400px;
width: 100%;
}
</style>
<script src="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.2.1/build/ol.js"></script>
<title>๋งต ๋์ฐ๊ธฐ</title>
</head>
<body>
<h2>My Map</h2>
<div id="map" class="map"></div>
<script type="text/javascript">
var map = new ol.Map({
target: 'map',
layers: [
new ol.layer.Tile({
source: new ol.source.XYZ({
//Vworld Tile ๋ณ๊ฒฝ
url: 'http://xdworld.vworld.kr:8080/2d/Base/201802/{z}/{x}/{y}.png'
})
})
],
view: new ol.View({
center: [14126669.41589247, 4493404.190498611], //4326 ์ขํ๊ณ
zoom: 12,
minZoom: 8,
maxZoom: 19
})
});
</script>
</body>
</html>
๋ฐ์ํ
๋๊ธ