boundingbox
Version:
Implements bounding boxes with usual functions like intersects. Can convert from/to Leaflet bounds and GeoJSON.
22 lines (19 loc) • 471 B
HTML
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link href="node_modules/mocha/mocha.css" rel="stylesheet" />
</head>
<body>
<div id="mocha"></div>
<script src="node_modules/mocha/mocha.js"></script>
<script src="node_modules/leaflet/dist/leaflet.js"></script>
<script>mocha.setup('bdd')</script>
<script src="all_tests.js"></script>
<script>
mocha.checkLeaks();
mocha.globals([]);
mocha.run();
</script>
</body>
</html>