Skip to content

Instantly share code, notes, and snippets.

View geospatialem's full-sized avatar
🌎
Mapping the world one commit at a time

Kitty Hurley geospatialem

🌎
Mapping the world one commit at a time
View GitHub Profile
@geospatialem
geospatialem / HighlandParkLibrary.geojson
Last active August 29, 2015 14:24
July 2015 Maptime Location
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<link rel="stylesheet" href="//cdn.leafletjs.com/leaflet-0.7.3/leaflet.css">
<script src="//cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
<div id="map" style="width: 600px; height: 400px"></div>
<script>
var geojson = {
"type": "FeatureCollection",
"features": [
{ "type": "Feature", "id": 0, "properties": { "NAME": "Duluth Entertainment Convention Center (DECC)" }, "geometry": { "type": "Point", "coordinates": [ -92.097675, 46.781194 ] } }
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
map.on("overlayadd", function(a) {
console.log(a);
//loop through the overlays and add an element to it using i++
//and associate with the proper tab (?)
});
@geospatialem
geospatialem / index.html
Last active December 28, 2016 20:31
Bootstrap Screen Reader Only Class Activity
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
</head>
<body>