mirror of
https://github.com/Viglino/ol-ext.git
synced 2026-01-18 17:11:52 +00:00
112 lines
4.0 KiB
HTML
112 lines
4.0 KiB
HTML
<!DOCTYPE html>
|
|
<!----------------------------------------------------------
|
|
|
|
Copyright (c) 2015 Jean-Marc VIGLINO,
|
|
released under CeCILL-B (french BSD like) licence: http://www.cecill.info/
|
|
http://codepen.io/flashpremium/pen/kJvGo
|
|
|
|
------------------------------------------------------------>
|
|
<html>
|
|
<head>
|
|
<title>OL3-ext: Map in the clouds</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
<meta name="description" content="ol.control.cloud adds an animated clouds overlay on the map." />
|
|
<meta name="keywords" content="ol3, control, canvas, animation, cloud, bird" />
|
|
|
|
<link rel="stylesheet" href="style.css" />
|
|
|
|
<!-- jQuery -->
|
|
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
|
|
|
|
<!-- OL3 -->
|
|
<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>
|
|
|
|
<!-- -->
|
|
<link rel="stylesheet" href="../control/cloud.css" />
|
|
<script type="text/javascript" src="../control/cloudcontrol.js"></script>
|
|
|
|
<style>
|
|
#map
|
|
{ position: fixed;
|
|
top:5em;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width:100%;
|
|
background:transparent;
|
|
}
|
|
.options
|
|
{ position:fixed;
|
|
top:6em;
|
|
right:1em;
|
|
margin:0;
|
|
max-width:15%;
|
|
min-width:200px;
|
|
}
|
|
.options input
|
|
{ vertical-align: middle;
|
|
|
|
}
|
|
.options input[type="number"]
|
|
{ width: 5em;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
<body >
|
|
<a href="https://github.com/Viglino/ol3-ext"><img style="position: absolute; z-index:10; 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>OL3-ext: Map in the clouds</h1>
|
|
</a>
|
|
|
|
<!-- Map div -->
|
|
<div id="map" ></div>
|
|
|
|
<div class="options">
|
|
The <i>ol.control.Cloud</i> adds an animated clouds overlay on the map.
|
|
<h2>Options:</h2>
|
|
<ul>
|
|
<li>
|
|
Opacity: <input id="opacity" type="number" min="0" max="1" step="0.1" value="0.3" onchange="ctrl.set('opacity', Number(this.value));" />
|
|
</li><li>
|
|
Density: <input id="density" type="number" min="0" max="2" step="0.1" value="0.5" onchange="ctrl.set('density', Number(this.value));" />
|
|
</li><li>
|
|
Wind angle: <input id="wa" type="number" min="0" max="360" step="1" value="45" onchange="ctrl.setWind({ windAngle:Number($('#wa').val())*Math.PI/180, windSpeed:$('#ws').val()});" />
|
|
</li><li>
|
|
Wind speed: <input id="ws" type="number" min="0" max="5" step="0.5" value="1" onchange="ctrl.setWind({ windAngle:Number($('#wa').val())*Math.PI/180, windSpeed:$('#ws').val()});" />
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
var osm = new ol.layer.Tile({source: new ol.source.OSM()});
|
|
var esri = new ol.layer.Tile ({ source: new ol.source.XYZ(
|
|
{ url: "https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}.jpg",
|
|
attributions: [ new ol.Attribution({ html: '© <a href="http://www.arcgis.com/home/">Esri</a> ' }),
|
|
new ol.Attribution({ html: '© <a href="http://www.arcgis.com/home/">DigitalGlobe, Earthstar Geographics, CNES/Airbus DS, GeoEye, USDA FSA, USGS, Getmapping, Aerogrid, IGN, IGP, swisstopo</a> ' })
|
|
]
|
|
})
|
|
});
|
|
|
|
// The map
|
|
var map = new ol.Map
|
|
({ target: 'map',
|
|
view: new ol.View
|
|
({ zoom: 14,
|
|
center: [-305977, 6026830]
|
|
}),
|
|
layers: [esri]
|
|
});
|
|
map.getView().fit ([-375917, 5976764, -229158, 6025378], map.getSize());
|
|
|
|
var ctrl = new ol.control.Cloud({ opacity:$("#opacity").val(), density:$("#density").val(), windSpeed:Number($("#ws").val()), windAngle:Number($("#wa").val())*Math.PI/180 });
|
|
map.addControl(ctrl);
|
|
</script>
|
|
|
|
</body>
|
|
</html> |