leaflet-mapbox-vector-tile
Version:
A Leaflet Plugin that renders Mapbox Vector Tiles on HTML5 Canvas.
24 lines (23 loc) • 637 B
HTML
<html>
<head>
<title>GADM</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../lib/Leaflet/leaflet-0.7.3/leaflet.css"/>
<style>
#map {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<script src="../lib/jQuery/jQuery-2.1.1.min.js"></script>
<script src="../lib/Leaflet/leaflet-0.7.3/leaflet-src.js"></script>
<script src="../dist/Leaflet.MapboxVectorTile.js"></script>
<script src="gadm.js"></script>
</body>
</html>