D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
w8r
Full window
Github gist
OpenLayers, Rollup, and Closure Compiler
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Using OpenLayers with Rollup and the Closure Compiler</title> <link rel="stylesheet" href="https://openlayers.org/en/latest/css/ol.css" type="text/css"> <style> html, body { margin: 0; height: 100%; } #map { position: absolute; top: 0; bottom: 0; width: 100%; } </style> </head> <body> <div id="map"></div> <script src="./bundle.js"></script> </body> </html>