forked from walkermatt/ol-layerswitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a820672
commit baec8cc
Showing
10 changed files
with
673 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
html, body { | ||
height: 100%; | ||
padding: 0; | ||
margin: 0; | ||
font-family: sans-serif; | ||
font-size: small; | ||
} | ||
|
||
#map { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
#group-select-style { | ||
position: absolute; | ||
top: 0.5em; | ||
right: 0.5em; | ||
z-index: 100; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>OpenLayers 3 - Selectable Groups</title> | ||
<meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width"> | ||
<link rel="stylesheet" href="https://openlayers.org/en/v5.3.0/css/ol.css" /> | ||
<link rel="stylesheet" href="../src/ol-layerswitcher.css" /> | ||
<link rel="stylesheet" href="select-groups.css" /> | ||
</head> | ||
<body> | ||
<div id="map"></div> | ||
<!-- The line below is only needed for old environments like Internet Explorer and Android 4.x --> | ||
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL"></script> | ||
<script src="https://openlayers.org/en/v5.3.0/build/ol.js"></script> | ||
<script src="../dist/ol-layerswitcher.js"></script> | ||
<script src="select-groups.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.