Skip to content

Instantly share code, notes, and snippets.

@tmcw
Created March 29, 2013 01:53
Show Gist options
  • Save tmcw/5268239 to your computer and use it in GitHub Desktop.
Save tmcw/5268239 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Leaflet Point in Polygon</title>
<link rel='stylesheet' type='text/css' href='' />
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.5.1/leaflet.css" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.5.1/leaflet.ie.css" />
<![endif]-->
<script src="http://cdn.leafletjs.com/leaflet-0.5.1/leaflet.js"></script>
<style>
body {}
#map {
width:500px;
height:500px;
}
</style>
</head>
<body>
<div id='map'></div>
<script>
var map = new L.Map('map',
{
center: new L.LatLng(51.505, -0.09),
zoom: 8,
layers: new L.TileLayer('http://a.tiles.mapbox.com/v3/mapbox.world-bright/{z}/{x}/{y}.png')
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment