<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>拖拽和旋转</title>
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.1.1/css/ol.css"
type="text/css">
<script src="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.1.1/build/ol.js"></script>
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL"></script>
<script src="https://code.jquery.com/jquery-2.2.3.min.js"></script>
<style>
.map {
width: 100%;
height: 400px;
}
</style>
</head>
<body>
<div id="map" class="map"></div>
<script type="text/javascript">
var map = new ol.Map({
interactions:ol.interaction.defaults().extend([
new ol.interaction.DragRotateAndZoom()
]) ,
layers:[
new ol.layer.Tile({
source:new ol.source.OSM()
})
],
target:'map',
view:new ol.View({
center:[0,0],
zoom: 2
})
});
</script>
</body>
</html>
拖拽和旋转
于 2019-12-25 17:58:16 首次发布