ol-ext/examples/interaction/map.interaction.snapguides.html
2024-06-26 16:24:06 +02:00

120 lines
4.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<!--
Copyright (c) 2016-2018 Jean-Marc VIGLINO,
released under CeCILL-B (french BSD like) licence: http://www.cecill.info/
-->
<title>ol-ext: Snap guides interaction</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="an Openlayers interaction to draw regular polygon" />
<meta name="keywords" content="openlayers, interaction, draw, regular, polygon, snap, guide, square" />
<link rel="stylesheet" href="../style.css" />
<!-- jQuery -->
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<!-- FontAwesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Openlayers -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/ol@latest/ol.css" />
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ol@latest/dist/ol.js"></script>
<!-- ol-ext -->
<link rel="stylesheet" href="../../dist/ol-ext.css" />
<script type="text/javascript" src="../../dist/ol-ext.js"></script>
<!-- Pointer events polyfill for old browsers, see https://caniuse.com/#feat=pointer -->
<script src="https://unpkg.com/elm-pep"></script>
</head>
<body >
<a href="https://github.com/Viglino/ol-ext" class="icss-github-corner"><i></i></a>
<a href="../../index.html">
<h1>ol-ext: Snap guides interaction</h1>
</a>
<div class="info">
<b>ol.interaction.SnapGuide</b> handles snapping of vector features using guides lines while modifying or drawing them.
<br/>
The snap interaction modifies map browser event coordinate and pixel properties to force the snap to occur
to any interaction that them.
<ul>
<li>
You can add guidelines to snap to.
</li><li>
You can set an <i>ol.interaction.Draw</i> (setDrawInteraction)to control orthogonal drawing (similar to <a href="https://github.com/geops/ole">OLE snapping</a> with OL2).
</li><li>
You can also set an <i>ol.interaction.Modify</i> (setModifyInteraction) to control orthogonal drawing while modifying.
</li><li>
<b>With ol6</b> use <i>ol/layer/VectorImage</i> class as <i>vectorClass</i> options to enhance drawing performances.
</li>
</ul>
</div>
<!-- Map div -->
<div id="map" style="width:600px; height:400px;"></div>
<div class="options" >
<h2>Options:</h2>
<ul><li>
<label><input type="checkbox" onchange="setInitial(this.checked)" /> use initial guides</label>
</li></ul>
<button onclick="addMeridian(0)">Add a Greenwich origin guideline</button>
</div>
<script type="text/javascript">
// Layers
var layers = [ new ol.layer.Tile({ source: new ol.source.OSM() }) ];
// The map
var map = new ol.Map ({
target: 'map',
view: new ol.View ({
zoom: 17,
center: [0, 6713891]
}),
layers: layers
});
// New vector layer
var vector = new ol.layer.Vector({
name: 'Vecteur',
source: new ol.source.Vector({ features: new ol.Collection() }),
})
map.addLayer(vector);
var drawi = new ol.interaction.Draw({
source: vector.getSource(),
//type: "LineString"
type: "Polygon"
});
map.addInteraction(drawi);
var modi = new ol.interaction.ModifyFeature({ source: vector.getSource() });
map.addInteraction(modi);
var snapi = new ol.interaction.SnapGuides({
vectorClass: ol.layer.VectorImage
});
snapi.setDrawInteraction(drawi);
snapi.setModifyInteraction(modi);
map.addInteraction(snapi);
// New guide on meridian (default Greenwich)
function addMeridian (x) {
var p1 = ol.proj.transform([x||0,1], 'EPSG:4326', map.getView().getProjection());
var p2 = ol.proj.transform([x||0,-1], 'EPSG:4326', map.getView().getProjection());
snapi.addGuide([ p1, p2 ]);
};
// Switch initial condition
function setInitial (b) {
snapi.enableInitialGuides_ = b;
};
</script>
</body>
</html>