Skip to content

Instantly share code, notes, and snippets.

@mapsense-examples
Last active August 29, 2015 14:26
Show Gist options
  • Save mapsense-examples/02044c0685edf5d60c72 to your computer and use it in GitHub Desktop.
Save mapsense-examples/02044c0685edf5d60c72 to your computer and use it in GitHub Desktop.
Bounded Voronoi
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="http://d3js.org/topojson.v1.min.js" charset="utf-8"></script>
<script src="https://developer.mapsense.co/mapsense.js" charset="utf-8"></script>
<link type="text/css" href="https://developer.mapsense.co/mapsense.css" rel="stylesheet"/>
<style>
html, body, #myMap{
height: 100%;
width: 100%;
margin: 0; padding: 0;
}
.map {
background-color: white;
width: 100%;
height: 100%;
}
.mapFeatures {
vector-effect: non-scaling-stroke;
stroke: grey;
fill : none;
}
.tile-background {
fill: white;
}
.cell{
fill: rgba(0,0,0,.5);
stroke: rgba(68, 167, 228, 1); /*blue*/
}
.cell:hover{
fill: rgba(0,0,0,.2);
cursor: pointer;
}
.seed{
fill: steelblue;
fill-opacity: .8;
stroke: white;
}
</style>
</head>
<body>
<div id="myMap"></div>
<script>
// Extent of map
var us = [
{lon: -124.8, lat: 25.0},
{lon: -67, lat: 49.5}
];
var map = mapsense.map("#myMap"); //tell it where to go
map.add(
mapsense.basemap()
.apiKey("key-2d5eacd8b924489c8ed5e8418bd883bc")
)
.extent(us);
// Add geojsons
d3.json("voronoi.geojson", function(data){
map.add(mapsense.geoJson()
.features(data.features)
.selection(function(d){
d.attr("class", "cell");
})
);
d3.json("points.geojson", function(data){
map.add(mapsense.geoJson()
.features(data.features)
.selection(function(d){
d.attr("class", "seed");
})
);
});
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type": "FeatureCollection", "features": [{"geometry": {"type": "Point", "coordinates": [-87.05, 31.14]}, "type": "Feature", "properties": {"id": "63899"}}, {"geometry": {"type": "Point", "coordinates": [-86.61, 32.85]}, "type": "Feature", "properties": {"id": "63891"}}, {"geometry": {"type": "Point", "coordinates": [-87.35, 34.66]}, "type": "Feature", "properties": {"id": "63868"}}, {"geometry": {"type": "Point", "coordinates": [-86.8, 34.2]}, "type": "Feature", "properties": {"id": "63867"}}, {"geometry": {"type": "Point", "coordinates": [-87.88, 30.55]}, "type": "Feature", "properties": {"id": "63869"}}, {"geometry": {"type": "Point", "coordinates": [-85.96, 34.29]}, "type": "Feature", "properties": {"id": "63857"}}, {"geometry": {"type": "Point", "coordinates": [-88.14, 32.84]}, "type": "Feature", "properties": {"id": "63892"}}, {"geometry": {"type": "Point", "coordinates": [-87.62, 32.72]}, "type": "Feature", "properties": {"id": "63893"}}, {"geometry": {"type": "Point", "coordinates": [-86.31, 31.92]}, "type": "Feature", "properties": {"id": "73802"}}, {"geometry": {"type": "Point", "coordinates": [-87.64, 34.77]}, "type": "Feature", "properties": {"id": "63894"}}, {"geometry": {"type": "Point", "coordinates": [-87.59, 33.21]}, "type": "Feature", "properties": {"id": "73801"}}, {"geometry": {"type": "Point", "coordinates": [-87.71, 34.45]}, "type": "Feature", "properties": {"id": "63895"}}, {"geometry": {"type": "Point", "coordinates": [-86.0, 34.69]}, "type": "Feature", "properties": {"id": "63896"}}, {"geometry": {"type": "Point", "coordinates": [-87.24, 32.46]}, "type": "Feature", "properties": {"id": "63858"}}, {"geometry": {"type": "Point", "coordinates": [-86.98, 32.33]}, "type": "Feature", "properties": {"id": "63897"}}, {"geometry": {"type": "Point", "coordinates": [-86.06, 33.57]}, "type": "Feature", "properties": {"id": "73803"}}, {"geometry": {"type": "Point", "coordinates": [-87.74, 31.88]}, "type": "Feature", "properties": {"id": "23802"}}, {"geometry": {"type": "Point", "coordinates": [-86.0, 31.79]}, "type": "Feature", "properties": {"id": "23801"}}, {"geometry": {"type": "Point", "coordinates": [-85.62, 34.57]}, "type": "Feature", "properties": {"id": "63862"}}, {"geometry": {"type": "Point", "coordinates": [-91.78, 35.82]}, "type": "Feature", "properties": {"id": "23904"}}, {"geometry": {"type": "Point", "coordinates": [-112.8, 31.95]}, "type": "Feature", "properties": {"id": "53168"}}, {"geometry": {"type": "Point", "coordinates": [-111.45, 31.69]}, "type": "Feature", "properties": {"id": "53006"}}, {"geometry": {"type": "Point", "coordinates": [-109.39, 32.01]}, "type": "Feature", "properties": {"id": "03085"}}, {"geometry": {"type": "Point", "coordinates": [-111.34, 35.5]}, "type": "Feature", "properties": {"id": "53159"}}, {"geometry": {"type": "Point", "coordinates": [-111.84, 34.61]}, "type": "Feature", "properties": {"id": "53160"}}, {"geometry": {"type": "Point", "coordinates": [-111.53, 32.99]}, "type": "Feature", "properties": {"id": "53162"}}, {"geometry": {"type": "Point", "coordinates": [-110.51, 31.59]}, "type": "Feature", "properties": {"id": "53132"}}, {"geometry": {"type": "Point", "coordinates": [-112.45, 36.86]}, "type": "Feature", "properties": {"id": "53183"}}, {"geometry": {"type": "Point", "coordinates": [-112.67, 32.96]}, "type": "Feature", "properties": {"id": "53176"}}, {"geometry": {"type": "Point", "coordinates": [-110.57, 34.4]}, "type": "Feature", "properties": {"id": "53170"}}, {"geometry": {"type": "Point", "coordinates": [-109.89, 34.82]}, "type": "Feature", "properties": {"id": "03077"}}, {"geometry": {"type": "Point", "coordinates": [-110.54, 36.68]}, "type": "Feature", "properties": {"id": "53169"}}, {"geometry": {"type": "Point", "coordinates": [-113.93, 35.26]}, "type": "Feature", "properties": {"id": "53180"}}, {"geometry": {"type": "Point", "coordinates": [-114.13, 34.25]}, "type": "Feature", "properties": {"id": "53172"}}, {"geometry": {"type": "Point", "coordinates": [-114.04, 36.09]}, "type": "Feature", "properties": {"id": "53184"}}, {"geometry": {"type": "Point", "coordinates": [-111.6, 36.86]}, "type": "Feature", "properties": {"id": "53164"}}, {"geometry": {"type": "Point", "coordinates": [-112.08, 33.35]}, "type": "Feature", "properties": {"id": "53156"}}, {"geometry": {"type": "Point", "coordinates": [-109.63, 32.86]}, "type": "Feature", "properties": {"id": "53181"}}, {"geometry": {"type": "Point", "coordinates": [-111.17, 32.24]}, "type": "Feature", "properties": {"id": "53131"}}, {"geometry": {"type": "Point", "coordinates": [-109.98, 33.82]}, "type": "Feature", "properties": {"id": "53019"}}, {"geometry": {"type": "Point", "coordinates": [-112.34, 35.76]}, "type": "Feature", "properties": {"id": "53155"}}, {"geometry": {"type": "Point", "coordinates": [-114.19, 32.84]}, "type": "Feature", "properties": {"id": "53154"}}, {"geometry": {"type": "Point", "coordinates": [-123.07, 38.32]}, "type": "Feature", "properties": {"id": "93245"}}, {"geometry": {"type": "Point", "coordinates": [-117.19, 33.44]}, "type": "Feature", "properties": {"id": "53151"}}, {"geometry": {"type": "Point", "coordinates": [-120.88, 37.24]}, "type": "Feature", "properties": {"id": "93243"}}, {"geometry": {"type": "Point", "coordinates": [-122.61, 40.65]}, "type": "Feature", "properties": {"id": "04222"}}, {"geometry": {"type": "Point", "coordinates": [-119.88, 34.41]}, "type": "Feature", "properties": {"id": "53152"}}, {"geometry": {"type": "Point", "coordinates": [-117.14, 36.6]}, "type": "Feature", "properties": {"id": "53139"}}, {"geometry": {"type": "Point", "coordinates": [-119.82, 37.76]}, "type": "Feature", "properties": {"id": "53150"}}, {"geometry": {"type": "Point", "coordinates": [-103.14, 40.16]}, "type": "Feature", "properties": {"id": "94092"}}, {"geometry": {"type": "Point", "coordinates": [-105.54, 40.04]}, "type": "Feature", "properties": {"id": "94075"}}, {"geometry": {"type": "Point", "coordinates": [-106.12, 38.81]}, "type": "Feature", "properties": {"id": "53005"}}, {"geometry": {"type": "Point", "coordinates": [-106.14, 37.71]}, "type": "Feature", "properties": {"id": "03084"}}, {"geometry": {"type": "Point", "coordinates": [-105.09, 39.09]}, "type": "Feature", "properties": {"id": "53007"}}, {"geometry": {"type": "Point", "coordinates": [-108.5, 37.26]}, "type": "Feature", "properties": {"id": "03061"}}, {"geometry": {"type": "Point", "coordinates": [-107.61, 40.95]}, "type": "Feature", "properties": {"id": "03099"}}, {"geometry": {"type": "Point", "coordinates": [-108.97, 40.24]}, "type": "Feature", "properties": {"id": "94082"}}, {"geometry": {"type": "Point", "coordinates": [-102.5, 38.54]}, "type": "Feature", "properties": {"id": "03078"}}, {"geometry": {"type": "Point", "coordinates": [-106.73, 39.48]}, "type": "Feature", "properties": {"id": "03098"}}, {"geometry": {"type": "Point", "coordinates": [-103.52, 39.79]}, "type": "Feature", "properties": {"id": "03093"}}, {"geometry": {"type": "Point", "coordinates": [-108.74, 39.1]}, "type": "Feature", "properties": {"id": "03076"}}, {"geometry": {"type": "Point", "coordinates": [-103.5, 37.22]}, "type": "Feature", "properties": {"id": "03091"}}, {"geometry": {"type": "Point", "coordinates": [-103.82, 37.86]}, "type": "Feature", "properties": {"id": "03063"}}, {"geometry": {"type": "Point", "coordinates": [-108.2, 40.08]}, "type": "Feature", "properties": {"id": "94094"}}, {"geometry": {"type": "Point", "coordinates": [-107.69, 38.54]}, "type": "Feature", "properties": {"id": "03060"}}, {"geometry": {"type": "Point", "coordinates": [-104.76, 40.81]}, "type": "Feature", "properties": {"id": "94074"}}, {"geometry": {"type": "Point", "coordinates": [-108.13, 39.76]}, "type": "Feature", "properties": {"id": "03096"}}, {"geometry": {"type": "Point", "coordinates": [-103.69, 38.04]}, "type": "Feature", "properties": {"id": "03089"}}, {"geometry": {"type": "Point", "coordinates": [-106.17, 38.1]}, "type": "Feature", "properties": {"id": "03079"}}, {"geometry": {"type": "Point", "coordinates": [-102.72, 37.38]}, "type": "Feature", "properties": {"id": "03086"}}, {"geometry": {"type": "Point", "coordinates": [-102.62, 39.66]}, "type": "Feature", "properties": {"id": "03083"}}, {"geometry": {"type": "Point", "coordinates": [-105.26, 38.91]}, "type": "Feature", "properties": {"id": "03088"}}, {"geometry": {"type": "Point", "coordinates": [-81.32, 25.9]}, "type": "Feature", "properties": {"id": "92826"}}, {"geometry": {"type": "Point", "coordinates": [-81.37, 27.15]}, "type": "Feature", "properties": {"id": "92827"}}, {"geometry": {"type": "Point", "coordinates": [-80.69, 28.62]}, "type": "Feature", "properties": {"id": "92821"}}, {"geometry": {"type": "Point", "coordinates": [-81.46, 30.81]}, "type": "Feature", "properties": {"id": "63856"}}, {"geometry": {"type": "Point", "coordinates": [-84.45, 31.19]}, "type": "Feature", "properties": {"id": "63829"}}, {"geometry": {"type": "Point", "coordinates": [-84.47, 31.31]}, "type": "Feature", "properties": {"id": "63828"}}, {"geometry": {"type": "Point", "coordinates": [-83.39, 33.78]}, "type": "Feature", "properties": {"id": "63850"}}, {"geometry": {"type": "Point", "coordinates": [-93.29, 41.56]}, "type": "Feature", "properties": {"id": "54902"}}, {"geometry": {"type": "Point", "coordinates": [-113.56, 43.46]}, "type": "Feature", "properties": {"id": "04126"}}, {"geometry": {"type": "Point", "coordinates": [-116.75, 43.2]}, "type": "Feature", "properties": {"id": "04127"}}, {"geometry": {"type": "Point", "coordinates": [-88.37, 40.05]}, "type": "Feature", "properties": {"id": "54808"}}, {"geometry": {"type": "Point", "coordinates": [-88.85, 41.84]}, "type": "Feature", "properties": {"id": "54811"}}, {"geometry": {"type": "Point", "coordinates": [-86.57, 38.89]}, "type": "Feature", "properties": {"id": "63898"}}, {"geometry": {"type": "Point", "coordinates": [-96.61, 39.1]}, "type": "Feature", "properties": {"id": "53974"}}, {"geometry": {"type": "Point", "coordinates": [-100.96, 38.87]}, "type": "Feature", "properties": {"id": "03067"}}, {"geometry": {"type": "Point", "coordinates": [-86.23, 37.25]}, "type": "Feature", "properties": {"id": "63849"}}, {"geometry": {"type": "Point", "coordinates": [-84.75, 38.09]}, "type": "Feature", "properties": {"id": "63838"}}, {"geometry": {"type": "Point", "coordinates": [-91.87, 30.09]}, "type": "Feature", "properties": {"id": "53960"}}, {"geometry": {"type": "Point", "coordinates": [-92.12, 32.88]}, "type": "Feature", "properties": {"id": "53961"}}, {"geometry": {"type": "Point", "coordinates": [-67.88, 46.96]}, "type": "Feature", "properties": {"id": "94645"}}, {"geometry": {"type": "Point", "coordinates": [-68.7, 44.93]}, "type": "Feature", "properties": {"id": "94644"}}, {"geometry": {"type": "Point", "coordinates": [-86.92, 46.33]}, "type": "Feature", "properties": {"id": "54810"}}, {"geometry": {"type": "Point", "coordinates": [-84.72, 44.91]}, "type": "Feature", "properties": {"id": "54854"}}, {"geometry": {"type": "Point", "coordinates": [-95.87, 48.31]}, "type": "Feature", "properties": {"id": "04994"}}, {"geometry": {"type": "Point", "coordinates": [-92.99, 46.11]}, "type": "Feature", "properties": {"id": "54932"}}, {"geometry": {"type": "Point", "coordinates": [-93.15, 39.87]}, "type": "Feature", "properties": {"id": "13301"}}, {"geometry": {"type": "Point", "coordinates": [-94.58, 37.43]}, "type": "Feature", "properties": {"id": "23908"}}, {"geometry": {"type": "Point", "coordinates": [-91.72, 37.63]}, "type": "Feature", "properties": {"id": "23909"}}, {"geometry": {"type": "Point", "coordinates": [-89.43, 34.82]}, "type": "Feature", "properties": {"id": "23803"}}, {"geometry": {"type": "Point", "coordinates": [-89.07, 32.34]}, "type": "Feature", "properties": {"id": "63831"}}, {"geometry": {"type": "Point", "coordinates": [-113.01, 45.16]}, "type": "Feature", "properties": {"id": "04137"}}, {"geometry": {"type": "Point", "coordinates": [-110.29, 46.88]}, "type": "Feature", "properties": {"id": "04140"}}, {"geometry": {"type": "Point", "coordinates": [-113.43, 48.74]}, "type": "Feature", "properties": {"id": "04130"}}, {"geometry": {"type": "Point", "coordinates": [-105.1, 48.31]}, "type": "Feature", "properties": {"id": "94060"}}, {"geometry": {"type": "Point", "coordinates": [-105.21, 48.49]}, "type": "Feature", "properties": {"id": "94059"}}, {"geometry": {"type": "Point", "coordinates": [-82.56, 35.42]}, "type": "Feature", "properties": {"id": "53878"}}, {"geometry": {"type": "Point", "coordinates": [-82.61, 35.49]}, "type": "Feature", "properties": {"id": "53877"}}, {"geometry": {"type": "Point", "coordinates": [-79.09, 35.97]}, "type": "Feature", "properties": {"id": "03758"}}, {"geometry": {"type": "Point", "coordinates": [-99.48, 46.77]}, "type": "Feature", "properties": {"id": "54937"}}, {"geometry": {"type": "Point", "coordinates": [-103.38, 46.89]}, "type": "Feature", "properties": {"id": "94080"}}, {"geometry": {"type": "Point", "coordinates": [-102.17, 48.97]}, "type": "Feature", "properties": {"id": "94084"}}, {"geometry": {"type": "Point", "coordinates": [-103.74, 42.42]}, "type": "Feature", "properties": {"id": "94077"}}, {"geometry": {"type": "Point", "coordinates": [-96.85, 40.7]}, "type": "Feature", "properties": {"id": "94996"}}, {"geometry": {"type": "Point", "coordinates": [-96.57, 40.85]}, "type": "Feature", "properties": {"id": "94995"}}, {"geometry": {"type": "Point", "coordinates": [-101.44, 42.07]}, "type": "Feature", "properties": {"id": "94079"}}, {"geometry": {"type": "Point", "coordinates": [-70.93, 43.17]}, "type": "Feature", "properties": {"id": "54794"}}, {"geometry": {"type": "Point", "coordinates": [-70.95, 43.11]}, "type": "Feature", "properties": {"id": "54795"}}, {"geometry": {"type": "Point", "coordinates": [-104.46, 32.85]}, "type": "Feature", "properties": {"id": "53002"}}, {"geometry": {"type": "Point", "coordinates": [-107.22, 36.75]}, "type": "Feature", "properties": {"id": "53017"}}, {"geometry": {"type": "Point", "coordinates": [-105.89, 33.65]}, "type": "Feature", "properties": {"id": "03082"}}, {"geometry": {"type": "Point", "coordinates": [-103.12, 36.47]}, "type": "Feature", "properties": {"id": "03094"}}, {"geometry": {"type": "Point", "coordinates": [-103.17, 34.51]}, "type": "Feature", "properties": {"id": "53008"}}, {"geometry": {"type": "Point", "coordinates": [-103.84, 33.81]}, "type": "Feature", "properties": {"id": "53022"}}, {"geometry": {"type": "Point", "coordinates": [-107.83, 35.12]}, "type": "Feature", "properties": {"id": "53003"}}, {"geometry": {"type": "Point", "coordinates": [-108.2, 31.89]}, "type": "Feature", "properties": {"id": "53025"}}, {"geometry": {"type": "Point", "coordinates": [-104.16, 33.09]}, "type": "Feature", "properties": {"id": "53015"}}, {"geometry": {"type": "Point", "coordinates": [-106.74, 32.61]}, "type": "Feature", "properties": {"id": "03074"}}, {"geometry": {"type": "Point", "coordinates": [-105.14, 35.66]}, "type": "Feature", "properties": {"id": "53024"}}, {"geometry": {"type": "Point", "coordinates": [-106.52, 35.86]}, "type": "Feature", "properties": {"id": "03062"}}, {"geometry": {"type": "Point", "coordinates": [-104.36, 36.06]}, "type": "Feature", "properties": {"id": "03095"}}, {"geometry": {"type": "Point", "coordinates": [-106.27, 34.52]}, "type": "Feature", "properties": {"id": "03097"}}, {"geometry": {"type": "Point", "coordinates": [-107.9, 36.03]}, "type": "Feature", "properties": {"id": "53173"}}, {"geometry": {"type": "Point", "coordinates": [-105.34, 32.51]}, "type": "Feature", "properties": {"id": "53026"}}, {"geometry": {"type": "Point", "coordinates": [-108.36, 35.05]}, "type": "Feature", "properties": {"id": "53009"}}, {"geometry": {"type": "Point", "coordinates": [-103.98, 36.78]}, "type": "Feature", "properties": {"id": "03092"}}, {"geometry": {"type": "Point", "coordinates": [-108.78, 33.71]}, "type": "Feature", "properties": {"id": "03080"}}, {"geometry": {"type": "Point", "coordinates": [-106.32, 35.82]}, "type": "Feature", "properties": {"id": "03087"}}, {"geometry": {"type": "Point", "coordinates": [-107.19, 33.98]}, "type": "Feature", "properties": {"id": "53163"}}, {"geometry": {"type": "Point", "coordinates": [-106.89, 34.36]}, "type": "Feature", "properties": {"id": "03048"}}, {"geometry": {"type": "Point", "coordinates": [-105.97, 36.65]}, "type": "Feature", "properties": {"id": "03090"}}, {"geometry": {"type": "Point", "coordinates": [-104.93, 34.14]}, "type": "Feature", "properties": {"id": "53016"}}, {"geometry": {"type": "Point", "coordinates": [-114.21, 39.01]}, "type": "Feature", "properties": {"id": "53138"}}, {"geometry": {"type": "Point", "coordinates": [-119.64, 41.85]}, "type": "Feature", "properties": {"id": "04139"}}, {"geometry": {"type": "Point", "coordinates": [-116.02, 36.62]}, "type": "Feature", "properties": {"id": "53136"}}, {"geometry": {"type": "Point", "coordinates": [-76.25, 42.44]}, "type": "Feature", "properties": {"id": "64758"}}, {"geometry": {"type": "Point", "coordinates": [-73.74, 41.79]}, "type": "Feature", "properties": {"id": "64756"}}, {"geometry": {"type": "Point", "coordinates": [-81.78, 40.37]}, "type": "Feature", "properties": {"id": "54851"}}, {"geometry": {"type": "Point", "coordinates": [-101.59, 36.6]}, "type": "Feature", "properties": {"id": "03055"}}, {"geometry": {"type": "Point", "coordinates": [-101.61, 36.57]}, "type": "Feature", "properties": {"id": "53182"}}, {"geometry": {"type": "Point", "coordinates": [-97.09, 36.12]}, "type": "Feature", "properties": {"id": "53926"}}, {"geometry": {"type": "Point", "coordinates": [-97.11, 36.13]}, "type": "Feature", "properties": {"id": "53927"}}, {"geometry": {"type": "Point", "coordinates": [-124.32, 43.27]}, "type": "Feature", "properties": {"id": "04141"}}, {"geometry": {"type": "Point", "coordinates": [-123.33, 44.42]}, "type": "Feature", "properties": {"id": "04236"}}, {"geometry": {"type": "Point", "coordinates": [-119.65, 44.56]}, "type": "Feature", "properties": {"id": "04125"}}, {"geometry": {"type": "Point", "coordinates": [-119.69, 43.47]}, "type": "Feature", "properties": {"id": "04128"}}, {"geometry": {"type": "Point", "coordinates": [-75.79, 39.86]}, "type": "Feature", "properties": {"id": "03761"}}, {"geometry": {"type": "Point", "coordinates": [-71.54, 41.49]}, "type": "Feature", "properties": {"id": "54796"}}, {"geometry": {"type": "Point", "coordinates": [-71.54, 41.48]}, "type": "Feature", "properties": {"id": "54797"}}, {"geometry": {"type": "Point", "coordinates": [-81.33, 33.36]}, "type": "Feature", "properties": {"id": "63826"}}, {"geometry": {"type": "Point", "coordinates": [-79.36, 33.15]}, "type": "Feature", "properties": {"id": "03728"}}, {"geometry": {"type": "Point", "coordinates": [-99.13, 45.71]}, "type": "Feature", "properties": {"id": "54933"}}, {"geometry": {"type": "Point", "coordinates": [-103.3, 45.52]}, "type": "Feature", "properties": {"id": "94081"}}, {"geometry": {"type": "Point", "coordinates": [-100.35, 44.02]}, "type": "Feature", "properties": {"id": "94085"}}, {"geometry": {"type": "Point", "coordinates": [-96.62, 43.73]}, "type": "Feature", "properties": {"id": "04990"}}, {"geometry": {"type": "Point", "coordinates": [-85.13, 36.01]}, "type": "Feature", "properties": {"id": "63855"}}, {"geometry": {"type": "Point", "coordinates": [-98.08, 30.62]}, "type": "Feature", "properties": {"id": "23907"}}, {"geometry": {"type": "Point", "coordinates": [-100.25, 32.04]}, "type": "Feature", "properties": {"id": "03072"}}, {"geometry": {"type": "Point", "coordinates": [-98.06, 26.53]}, "type": "Feature", "properties": {"id": "12987"}}, {"geometry": {"type": "Point", "coordinates": [-102.81, 31.62]}, "type": "Feature", "properties": {"id": "03047"}}, {"geometry": {"type": "Point", "coordinates": [-102.77, 33.96]}, "type": "Feature", "properties": {"id": "03054"}}, {"geometry": {"type": "Point", "coordinates": [-95.72, 31.78]}, "type": "Feature", "properties": {"id": "53968"}}, {"geometry": {"type": "Point", "coordinates": [-103.21, 29.35]}, "type": "Feature", "properties": {"id": "22016"}}, {"geometry": {"type": "Point", "coordinates": [-96.82, 28.3]}, "type": "Feature", "properties": {"id": "23906"}}, {"geometry": {"type": "Point", "coordinates": [-112.38, 38.27]}, "type": "Feature", "properties": {"id": "53185"}}, {"geometry": {"type": "Point", "coordinates": [-109.61, 37.27]}, "type": "Feature", "properties": {"id": "53012"}}, {"geometry": {"type": "Point", "coordinates": [-109.99, 37.6]}, "type": "Feature", "properties": {"id": "53004"}}, {"geometry": {"type": "Point", "coordinates": [-112.54, 41.62]}, "type": "Feature", "properties": {"id": "04138"}}, {"geometry": {"type": "Point", "coordinates": [-113.22, 37.46]}, "type": "Feature", "properties": {"id": "53013"}}, {"geometry": {"type": "Point", "coordinates": [-112.51, 39.39]}, "type": "Feature", "properties": {"id": "53165"}}, {"geometry": {"type": "Point", "coordinates": [-112.68, 40.64]}, "type": "Feature", "properties": {"id": "94097"}}, {"geometry": {"type": "Point", "coordinates": [-109.39, 40.92]}, "type": "Feature", "properties": {"id": "94098"}}, {"geometry": {"type": "Point", "coordinates": [-109.99, 37.25]}, "type": "Feature", "properties": {"id": "53014"}}, {"geometry": {"type": "Point", "coordinates": [-111.41, 40.55]}, "type": "Feature", "properties": {"id": "53167"}}, {"geometry": {"type": "Point", "coordinates": [-113.75, 38.59]}, "type": "Feature", "properties": {"id": "53171"}}, {"geometry": {"type": "Point", "coordinates": [-109.62, 38.14]}, "type": "Feature", "properties": {"id": "53010"}}, {"geometry": {"type": "Point", "coordinates": [-110.75, 39.61]}, "type": "Feature", "properties": {"id": "53174"}}, {"geometry": {"type": "Point", "coordinates": [-111.24, 40.28]}, "type": "Feature", "properties": {"id": "04143"}}, {"geometry": {"type": "Point", "coordinates": [-109.85, 38.31]}, "type": "Feature", "properties": {"id": "53023"}}, {"geometry": {"type": "Point", "coordinates": [-111.29, 38.3]}, "type": "Feature", "properties": {"id": "53149"}}, {"geometry": {"type": "Point", "coordinates": [-111.98, 37.52]}, "type": "Feature", "properties": {"id": "03081"}}, {"geometry": {"type": "Point", "coordinates": [-109.64, 40.13]}, "type": "Feature", "properties": {"id": "94096"}}, {"geometry": {"type": "Point", "coordinates": [-75.93, 37.29]}, "type": "Feature", "properties": {"id": "03739"}}, {"geometry": {"type": "Point", "coordinates": [-78.47, 38.0]}, "type": "Feature", "properties": {"id": "03759"}}, {"geometry": {"type": "Point", "coordinates": [-121.45, 48.54]}, "type": "Feature", "properties": {"id": "04223"}}, {"geometry": {"type": "Point", "coordinates": [-123.81, 47.51]}, "type": "Feature", "properties": {"id": "04237"}}, {"geometry": {"type": "Point", "coordinates": [-117.53, 47.42]}, "type": "Feature", "properties": {"id": "04136"}}, {"geometry": {"type": "Point", "coordinates": [-90.17, 44.06]}, "type": "Feature", "properties": {"id": "54903"}}, {"geometry": {"type": "Point", "coordinates": [-79.47, 39.01]}, "type": "Feature", "properties": {"id": "03733"}}, {"geometry": {"type": "Point", "coordinates": [-108.67, 42.68]}, "type": "Feature", "properties": {"id": "94078"}}, {"geometry": {"type": "Point", "coordinates": [-110.71, 43.66]}, "type": "Feature", "properties": {"id": "04131"}}, {"geometry": {"type": "Point", "coordinates": [-104.44, 44.52]}, "type": "Feature", "properties": {"id": "94088"}}]}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment