geojson
Version:
Turn your geo data into GeoJSON
18 lines • 641 B
HTML
<html>
<head>
<meta charset="utf-8">
<title>GeoJSON Browser Tests</title>
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script type="text/javascript" src="../node_modules/mocha/mocha.js"></script>
<script type="text/javascript" src="../node_modules/expect.js/expect.js"></script>
<script type="text/javascript" src="../geojson.js"></script>
<script type="text/javascript">mocha.setup('bdd')</script>
<script type="text/javascript" src="test.js"></script>
<script type="text/javascript">
mocha.run();
</script>
</body>
</html>