Skip to content

Instantly share code, notes, and snippets.

@mapsmania
Last active October 12, 2019 15:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mapsmania/60abe5361b066d2f23b33e3333b8a4fa to your computer and use it in GitHub Desktop.
Save mapsmania/60abe5361b066d2f23b33e3333b8a4fa to your computer and use it in GitHub Desktop.
Forbes Field 1900-1915
<!DOCTYPE html>
<html>
<head>
<title>Forbes Field</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="docs/images/favicon.ico" />
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.5.1/dist/leaflet.css" integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ==" crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.5.1/dist/leaflet.js" integrity="sha512-GffPMF3RvMeYyc1LWMHtK8EbPv0iNZ8/oTtHPx9/cc2ILxQ+u905qIwdpULaqDkyBKgOaB57QTMg7ztg8Jm2Og==" crossorigin=""></script>
<style>
html, body {
height: 100%;
margin: 0;
}
#map {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id='map'></div>
<script>
var map = L.map('map', {
crs: L.CRS.Simple
});
var bounds = [[0,0], [862, 4310]];
var image = L.imageOverlay('https://i.imgur.com/WJkJ86B.jpg', bounds).addTo(map);
map.fitBounds(bounds);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment