ol-hash
Simple OpenLayers plugin to save map view state in URL hash
usage
- import https://frogcat.github.io/ol-hash/ol-hash.js
- call
ol.hash(map)
example
Live demo is available here https://frogcat.github.io/ol-hash/ .
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://openlayers.org/en/v4.3.4/css/ol.css" type="text/css">
<style>
.map {
height: 400px;
width: 100%;
}
</style>
<script src="https://openlayers.org/en/v4.3.4/build/ol.js" type="text/javascript"></script>
<script src="ol-hash.js"></script>
<title>OpenLayers example</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.OSM()
})
],
view: new ol.View({
center: ol.proj.fromLonLat([37.41, 8.82]),
zoom: 4
})
});
ol.hash(map);
</script>
</body>
</html>