Change examples directory names to "examples"

This commit is contained in:
Éric Lemoine
2012-09-28 14:01:51 +02:00
parent 310d5bfeaa
commit 896f5203db
12 changed files with 16 additions and 16 deletions

20
examples/full-screen.html Normal file
View File

@@ -0,0 +1,20 @@
<!doctype html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width">
<style type="text/css">
html, body, #map {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
</style>
<link rel="stylesheet" href="../css/ol.css" type="text/css">
<title>ol3 full-screen demo</title>
</head>
<body>
<div id="map"></div>
<script src="loader.js?id=full-screen" type="text/javascript"></script>
</body>
</html>