ol-ext/examples/control/map.switcher.popup.html
2018-01-31 13:53:29 +01:00

111 lines
3.7 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<!----------------------------------------------------------
Copyright (c) 2016 Jean-Marc VIGLINO,
released under CeCILL-B (french BSD like) licence: http://www.cecill.info/
------------------------------------------------------------>
<title>ol-ext: Layerswitcher</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="A simple layerswitcher popup for OL3." />
<meta name="keywords" content="ol3, layer, layerswitcher, control, popup, jQuery" />
<!-- jQuery -->
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<!-- Openlayers -->
<link rel="stylesheet" href="https://openlayers.org/en/master/css/ol.css" />
<script type="text/javascript" src="https://openlayers.org/en/master/build/ol.js"></script>
<!-- ol-ext -->
<link rel="stylesheet" href="../../dist/ol-ext.css" />
<script type="text/javascript" src="../../dist/ol-ext.js"></script>
<link rel="stylesheet" href="../style.css" />
</head>
<body >
<a href="https://github.com/Viglino/ol3-ext"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
<a href="../../index.html">
<h1>ol-ext: LayerSwitcher control</h1>
</a>
<div class="info">
Add a simple popup layer switcher to the map. Only first level is enable in the popup.
<ul>
<li>
The <i>title</i> or <i>name</i> layer's property is used to named the ol.layer in the switcher.
</li>
<li>
It shows use of the <i>displayInLayerSwitcher</i> layer's property to cause it to not display in the LayerSwitcher
</li>
<li>
The <i>baseLayer</i> layer's property manage exclusive visibility on layers (only one base layer is shown at a time).
</li>
</ul>
</div>
<!-- DIV pour la carte -->
<div id="map" style="width:600px; height:400px;"></div>
<script type="text/javascript">
// Two base layers
var stamen = new ol.layer.Tile(
{ title: "Watercolor",
baseLayer: true,
source: new ol.source.Stamen({
layer: 'watercolor'
})
});
var stamen2 = new ol.layer.Tile(
{ title: "Toner",
baseLayer: true,
visible: false,
source: new ol.source.Stamen({
layer: 'toner'
})
});
var osm = new ol.layer.Tile(
{ title: "OSM",
baseLayer: true,
source: new ol.source.OSM(),
visible: false
});
// GeoJSON layer with a preview attribute
var vectorSource = new ol.source.Vector(
{ url: '../data/fond_guerre.geojson',
projection: 'EPSG:3857',
format: new ol.format.GeoJSON(),
attributions: [new ol.Attribution({ html: "&copy; <a href='https://www.data.gouv.fr/fr/datasets/fonds-de-la-guerre-14-18-extrait-de-la-base-memoire/'>data.gouv.fr</a>" })],
logo:"https://www.data.gouv.fr/s/avatars/37/e56718abd4465985ddde68b33be1ef.jpg"
});
var vector = new ol.layer.Vector(
{ name: '1914-18',
preview: "http://www.culture.gouv.fr/Wave/image/memoire/2445/sap40_z0004141_v.jpg",
source: vectorSource
});
// The map
var map = new ol.Map
({ target: 'map',
view: new ol.View
({ zoom: 6,
center: [173664, 6166327]
}),
controls: ol.control.defaults().extend
([ new ol.control.LayerPopup(),
]),
layers: [stamen, stamen2, osm, vector]
});
</script>
</body>
</html>