UNPKG

ol-layerlist

Version:

Layer switcher control for OpenLayers v3/v4/v5

32 lines (30 loc) 1.12 kB
<!DOCTYPE html> <html> <head> <title>ol3-layerswitcher spec runner</title> <meta charset="utf-8"> <link rel="stylesheet" type="text/css" href="../node_modules/mocha/mocha.css"> <link rel="stylesheet" href="../node_modules/openlayers/css/ol.css" /> <link rel="stylesheet" type="text/css" href="../src/ol3-layerswitcher.css"> </head> <body> <div id="mocha"></div> <script type="text/javascript" src="../node_modules/jquery/dist/jquery.js"></script> <script type="text/javascript" src="../node_modules/expect.js/index.js"></script> <script type="text/javascript" src="../node_modules/mocha/mocha.js"></script> <script type="text/javascript" src="../node_modules/lodash/dist/lodash.js"></script> <script> mocha.setup({ ui: 'bdd', bail: false }); </script> <script src="../node_modules/openlayers/dist/ol.js"></script> <script type="text/javascript" src="../src/ol3-layerswitcher.js"></script> <script type="text/javascript" src="spec/ol3-layerswitcher.js"></script> <script type="text/javascript" src="spec/twomaps.js"></script> <script> mocha.run(); </script> </body> </html>