-
Book Overview & Buying
-
Table Of Contents
Mastering OpenLayers 3
By :
If you look up the examples for this chapter, you will see some files with the ch03_layertree prefix. These files contain the first example. In this example, we will build the base of our layer tree and add the two layers from the previous example to it. First, take a look at the HTML file. We only add one single div element to the map, which we will dynamically fill with content:
[...]
<div id="layertree" class="layertree"></div>
<div id="map" class="map">
[...]In the next step, we will style the content of the layer tree with CSS. If you look at the CSS file for the example, you can see that there are quite a lot declarations in it. First, we will create some rules for the whole element:
.layertree {
width: 20%;
height: calc(100% - 3.5em);
float: left;
[...]
}In spite of not showing the full HTML and CSS code here, in order to preserve valuable space, you must use the full versions from the example...
Change the font size
Change margin width
Change background colour