Skip to content

Instantly share code, notes, and snippets.

@tmcw
Forked from pdbartsch/README.md
Last active January 17, 2017 17:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tmcw/b718b0b0cc83c8d1a355 to your computer and use it in GitHub Desktop.
Save tmcw/b718b0b0cc83c8d1a355 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Turf.js Map</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src='https://api.tiles.mapbox.com/mapbox.js/v2.1.8/mapbox.js'></script>
<script src='https://api.tiles.mapbox.com/mapbox.js/plugins/turf/v2.0.0/turf.min.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox.js/v2.1.8/mapbox.css' rel='stylesheet' />
<style>
body {
margin:0;
padding:0;
}
#map {
position:absolute;
top:0;
bottom:0;
width:100%;
}
.info {
position:absolute;
top:10px;
right:10px;
}
.info div {
background:#fff;
padding:10px;
border-radius:3px;
}
</style>
</head>
<body>
<script src='https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-omnivore/v0.2.0/leaflet-omnivore.min.js'></script>
<div id='map'></div>
<div id='info' class='info'></div>
<script>
L.mapbox.accessToken = 'pk.eyJ1IjoicGRiYXJ0c2NoIiwiYSI6IktCQVRZSnMifQ.lkDvYfHPWix0mNfNqvdxEA';
var info = document.getElementById('info');
var map = L.mapbox.map('map', 'mapbox.light')
.setView([34.41411, -119.84852], 16);
function labelEachFeature(feature, layer) {
// do any layers have a property named label?
if (feature.properties && feature.properties.label) {
layer.bindPopup(feature.properties.label);
}
}
function getValue(x) {
return x === 'Primary' ? "#EEA9B3" :
x === 'Secondary' ? "#A9EEE4" :
"#000000";
}
function style(feature) {
return {
radius: 5,
fillColor: getValue(feature.properties.location_t),
color: "#000",
weight: 1,
opacity: 1,
fillOpacity: 0.8
};
}
var polyLayer = L.geoJson(null, {
style: function(feature) {
return { color: '#f00', weight: 1, opacity: 0.9
};
}
}).addTo(map);
var polys = omnivore.geojson('polys.geojson', null, polyLayer);
var ptsLayer = L.geoJson(null, {
onEachFeature: labelEachFeature,
pointToLayer: function (feature, latlng) {
return L.circleMarker(latlng, style(feature))
;}
}).addTo(map);
var pts = omnivore.geojson('pts.geojson', null, ptsLayer);
polyLayer.on('mouseover', function (e) {
e.layer.closePopup();
var feature = e.layer.feature;
var content = '<div><strong>' + feature.properties.bldg_no + '</strong>' +
'<p>' + feature.properties.bldgname + '</p></div>';
info.innerHTML = content;
});
map.on('move', empty);
empty();
function empty() {
info.innerHTML = '<div><strong>Hover over a building to locate<br>emergency assembly point(s)</strong></div>';
}
polyLayer.on('mouseover', function(e) {
var matchingPoints = turf.featurecollection([])
matchingPoints.features = pts.features.filter(function(pt) {
if(pt.properties.servesbldg === e.layer.feature.properties.bldg_no) return true
})
ptsLayer.setGeoJSON(matchingPoints);
});
function getPoints(building, pts) {
var matchingPoints = turf.featurecollection([])
matchingPoints.features = pts.features.filter(function(pt) {
if(pt.properties.servesbldg === building.properties.bldg_no) return true
})
return matchingPoints
}
</script>
</body>
</html>
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.
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.
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Turf.js Map</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<script src='https://api.tiles.mapbox.com/mapbox.js/v2.1.8/mapbox.js'></script>
<script src='https://api.tiles.mapbox.com/mapbox.js/plugins/turf/v2.0.0/turf.min.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox.js/v2.1.8/mapbox.css' rel='stylesheet' />
<style>
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; width:100%; }
.info {
position:absolute;
top:10px;
right:10px;
}
.info div {
background:#fff;
padding:10px;
border-radius:3px;
}
</style>
</head>
<body>
<div id='map'></div>
<div id='info' class='info'></div>
<script>
L.mapbox.accessToken = 'pk.eyJ1IjoicGRiYXJ0c2NoIiwiYSI6IktCQVRZSnMifQ.lkDvYfHPWix0mNfNqvdxEA';
var info = document.getElementById('info');
var map = L.mapbox.map('map', 'mapbox.light')
.setView([34.41411, -119.84852], 16);
var polys =
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "bldg_no": 538.0, "bldgname": "Campbell Hall" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.845018, 34.416321 ], [ -119.845013, 34.416303 ], [ -119.845017, 34.416318 ], [ -119.844979, 34.416326 ], [ -119.844973, 34.416304 ], [ -119.844969, 34.416282 ], [ -119.844968, 34.416259 ], [ -119.84497, 34.416236 ], [ -119.844975, 34.416214 ], [ -119.844979, 34.416201 ], [ -119.845017, 34.41621 ], [ -119.845017, 34.416212 ], [ -119.845022, 34.416197 ], [ -119.84503, 34.416181 ], [ -119.845039, 34.416165 ], [ -119.84505, 34.416149 ], [ -119.845063, 34.416135 ], [ -119.845078, 34.416121 ], [ -119.845093, 34.416109 ], [ -119.84511, 34.416098 ], [ -119.845128, 34.416088 ], [ -119.845147, 34.416079 ], [ -119.845167, 34.416072 ], [ -119.845188, 34.416066 ], [ -119.845209, 34.416062 ], [ -119.84523, 34.41606 ], [ -119.845252, 34.416059 ], [ -119.845273, 34.416059 ], [ -119.845295, 34.416061 ], [ -119.845316, 34.416065 ], [ -119.845337, 34.41607 ], [ -119.845357, 34.416076 ], [ -119.845376, 34.416084 ], [ -119.845395, 34.416094 ], [ -119.845412, 34.416104 ], [ -119.845428, 34.416116 ], [ -119.845443, 34.416129 ], [ -119.845457, 34.416143 ], [ -119.845469, 34.416158 ], [ -119.845479, 34.416174 ], [ -119.845488, 34.41619 ], [ -119.845495, 34.416207 ], [ -119.8455, 34.416225 ], [ -119.845503, 34.416242 ], [ -119.845504, 34.41626 ], [ -119.845504, 34.416278 ], [ -119.845501, 34.416296 ], [ -119.845497, 34.416314 ], [ -119.845491, 34.416331 ], [ -119.845483, 34.416347 ], [ -119.845473, 34.416364 ], [ -119.845462, 34.416379 ], [ -119.845449, 34.416393 ], [ -119.845435, 34.416407 ], [ -119.845419, 34.416419 ], [ -119.845402, 34.41643 ], [ -119.845384, 34.41644 ], [ -119.845365, 34.416449 ], [ -119.845345, 34.416456 ], [ -119.845325, 34.416462 ], [ -119.845304, 34.416466 ], [ -119.845282, 34.416468 ], [ -119.845261, 34.41647 ], [ -119.845239, 34.416469 ], [ -119.845218, 34.416467 ], [ -119.845196, 34.416463 ], [ -119.845176, 34.416458 ], [ -119.845156, 34.416452 ], [ -119.845136, 34.416444 ], [ -119.845118, 34.416435 ], [ -119.8451, 34.416424 ], [ -119.845084, 34.416412 ], [ -119.845069, 34.416399 ], [ -119.845056, 34.416385 ], [ -119.845044, 34.41637 ], [ -119.845033, 34.416354 ], [ -119.845025, 34.416338 ], [ -119.845018, 34.416321 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 521.0, "bldgname": "Bren Hall" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.84178, 34.413375 ], [ -119.841785, 34.413355 ], [ -119.841761, 34.413352 ], [ -119.841765, 34.413333 ], [ -119.841741, 34.413329 ], [ -119.841746, 34.413309 ], [ -119.841723, 34.413307 ], [ -119.841727, 34.413288 ], [ -119.841704, 34.413284 ], [ -119.841708, 34.413265 ], [ -119.841685, 34.413262 ], [ -119.841689, 34.413242 ], [ -119.841666, 34.413238 ], [ -119.84167, 34.413219 ], [ -119.841646, 34.413216 ], [ -119.84165, 34.413197 ], [ -119.841629, 34.413195 ], [ -119.84161, 34.413171 ], [ -119.841657, 34.413146 ], [ -119.841617, 34.413104 ], [ -119.841655, 34.413057 ], [ -119.84171, 34.41299 ], [ -119.841742, 34.412955 ], [ -119.841889, 34.412955 ], [ -119.841888, 34.412955 ], [ -119.842044, 34.412955 ], [ -119.842044, 34.412939 ], [ -119.842128, 34.412939 ], [ -119.842128, 34.412954 ], [ -119.842147, 34.412954 ], [ -119.842147, 34.412939 ], [ -119.842322, 34.412939 ], [ -119.842322, 34.413434 ], [ -119.842042, 34.413434 ], [ -119.842043, 34.41342 ], [ -119.84182, 34.413418 ], [ -119.841823, 34.4134 ], [ -119.8418, 34.413397 ], [ -119.841803, 34.413378 ], [ -119.84178, 34.413375 ] ], [ [ -119.842045, 34.413362 ], [ -119.842045, 34.413011 ], [ -119.841967, 34.413013 ], [ -119.841968, 34.41304 ], [ -119.841949, 34.41306 ], [ -119.841917, 34.413092 ], [ -119.841873, 34.413132 ], [ -119.841822, 34.41317 ], [ -119.841744, 34.413218 ], [ -119.841865, 34.413362 ], [ -119.842045, 34.413362 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 527.0, "bldgname": "Santa Rosa Residence Hall" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.844733, 34.411341 ], [ -119.844492, 34.411342 ], [ -119.84449, 34.410919 ], [ -119.843983, 34.410921 ], [ -119.843982, 34.410795 ], [ -119.844643, 34.410792 ], [ -119.844645, 34.411211 ], [ -119.845042, 34.41121 ], [ -119.845041, 34.411014 ], [ -119.845007, 34.411014 ], [ -119.845005, 34.410457 ], [ -119.845514, 34.410455 ], [ -119.845512, 34.410036 ], [ -119.845669, 34.410036 ], [ -119.845668, 34.410586 ], [ -119.84516, 34.410585 ], [ -119.84516, 34.410954 ], [ -119.845398, 34.410954 ], [ -119.845398, 34.411411 ], [ -119.84509, 34.411411 ], [ -119.84509, 34.411341 ], [ -119.844733, 34.411341 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 515.0, "bldgname": "Humanities And Social Sciences Building" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.849885, 34.413347 ], [ -119.849815, 34.413346 ], [ -119.849816, 34.4132 ], [ -119.849912, 34.413201 ], [ -119.849912, 34.413198 ], [ -119.85003, 34.413198 ], [ -119.85003, 34.413201 ], [ -119.850126, 34.413201 ], [ -119.850126, 34.413346 ], [ -119.850074, 34.413346 ], [ -119.850074, 34.413378 ], [ -119.850076, 34.413427 ], [ -119.85008, 34.413467 ], [ -119.850087, 34.413507 ], [ -119.850097, 34.413547 ], [ -119.850109, 34.413586 ], [ -119.850124, 34.413624 ], [ -119.850141, 34.413662 ], [ -119.850161, 34.413699 ], [ -119.850183, 34.413735 ], [ -119.85017, 34.41374 ], [ -119.850183, 34.41376 ], [ -119.850208, 34.413793 ], [ -119.850235, 34.413826 ], [ -119.850265, 34.413857 ], [ -119.850296, 34.413886 ], [ -119.850352, 34.413845 ], [ -119.850358, 34.41385 ], [ -119.850488, 34.413752 ], [ -119.850453, 34.413719 ], [ -119.850436, 34.413732 ], [ -119.850421, 34.413718 ], [ -119.850438, 34.413706 ], [ -119.850407, 34.413678 ], [ -119.850477, 34.413626 ], [ -119.85046, 34.413611 ], [ -119.850504, 34.413579 ], [ -119.850502, 34.413577 ], [ -119.850575, 34.413523 ], [ -119.850577, 34.413524 ], [ -119.85062, 34.413492 ], [ -119.850638, 34.413508 ], [ -119.850679, 34.413477 ], [ -119.850607, 34.413324 ], [ -119.850351, 34.413325 ], [ -119.850351, 34.413318 ], [ -119.850321, 34.413319 ], [ -119.85032, 34.413271 ], [ -119.8503, 34.413271 ], [ -119.8503, 34.413194 ], [ -119.850322, 34.413194 ], [ -119.850321, 34.413146 ], [ -119.850351, 34.413146 ], [ -119.850351, 34.413141 ], [ -119.85077, 34.413141 ], [ -119.85077, 34.413115 ], [ -119.850809, 34.413115 ], [ -119.850809, 34.413082 ], [ -119.850965, 34.413082 ], [ -119.850965, 34.413115 ], [ -119.851006, 34.413115 ], [ -119.851006, 34.413166 ], [ -119.85113, 34.413165 ], [ -119.85113, 34.413324 ], [ -119.851011, 34.413325 ], [ -119.851011, 34.413346 ], [ -119.850709, 34.413573 ], [ -119.850713, 34.413577 ], [ -119.850699, 34.413588 ], [ -119.850833, 34.413713 ], [ -119.850488, 34.41397 ], [ -119.850566, 34.414042 ], [ -119.850329, 34.414218 ], [ -119.850114, 34.414023 ], [ -119.850156, 34.413991 ], [ -119.850116, 34.413954 ], [ -119.850084, 34.41392 ], [ -119.850054, 34.413886 ], [ -119.850027, 34.413849 ], [ -119.850001, 34.413812 ], [ -119.850015, 34.413806 ], [ -119.849993, 34.41377 ], [ -119.849971, 34.41373 ], [ -119.849951, 34.413689 ], [ -119.849934, 34.413647 ], [ -119.849919, 34.413604 ], [ -119.849907, 34.413561 ], [ -119.849897, 34.413518 ], [ -119.84989, 34.413474 ], [ -119.849886, 34.41343 ], [ -119.849884, 34.413385 ], [ -119.849885, 34.413347 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 503.0, "bldgname": "Engineering II" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.841319, 34.414858 ], [ -119.841319, 34.414731 ], [ -119.84147, 34.41473 ], [ -119.84147, 34.414857 ], [ -119.841319, 34.414858 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 548.0, "bldgname": "Santa Cruz Residence Hall" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.844074, 34.410127 ], [ -119.844073, 34.409923 ], [ -119.843749, 34.409924 ], [ -119.843751, 34.410027 ], [ -119.843499, 34.410028 ], [ -119.843499, 34.409985 ], [ -119.843255, 34.409986 ], [ -119.843256, 34.410354 ], [ -119.842855, 34.410355 ], [ -119.842855, 34.410228 ], [ -119.843103, 34.410227 ], [ -119.843102, 34.40997 ], [ -119.842683, 34.409971 ], [ -119.842682, 34.409637 ], [ -119.842833, 34.409637 ], [ -119.842834, 34.409845 ], [ -119.843176, 34.409845 ], [ -119.843175, 34.409783 ], [ -119.843197, 34.409783 ], [ -119.843197, 34.409734 ], [ -119.843366, 34.409733 ], [ -119.843366, 34.409779 ], [ -119.843655, 34.409778 ], [ -119.843654, 34.40941 ], [ -119.844054, 34.409409 ], [ -119.844055, 34.409536 ], [ -119.843804, 34.409536 ], [ -119.843805, 34.409795 ], [ -119.844226, 34.409794 ], [ -119.844227, 34.410127 ], [ -119.844074, 34.410127 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 528.0, "bldgname": "South Hall" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.847436, 34.41415 ], [ -119.847436, 34.414103 ], [ -119.847389, 34.414103 ], [ -119.847389, 34.414051 ], [ -119.847342, 34.414051 ], [ -119.847342, 34.414094 ], [ -119.846921, 34.414094 ], [ -119.846921, 34.414092 ], [ -119.846884, 34.414092 ], [ -119.846884, 34.414051 ], [ -119.846878, 34.414051 ], [ -119.846878, 34.414029 ], [ -119.846921, 34.414029 ], [ -119.846921, 34.41398 ], [ -119.847342, 34.41398 ], [ -119.847342, 34.41403 ], [ -119.84742, 34.41403 ], [ -119.84742, 34.413978 ], [ -119.847461, 34.413978 ], [ -119.847461, 34.413962 ], [ -119.84748, 34.413962 ], [ -119.84748, 34.413928 ], [ -119.847543, 34.413928 ], [ -119.847543, 34.41389 ], [ -119.847484, 34.41389 ], [ -119.847484, 34.413545 ], [ -119.847484, 34.41354 ], [ -119.847543, 34.41354 ], [ -119.847543, 34.413508 ], [ -119.847416, 34.413508 ], [ -119.847416, 34.413479 ], [ -119.847387, 34.413479 ], [ -119.847387, 34.413347 ], [ -119.847416, 34.413347 ], [ -119.847416, 34.41332 ], [ -119.847284, 34.41332 ], [ -119.847284, 34.413288 ], [ -119.847342, 34.413288 ], [ -119.847342, 34.413237 ], [ -119.847386, 34.413237 ], [ -119.847386, 34.413288 ], [ -119.847407, 34.413288 ], [ -119.847407, 34.413237 ], [ -119.847715, 34.413237 ], [ -119.847715, 34.413319 ], [ -119.847696, 34.413319 ], [ -119.847696, 34.413347 ], [ -119.847724, 34.413347 ], [ -119.847724, 34.41348 ], [ -119.847696, 34.41348 ], [ -119.847696, 34.413508 ], [ -119.847569, 34.413508 ], [ -119.847569, 34.41354 ], [ -119.847631, 34.41354 ], [ -119.847631, 34.41389 ], [ -119.847569, 34.41389 ], [ -119.847569, 34.413924 ], [ -119.847677, 34.413924 ], [ -119.847677, 34.413978 ], [ -119.847723, 34.413978 ], [ -119.847723, 34.41403 ], [ -119.847675, 34.41403 ], [ -119.847675, 34.414051 ], [ -119.847723, 34.414051 ], [ -119.847723, 34.414103 ], [ -119.847677, 34.414103 ], [ -119.847677, 34.41415 ], [ -119.847567, 34.41415 ], [ -119.847567, 34.414121 ], [ -119.847545, 34.414121 ], [ -119.847545, 34.41415 ], [ -119.847436, 34.41415 ] ] ], [ [ [ -119.846638, 34.414051 ], [ -119.846779, 34.414051 ], [ -119.846779, 34.414108 ], [ -119.846638, 34.414108 ], [ -119.846638, 34.414051 ] ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 511.0, "bldgname": "Multi-Activity Center" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.84948, 34.41913 ], [ -119.84948, 34.419041 ], [ -119.849514, 34.419041 ], [ -119.849514, 34.41913 ], [ -119.84948, 34.41913 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 525.0, "bldgname": "Davidson Library" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.845149, 34.413428 ], [ -119.845147, 34.413308 ], [ -119.845212, 34.41325 ], [ -119.845212, 34.413217 ], [ -119.845139, 34.413157 ], [ -119.845138, 34.413032 ], [ -119.845275, 34.412918 ], [ -119.845384, 34.41292 ], [ -119.845422, 34.412889 ], [ -119.845535, 34.412888 ], [ -119.845572, 34.412919 ], [ -119.845682, 34.412919 ], [ -119.845815, 34.413028 ], [ -119.845817, 34.413242 ], [ -119.845734, 34.413309 ], [ -119.845735, 34.413428 ], [ -119.845149, 34.413428 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 534.0, "bldgname": "Arts" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.849448, 34.412206 ], [ -119.848846, 34.412205 ], [ -119.848846, 34.412166 ], [ -119.848717, 34.412166 ], [ -119.848717, 34.411916 ], [ -119.848845, 34.411917 ], [ -119.848845, 34.411847 ], [ -119.849317, 34.411847 ], [ -119.849317, 34.411691 ], [ -119.849624, 34.411692 ], [ -119.849623, 34.411915 ], [ -119.849448, 34.411915 ], [ -119.849448, 34.411972 ], [ -119.848972, 34.411972 ], [ -119.848973, 34.41208 ], [ -119.849448, 34.412081 ], [ -119.849448, 34.412206 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 526.0, "bldgname": "Webb Hall" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.84378, 34.41363 ], [ -119.843781, 34.413493 ], [ -119.843414, 34.413491 ], [ -119.843414, 34.413508 ], [ -119.843252, 34.413507 ], [ -119.843253, 34.413268 ], [ -119.843374, 34.413268 ], [ -119.843374, 34.4133 ], [ -119.843785, 34.413301 ], [ -119.843786, 34.413092 ], [ -119.843968, 34.413093 ], [ -119.843967, 34.413348 ], [ -119.844114, 34.413349 ], [ -119.844113, 34.413516 ], [ -119.843954, 34.413515 ], [ -119.843953, 34.413673 ], [ -119.843825, 34.413672 ], [ -119.843826, 34.41363 ], [ -119.84378, 34.41363 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 516.0, "bldgname": "Recreation Center" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.848367, 34.418614 ], [ -119.848328, 34.418614 ], [ -119.848328, 34.418562 ], [ -119.848367, 34.418562 ], [ -119.848367, 34.418614 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 511.0, "bldgname": "Multi-Activity Center" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.850977, 34.419155 ], [ -119.85032, 34.419159 ], [ -119.85032, 34.419242 ], [ -119.84999, 34.419244 ], [ -119.849989, 34.419133 ], [ -119.849854, 34.419134 ], [ -119.849855, 34.419184 ], [ -119.849706, 34.419185 ], [ -119.849706, 34.419136 ], [ -119.849548, 34.419137 ], [ -119.849548, 34.419027 ], [ -119.849677, 34.419026 ], [ -119.849677, 34.419034 ], [ -119.850213, 34.419019 ], [ -119.850212, 34.418972 ], [ -119.850203, 34.418972 ], [ -119.85019, 34.418792 ], [ -119.850311, 34.418791 ], [ -119.85031, 34.418676 ], [ -119.850381, 34.418675 ], [ -119.85038, 34.418582 ], [ -119.850693, 34.41858 ], [ -119.850694, 34.418675 ], [ -119.850724, 34.418675 ], [ -119.850725, 34.418776 ], [ -119.850902, 34.418775 ], [ -119.850903, 34.418793 ], [ -119.850972, 34.418792 ], [ -119.850973, 34.418856 ], [ -119.850993, 34.418856 ], [ -119.850994, 34.419024 ], [ -119.850975, 34.419024 ], [ -119.850977, 34.419155 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 520.0, "bldgname": "Marine Science Building" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.842277, 34.412766 ], [ -119.842277, 34.412764 ], [ -119.84222, 34.412765 ], [ -119.842219, 34.412746 ], [ -119.842195, 34.412746 ], [ -119.842194, 34.412726 ], [ -119.842172, 34.412727 ], [ -119.842171, 34.412707 ], [ -119.842148, 34.412707 ], [ -119.842147, 34.412688 ], [ -119.842125, 34.412688 ], [ -119.842124, 34.412668 ], [ -119.842101, 34.412668 ], [ -119.842101, 34.412648 ], [ -119.842078, 34.412649 ], [ -119.842078, 34.41263 ], [ -119.842056, 34.412629 ], [ -119.841941, 34.412562 ], [ -119.841991, 34.412394 ], [ -119.84202, 34.412388 ], [ -119.841995, 34.412332 ], [ -119.842065, 34.412312 ], [ -119.842088, 34.412376 ], [ -119.842107, 34.412379 ], [ -119.842144, 34.412343 ], [ -119.842161, 34.412359 ], [ -119.842179, 34.412345 ], [ -119.842195, 34.412362 ], [ -119.842212, 34.412347 ], [ -119.842225, 34.412361 ], [ -119.842243, 34.412346 ], [ -119.842259, 34.412359 ], [ -119.842276, 34.412345 ], [ -119.842294, 34.41236 ], [ -119.842309, 34.412345 ], [ -119.842327, 34.412359 ], [ -119.842344, 34.412346 ], [ -119.842364, 34.412361 ], [ -119.842381, 34.412362 ], [ -119.842381, 34.412327 ], [ -119.842466, 34.412327 ], [ -119.842466, 34.412764 ], [ -119.842364, 34.412764 ], [ -119.842364, 34.412778 ], [ -119.842277, 34.412778 ], [ -119.842277, 34.412766 ] ], [ [ -119.842278, 34.412695 ], [ -119.842277, 34.41248 ], [ -119.842127, 34.41248 ], [ -119.842131, 34.412541 ], [ -119.842129, 34.412596 ], [ -119.842246, 34.412694 ], [ -119.842278, 34.412695 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 525.0, "bldgname": "Davidson Library" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.845149, 34.413428 ], [ -119.845735, 34.413428 ], [ -119.845819, 34.413427 ], [ -119.845821, 34.413632 ], [ -119.845784, 34.413632 ], [ -119.845212, 34.413632 ], [ -119.845123, 34.413633 ], [ -119.845124, 34.413428 ], [ -119.845149, 34.413428 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 505.0, "bldgname": "Events Center" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.851405, 34.41409 ], [ -119.851334, 34.414086 ], [ -119.85133, 34.414094 ], [ -119.851322, 34.414099 ], [ -119.851314, 34.4141 ], [ -119.851307, 34.4141 ], [ -119.851297, 34.414096 ], [ -119.85129, 34.414089 ], [ -119.851289, 34.414084 ], [ -119.851217, 34.414082 ], [ -119.851165, 34.414121 ], [ -119.850901, 34.413878 ], [ -119.850951, 34.41384 ], [ -119.850954, 34.413778 ], [ -119.850949, 34.413777 ], [ -119.850943, 34.41377 ], [ -119.85094, 34.413762 ], [ -119.850941, 34.413756 ], [ -119.850944, 34.41375 ], [ -119.85095, 34.413743 ], [ -119.850957, 34.413742 ], [ -119.850961, 34.413685 ], [ -119.850914, 34.413641 ], [ -119.851206, 34.413422 ], [ -119.851252, 34.413464 ], [ -119.851322, 34.413467 ], [ -119.851324, 34.413462 ], [ -119.851328, 34.413457 ], [ -119.851334, 34.413454 ], [ -119.851342, 34.413453 ], [ -119.85135, 34.413453 ], [ -119.851357, 34.413456 ], [ -119.851363, 34.413459 ], [ -119.851368, 34.413469 ], [ -119.85144, 34.413471 ], [ -119.851442, 34.413472 ], [ -119.851493, 34.413433 ], [ -119.851757, 34.413675 ], [ -119.851705, 34.413714 ], [ -119.851702, 34.413773 ], [ -119.851709, 34.413774 ], [ -119.851716, 34.413778 ], [ -119.85172, 34.413783 ], [ -119.851723, 34.413789 ], [ -119.851722, 34.413796 ], [ -119.851719, 34.413802 ], [ -119.851707, 34.413809 ], [ -119.8517, 34.41381 ], [ -119.851696, 34.41387 ], [ -119.851743, 34.413913 ], [ -119.851451, 34.414132 ], [ -119.851405, 34.41409 ] ] ], [ [ [ -119.851187, 34.414186 ], [ -119.851212, 34.414167 ], [ -119.851253, 34.414206 ], [ -119.851228, 34.414225 ], [ -119.851187, 34.414186 ] ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 531.0, "bldgname": "Music" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.846718, 34.412672 ], [ -119.846718, 34.412657 ], [ -119.846505, 34.412657 ], [ -119.846505, 34.412622 ], [ -119.846511, 34.412622 ], [ -119.846511, 34.412312 ], [ -119.846494, 34.412312 ], [ -119.846494, 34.412184 ], [ -119.846767, 34.412184 ], [ -119.846767, 34.412227 ], [ -119.846831, 34.412227 ], [ -119.846831, 34.412086 ], [ -119.846913, 34.412086 ], [ -119.846913, 34.411987 ], [ -119.847367, 34.411987 ], [ -119.847367, 34.412097 ], [ -119.847379, 34.412097 ], [ -119.847379, 34.412068 ], [ -119.847745, 34.412068 ], [ -119.847745, 34.412373 ], [ -119.847591, 34.412373 ], [ -119.847591, 34.412528 ], [ -119.847696, 34.412528 ], [ -119.847696, 34.412684 ], [ -119.847428, 34.412684 ], [ -119.847428, 34.412704 ], [ -119.846718, 34.412704 ], [ -119.846718, 34.412672 ] ], [ [ -119.846718, 34.412599 ], [ -119.846718, 34.412522 ], [ -119.846795, 34.412522 ], [ -119.846795, 34.412489 ], [ -119.846834, 34.412489 ], [ -119.846834, 34.412335 ], [ -119.846582, 34.412335 ], [ -119.846582, 34.412599 ], [ -119.846718, 34.412599 ] ], [ [ -119.846917, 34.412366 ], [ -119.846917, 34.412489 ], [ -119.847349, 34.412489 ], [ -119.847349, 34.412366 ], [ -119.846917, 34.412366 ] ], [ [ -119.847428, 34.412458 ], [ -119.847428, 34.412478 ], [ -119.847553, 34.412478 ], [ -119.847553, 34.412458 ], [ -119.847428, 34.412458 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 534.0, "bldgname": "Arts" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.848849, 34.412673 ], [ -119.848849, 34.412633 ], [ -119.848761, 34.412633 ], [ -119.848761, 34.412568 ], [ -119.848847, 34.412568 ], [ -119.848847, 34.412547 ], [ -119.849213, 34.412547 ], [ -119.849213, 34.41244 ], [ -119.848761, 34.41244 ], [ -119.848761, 34.412354 ], [ -119.848846, 34.412354 ], [ -119.848846, 34.412314 ], [ -119.849448, 34.412314 ], [ -119.849448, 34.412328 ], [ -119.849835, 34.412328 ], [ -119.849835, 34.412684 ], [ -119.849915, 34.412683 ], [ -119.849916, 34.412785 ], [ -119.849835, 34.412786 ], [ -119.849835, 34.41282 ], [ -119.849251, 34.412821 ], [ -119.849251, 34.412673 ], [ -119.848849, 34.412673 ] ], [ [ -119.849804, 34.412586 ], [ -119.84958, 34.412587 ], [ -119.84958, 34.412634 ], [ -119.849804, 34.412634 ], [ -119.849804, 34.412586 ] ], [ [ -119.849448, 34.412634 ], [ -119.849546, 34.412634 ], [ -119.849546, 34.412586 ], [ -119.849448, 34.412587 ], [ -119.849448, 34.412634 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 517.0, "bldgname": "Mosher Alumni House" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.845528, 34.417511 ], [ -119.845445, 34.417463 ], [ -119.845442, 34.417468 ], [ -119.845411, 34.41745 ], [ -119.845399, 34.417452 ], [ -119.845387, 34.417452 ], [ -119.845376, 34.417449 ], [ -119.845366, 34.417444 ], [ -119.845357, 34.417438 ], [ -119.84535, 34.41743 ], [ -119.845346, 34.417421 ], [ -119.845344, 34.41741 ], [ -119.845344, 34.417405 ], [ -119.845332, 34.417398 ], [ -119.845333, 34.417395 ], [ -119.845302, 34.417378 ], [ -119.8453, 34.41738 ], [ -119.845282, 34.417371 ], [ -119.845285, 34.417368 ], [ -119.845253, 34.417351 ], [ -119.84525, 34.417353 ], [ -119.845244, 34.41735 ], [ -119.845244, 34.41735 ], [ -119.845237, 34.417337 ], [ -119.845224, 34.417341 ], [ -119.845224, 34.417321 ], [ -119.845231, 34.417316 ], [ -119.845223, 34.41731 ], [ -119.845223, 34.417305 ], [ -119.845233, 34.417296 ], [ -119.845223, 34.417288 ], [ -119.845223, 34.417257 ], [ -119.845242, 34.417257 ], [ -119.845243, 34.417261 ], [ -119.845327, 34.41726 ], [ -119.845334, 34.417267 ], [ -119.845341, 34.417261 ], [ -119.845366, 34.41726 ], [ -119.845375, 34.417266 ], [ -119.845384, 34.417259 ], [ -119.845395, 34.417259 ], [ -119.845407, 34.417268 ], [ -119.845417, 34.417258 ], [ -119.845488, 34.417259 ], [ -119.845498, 34.417266 ], [ -119.845504, 34.417261 ], [ -119.84551, 34.417265 ], [ -119.845517, 34.41726 ], [ -119.845526, 34.417266 ], [ -119.845517, 34.417274 ], [ -119.845531, 34.417283 ], [ -119.845568, 34.417283 ], [ -119.845569, 34.417276 ], [ -119.845581, 34.417276 ], [ -119.845599, 34.417285 ], [ -119.845605, 34.417278 ], [ -119.84562, 34.417282 ], [ -119.84562, 34.41729 ], [ -119.845632, 34.417289 ], [ -119.845645, 34.41727 ], [ -119.845669, 34.417286 ], [ -119.845666, 34.417289 ], [ -119.845675, 34.417303 ], [ -119.845681, 34.417318 ], [ -119.845685, 34.417334 ], [ -119.845686, 34.417349 ], [ -119.845685, 34.417361 ], [ -119.845662, 34.417363 ], [ -119.845662, 34.417367 ], [ -119.845654, 34.41737 ], [ -119.84566, 34.417376 ], [ -119.845669, 34.417373 ], [ -119.845698, 34.41739 ], [ -119.845676, 34.417418 ], [ -119.845671, 34.417416 ], [ -119.845648, 34.417445 ], [ -119.845653, 34.417448 ], [ -119.845647, 34.41746 ], [ -119.845664, 34.417469 ], [ -119.845668, 34.417466 ], [ -119.845685, 34.417476 ], [ -119.845678, 34.417487 ], [ -119.845673, 34.417484 ], [ -119.845664, 34.417496 ], [ -119.845689, 34.417509 ], [ -119.845639, 34.417571 ], [ -119.845639, 34.417571 ], [ -119.845528, 34.417511 ] ] ], [ [ [ -119.845144, 34.417299 ], [ -119.845194, 34.417259 ], [ -119.845197, 34.417341 ], [ -119.845144, 34.417299 ] ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 543.0, "bldgname": "University House" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.843833, 34.409114 ], [ -119.843833, 34.409014 ], [ -119.843803, 34.409014 ], [ -119.843803, 34.408838 ], [ -119.843984, 34.408838 ], [ -119.843984, 34.408936 ], [ -119.84407, 34.408936 ], [ -119.84407, 34.408863 ], [ -119.844165, 34.408863 ], [ -119.844166, 34.409089 ], [ -119.844071, 34.409089 ], [ -119.844071, 34.409014 ], [ -119.843985, 34.409015 ], [ -119.843986, 34.409114 ], [ -119.843833, 34.409114 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 542.0, "bldgname": "Ortega Dining Commons" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.847243, 34.411236 ], [ -119.847036, 34.411237 ], [ -119.847036, 34.411274 ], [ -119.846889, 34.411275 ], [ -119.846888, 34.411092 ], [ -119.846581, 34.411093 ], [ -119.846583, 34.410873 ], [ -119.846887, 34.410871 ], [ -119.846886, 34.410722 ], [ -119.847239, 34.41072 ], [ -119.847243, 34.411236 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 504.0, "bldgname": "Bio Science Instructional Facility" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.843277, 34.412027 ], [ -119.843274, 34.412333 ], [ -119.843036, 34.412333 ], [ -119.843037, 34.412028 ], [ -119.84313, 34.412028 ], [ -119.84313, 34.412018 ], [ -119.843196, 34.412017 ], [ -119.843195, 34.412027 ], [ -119.843277, 34.412027 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 539.0, "bldgname": "Bio Sciences Annex" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.843025, 34.413166 ], [ -119.843025, 34.413038 ], [ -119.84314, 34.413038 ], [ -119.84314, 34.413084 ], [ -119.843227, 34.413084 ], [ -119.843227, 34.413166 ], [ -119.843025, 34.413166 ] ] ], [ [ [ -119.843031, 34.413034 ], [ -119.843032, 34.412823 ], [ -119.843126, 34.412823 ], [ -119.843125, 34.413034 ], [ -119.843031, 34.413034 ] ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 516.0, "bldgname": "Recreation Center" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.848741, 34.418507 ], [ -119.848741, 34.418447 ], [ -119.848745, 34.418447 ], [ -119.848744, 34.418431 ], [ -119.848749, 34.418431 ], [ -119.848749, 34.418403 ], [ -119.84875, 34.418403 ], [ -119.84875, 34.418386 ], [ -119.848749, 34.418386 ], [ -119.848749, 34.418382 ], [ -119.848744, 34.418382 ], [ -119.848744, 34.418373 ], [ -119.848749, 34.418373 ], [ -119.848749, 34.418371 ], [ -119.84875, 34.418371 ], [ -119.84875, 34.418354 ], [ -119.848749, 34.418354 ], [ -119.848749, 34.418347 ], [ -119.848749, 34.418347 ], [ -119.848749, 34.41833 ], [ -119.848749, 34.41833 ], [ -119.848749, 34.418327 ], [ -119.848744, 34.418327 ], [ -119.848744, 34.418318 ], [ -119.848749, 34.418318 ], [ -119.848749, 34.418316 ], [ -119.84875, 34.418316 ], [ -119.84875, 34.418299 ], [ -119.848749, 34.418299 ], [ -119.848749, 34.418292 ], [ -119.84875, 34.418292 ], [ -119.84875, 34.418275 ], [ -119.848749, 34.418275 ], [ -119.848749, 34.418273 ], [ -119.848744, 34.418273 ], [ -119.848744, 34.418263 ], [ -119.848749, 34.418263 ], [ -119.848749, 34.418215 ], [ -119.848744, 34.418215 ], [ -119.848744, 34.418199 ], [ -119.848741, 34.418199 ], [ -119.848741, 34.418157 ], [ -119.848748, 34.418157 ], [ -119.848748, 34.418144 ], [ -119.848693, 34.418144 ], [ -119.848693, 34.418142 ], [ -119.848649, 34.418142 ], [ -119.848649, 34.418144 ], [ -119.848622, 34.418144 ], [ -119.848622, 34.418145 ], [ -119.848617, 34.418145 ], [ -119.848617, 34.418143 ], [ -119.848583, 34.418143 ], [ -119.848583, 34.418166 ], [ -119.848553, 34.418166 ], [ -119.848553, 34.418144 ], [ -119.848538, 34.418144 ], [ -119.848538, 34.418117 ], [ -119.848553, 34.418117 ], [ -119.848553, 34.41809 ], [ -119.848551, 34.41809 ], [ -119.848551, 34.418085 ], [ -119.848553, 34.418085 ], [ -119.848553, 34.418069 ], [ -119.848551, 34.418069 ], [ -119.848551, 34.418065 ], [ -119.848553, 34.418065 ], [ -119.848553, 34.418038 ], [ -119.848561, 34.418038 ], [ -119.848561, 34.41803 ], [ -119.848558, 34.41803 ], [ -119.848558, 34.418023 ], [ -119.848561, 34.418023 ], [ -119.848561, 34.417979 ], [ -119.848558, 34.417979 ], [ -119.848558, 34.417972 ], [ -119.848568, 34.417972 ], [ -119.848568, 34.417975 ], [ -119.848572, 34.417975 ], [ -119.848572, 34.417976 ], [ -119.848592, 34.417976 ], [ -119.848592, 34.417975 ], [ -119.848601, 34.417975 ], [ -119.848601, 34.417976 ], [ -119.848621, 34.417976 ], [ -119.848621, 34.417975 ], [ -119.848626, 34.417975 ], [ -119.848626, 34.417972 ], [ -119.848634, 34.417972 ], [ -119.848634, 34.41796 ], [ -119.848653, 34.41796 ], [ -119.848653, 34.417963 ], [ -119.848654, 34.417964 ], [ -119.848657, 34.417966 ], [ -119.84866, 34.417968 ], [ -119.848664, 34.417969 ], [ -119.848667, 34.41797 ], [ -119.848671, 34.41797 ], [ -119.848675, 34.41797 ], [ -119.848679, 34.417969 ], [ -119.848682, 34.417967 ], [ -119.848686, 34.417965 ], [ -119.848688, 34.417963 ], [ -119.848688, 34.41796 ], [ -119.848708, 34.41796 ], [ -119.848708, 34.417972 ], [ -119.848716, 34.417972 ], [ -119.848716, 34.417975 ], [ -119.84872, 34.417975 ], [ -119.84872, 34.417976 ], [ -119.848741, 34.417976 ], [ -119.848741, 34.417975 ], [ -119.848749, 34.417975 ], [ -119.848749, 34.417976 ], [ -119.84877, 34.417976 ], [ -119.84877, 34.417975 ], [ -119.848774, 34.417975 ], [ -119.848774, 34.417972 ], [ -119.848784, 34.417972 ], [ -119.848784, 34.417975 ], [ -119.848789, 34.417975 ], [ -119.848789, 34.417976 ], [ -119.848809, 34.417976 ], [ -119.848809, 34.417975 ], [ -119.848818, 34.417975 ], [ -119.848818, 34.417976 ], [ -119.848838, 34.417976 ], [ -119.848838, 34.417975 ], [ -119.848843, 34.417975 ], [ -119.848843, 34.417972 ], [ -119.848853, 34.417972 ], [ -119.848853, 34.417975 ], [ -119.848857, 34.417975 ], [ -119.848857, 34.417976 ], [ -119.848878, 34.417976 ], [ -119.848878, 34.417975 ], [ -119.848887, 34.417975 ], [ -119.848887, 34.417976 ], [ -119.848907, 34.417976 ], [ -119.848911, 34.417975 ], [ -119.848911, 34.417972 ], [ -119.848921, 34.417972 ], [ -119.848921, 34.417975 ], [ -119.848926, 34.417975 ], [ -119.848926, 34.417976 ], [ -119.848946, 34.417976 ], [ -119.848946, 34.417975 ], [ -119.848955, 34.417975 ], [ -119.848955, 34.417976 ], [ -119.848975, 34.417976 ], [ -119.848975, 34.417975 ], [ -119.84898, 34.417975 ], [ -119.84898, 34.417972 ], [ -119.84899, 34.417972 ], [ -119.84899, 34.417975 ], [ -119.848995, 34.417975 ], [ -119.848995, 34.417976 ], [ -119.849015, 34.417976 ], [ -119.849015, 34.417975 ], [ -119.849024, 34.417975 ], [ -119.849024, 34.417976 ], [ -119.849044, 34.417976 ], [ -119.849044, 34.417975 ], [ -119.849049, 34.417975 ], [ -119.849049, 34.417972 ], [ -119.849058, 34.417972 ], [ -119.849058, 34.417975 ], [ -119.849063, 34.417975 ], [ -119.849063, 34.417976 ], [ -119.849083, 34.417976 ], [ -119.849083, 34.417975 ], [ -119.849092, 34.417975 ], [ -119.849092, 34.417976 ], [ -119.849112, 34.417976 ], [ -119.849112, 34.417975 ], [ -119.849117, 34.417975 ], [ -119.849117, 34.417972 ], [ -119.849127, 34.417972 ], [ -119.849127, 34.417986 ], [ -119.849132, 34.417986 ], [ -119.849132, 34.417987 ], [ -119.849152, 34.417987 ], [ -119.849152, 34.417986 ], [ -119.849161, 34.417986 ], [ -119.849161, 34.417987 ], [ -119.849181, 34.417987 ], [ -119.849181, 34.417986 ], [ -119.849186, 34.417986 ], [ -119.849186, 34.417982 ], [ -119.849196, 34.417982 ], [ -119.849196, 34.417986 ], [ -119.8492, 34.417986 ], [ -119.8492, 34.417987 ], [ -119.84922, 34.417987 ], [ -119.84922, 34.417986 ], [ -119.849229, 34.417986 ], [ -119.849229, 34.417987 ], [ -119.849249, 34.417987 ], [ -119.849249, 34.417986 ], [ -119.849255, 34.417986 ], [ -119.849255, 34.417982 ], [ -119.849263, 34.417982 ], [ -119.849263, 34.417986 ], [ -119.849269, 34.417986 ], [ -119.849269, 34.417987 ], [ -119.849289, 34.417987 ], [ -119.849289, 34.417986 ], [ -119.849298, 34.417986 ], [ -119.849298, 34.417987 ], [ -119.849318, 34.417987 ], [ -119.849318, 34.417986 ], [ -119.849323, 34.417986 ], [ -119.849323, 34.417982 ], [ -119.849333, 34.417982 ], [ -119.849333, 34.417986 ], [ -119.849337, 34.417986 ], [ -119.849337, 34.417987 ], [ -119.849358, 34.417987 ], [ -119.849358, 34.417986 ], [ -119.849366, 34.417986 ], [ -119.849366, 34.417987 ], [ -119.849387, 34.417987 ], [ -119.849387, 34.417986 ], [ -119.849391, 34.417986 ], [ -119.849391, 34.417982 ], [ -119.849402, 34.417982 ], [ -119.849402, 34.41799 ], [ -119.849397, 34.41799 ], [ -119.849397, 34.418023 ], [ -119.849402, 34.418023 ], [ -119.849402, 34.418024 ], [ -119.849456, 34.418024 ], [ -119.849456, 34.418071 ], [ -119.849469, 34.418071 ], [ -119.849469, 34.41807 ], [ -119.849491, 34.41807 ], [ -119.849491, 34.418077 ], [ -119.84949, 34.418077 ], [ -119.84949, 34.418088 ], [ -119.849491, 34.418088 ], [ -119.849491, 34.418093 ], [ -119.84949, 34.418093 ], [ -119.84949, 34.418104 ], [ -119.849491, 34.418104 ], [ -119.849491, 34.418117 ], [ -119.84949, 34.418117 ], [ -119.84949, 34.418128 ], [ -119.849491, 34.418128 ], [ -119.849491, 34.41814 ], [ -119.84949, 34.41814 ], [ -119.84949, 34.418151 ], [ -119.849491, 34.418151 ], [ -119.849491, 34.418157 ], [ -119.84949, 34.418157 ], [ -119.84949, 34.418168 ], [ -119.849491, 34.418168 ], [ -119.849491, 34.418175 ], [ -119.849476, 34.418175 ], [ -119.849476, 34.418173 ], [ -119.849462, 34.418173 ], [ -119.849462, 34.418175 ], [ -119.849363, 34.418175 ], [ -119.849363, 34.418174 ], [ -119.849353, 34.418174 ], [ -119.849353, 34.418175 ], [ -119.84935, 34.418175 ], [ -119.84935, 34.418174 ], [ -119.849339, 34.418174 ], [ -119.849339, 34.418175 ], [ -119.849311, 34.418175 ], [ -119.849311, 34.418218 ], [ -119.84931, 34.418218 ], [ -119.84931, 34.41823 ], [ -119.849311, 34.41823 ], [ -119.849311, 34.418236 ], [ -119.84931, 34.418236 ], [ -119.84931, 34.418248 ], [ -119.849311, 34.418248 ], [ -119.849311, 34.418253 ], [ -119.849357, 34.418253 ], [ -119.849357, 34.418387 ], [ -119.849311, 34.418387 ], [ -119.849311, 34.418437 ], [ -119.84931, 34.418437 ], [ -119.84931, 34.418449 ], [ -119.849311, 34.418449 ], [ -119.849311, 34.418455 ], [ -119.84931, 34.418455 ], [ -119.84931, 34.418467 ], [ -119.849311, 34.418467 ], [ -119.849311, 34.418473 ], [ -119.849274, 34.418473 ], [ -119.849274, 34.418471 ], [ -119.849255, 34.418471 ], [ -119.849255, 34.418473 ], [ -119.849248, 34.418473 ], [ -119.849248, 34.418471 ], [ -119.849229, 34.418471 ], [ -119.849229, 34.418473 ], [ -119.849222, 34.418473 ], [ -119.849222, 34.418471 ], [ -119.849203, 34.418471 ], [ -119.849203, 34.418473 ], [ -119.849196, 34.418473 ], [ -119.849196, 34.418471 ], [ -119.849177, 34.418471 ], [ -119.849177, 34.418473 ], [ -119.84917, 34.418473 ], [ -119.84917, 34.418471 ], [ -119.849151, 34.418471 ], [ -119.849151, 34.418473 ], [ -119.84912, 34.418473 ], [ -119.84912, 34.418471 ], [ -119.849097, 34.418471 ], [ -119.849097, 34.418473 ], [ -119.849093, 34.418473 ], [ -119.849093, 34.418507 ], [ -119.849029, 34.418507 ], [ -119.849029, 34.418491 ], [ -119.849018, 34.418491 ], [ -119.849018, 34.418488 ], [ -119.849012, 34.418488 ], [ -119.849012, 34.418487 ], [ -119.848991, 34.418487 ], [ -119.848991, 34.418488 ], [ -119.848981, 34.418488 ], [ -119.848981, 34.418487 ], [ -119.84896, 34.418487 ], [ -119.84896, 34.418488 ], [ -119.848958, 34.418488 ], [ -119.848958, 34.418491 ], [ -119.848947, 34.418491 ], [ -119.848947, 34.418488 ], [ -119.848946, 34.418488 ], [ -119.848946, 34.418487 ], [ -119.848922, 34.418487 ], [ -119.848922, 34.418488 ], [ -119.848912, 34.418488 ], [ -119.848912, 34.418487 ], [ -119.848889, 34.418487 ], [ -119.848889, 34.418488 ], [ -119.848887, 34.418488 ], [ -119.848887, 34.418492 ], [ -119.848876, 34.418492 ], [ -119.848876, 34.418488 ], [ -119.848874, 34.418488 ], [ -119.848874, 34.418487 ], [ -119.848853, 34.418487 ], [ -119.848853, 34.418488 ], [ -119.848843, 34.418488 ], [ -119.848843, 34.418487 ], [ -119.848822, 34.418487 ], [ -119.848822, 34.418488 ], [ -119.848817, 34.418488 ], [ -119.848817, 34.418492 ], [ -119.848805, 34.418492 ], [ -119.848805, 34.418507 ], [ -119.848741, 34.418507 ] ] ], [ [ [ -119.848553, 34.418626 ], [ -119.848553, 34.418418 ], [ -119.848558, 34.418418 ], [ -119.848558, 34.418379 ], [ -119.848553, 34.418379 ], [ -119.848553, 34.418308 ], [ -119.848568, 34.418308 ], [ -119.848568, 34.418269 ], [ -119.848553, 34.418269 ], [ -119.848553, 34.418205 ], [ -119.848555, 34.418205 ], [ -119.848555, 34.418208 ], [ -119.848558, 34.418208 ], [ -119.848574, 34.418208 ], [ -119.848574, 34.418205 ], [ -119.8486, 34.418205 ], [ -119.8486, 34.418464 ], [ -119.848617, 34.418464 ], [ -119.848617, 34.418457 ], [ -119.848622, 34.418457 ], [ -119.848622, 34.418464 ], [ -119.848654, 34.418464 ], [ -119.848654, 34.418495 ], [ -119.848676, 34.418505 ], [ -119.848676, 34.418543 ], [ -119.848671, 34.418543 ], [ -119.848671, 34.418571 ], [ -119.848654, 34.418571 ], [ -119.848654, 34.418626 ], [ -119.848553, 34.418626 ] ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 516.0, "bldgname": "Recreation Center" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.849142, 34.419256 ], [ -119.848706, 34.419254 ], [ -119.848707, 34.418937 ], [ -119.848716, 34.418937 ], [ -119.848716, 34.418923 ], [ -119.848783, 34.418925 ], [ -119.848783, 34.418919 ], [ -119.849065, 34.41892 ], [ -119.849065, 34.418924 ], [ -119.849129, 34.418924 ], [ -119.84913, 34.418938 ], [ -119.849143, 34.418938 ], [ -119.849142, 34.419256 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 547.0, "bldgname": "Anacapa Residence Hall" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.843627, 34.410549 ], [ -119.843627, 34.410677 ], [ -119.843381, 34.410678 ], [ -119.843383, 34.410934 ], [ -119.8438, 34.410932 ], [ -119.843802, 34.411267 ], [ -119.843647, 34.411267 ], [ -119.843646, 34.411062 ], [ -119.843325, 34.411063 ], [ -119.843326, 34.411169 ], [ -119.843115, 34.41117 ], [ -119.843114, 34.411125 ], [ -119.842824, 34.411126 ], [ -119.842826, 34.411495 ], [ -119.842426, 34.411496 ], [ -119.842425, 34.411369 ], [ -119.842674, 34.411368 ], [ -119.842673, 34.411112 ], [ -119.842254, 34.411114 ], [ -119.842252, 34.410777 ], [ -119.842407, 34.410776 ], [ -119.842408, 34.410985 ], [ -119.842748, 34.410983 ], [ -119.842748, 34.410923 ], [ -119.84277, 34.410923 ], [ -119.84277, 34.410875 ], [ -119.84294, 34.410874 ], [ -119.84294, 34.41092 ], [ -119.84323, 34.410919 ], [ -119.843227, 34.410551 ], [ -119.843627, 34.410549 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 533.0, "bldgname": "Robertson Gym" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.849753, 34.416415 ], [ -119.849592, 34.416415 ], [ -119.849592, 34.416456 ], [ -119.849422, 34.416456 ], [ -119.849422, 34.416649 ], [ -119.849352, 34.416649 ], [ -119.849352, 34.416617 ], [ -119.849164, 34.416617 ], [ -119.849164, 34.41665 ], [ -119.849094, 34.41665 ], [ -119.849094, 34.416456 ], [ -119.848922, 34.416456 ], [ -119.848922, 34.41609 ], [ -119.848869, 34.41609 ], [ -119.848869, 34.416205 ], [ -119.848843, 34.416205 ], [ -119.848843, 34.416407 ], [ -119.848674, 34.416407 ], [ -119.848673, 34.415962 ], [ -119.84872, 34.415962 ], [ -119.84872, 34.415941 ], [ -119.84907, 34.41594 ], [ -119.84907, 34.415919 ], [ -119.849102, 34.415919 ], [ -119.849102, 34.415941 ], [ -119.849216, 34.415941 ], [ -119.849216, 34.415803 ], [ -119.848975, 34.415803 ], [ -119.848975, 34.415713 ], [ -119.849542, 34.415712 ], [ -119.849542, 34.415803 ], [ -119.849299, 34.415803 ], [ -119.8493, 34.415938 ], [ -119.849705, 34.415938 ], [ -119.849705, 34.415962 ], [ -119.849752, 34.415962 ], [ -119.849753, 34.416415 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 501.0, "bldgname": "Arbor Convenience Store" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.846385, 34.414242 ], [ -119.846389, 34.414217 ], [ -119.84639, 34.414217 ], [ -119.846391, 34.414215 ], [ -119.846391, 34.414215 ], [ -119.846391, 34.414215 ], [ -119.846391, 34.414215 ], [ -119.846392, 34.414215 ], [ -119.8464, 34.414215 ], [ -119.846401, 34.414215 ], [ -119.846401, 34.414215 ], [ -119.846401, 34.414215 ], [ -119.846401, 34.414215 ], [ -119.846401, 34.414214 ], [ -119.846401, 34.41419 ], [ -119.846401, 34.41419 ], [ -119.846401, 34.41419 ], [ -119.846401, 34.414189 ], [ -119.846401, 34.414189 ], [ -119.8464, 34.414189 ], [ -119.846398, 34.414189 ], [ -119.846398, 34.414189 ], [ -119.846398, 34.414189 ], [ -119.846398, 34.414189 ], [ -119.846398, 34.414188 ], [ -119.846398, 34.414188 ], [ -119.846396, 34.414188 ], [ -119.846399, 34.41418 ], [ -119.846402, 34.41418 ], [ -119.846402, 34.414174 ], [ -119.846411, 34.414174 ], [ -119.846407, 34.414165 ], [ -119.846405, 34.414155 ], [ -119.846405, 34.414145 ], [ -119.846407, 34.414135 ], [ -119.846411, 34.414125 ], [ -119.846402, 34.414125 ], [ -119.846402, 34.414083 ], [ -119.846407, 34.414083 ], [ -119.846411, 34.414082 ], [ -119.846412, 34.414084 ], [ -119.846418, 34.414082 ], [ -119.846433, 34.414069 ], [ -119.846436, 34.414064 ], [ -119.846434, 34.414064 ], [ -119.846435, 34.414059 ], [ -119.846435, 34.414055 ], [ -119.846505, 34.414055 ], [ -119.846505, 34.414057 ], [ -119.846538, 34.414057 ], [ -119.846538, 34.414055 ], [ -119.846637, 34.414055 ], [ -119.846637, 34.414108 ], [ -119.846638, 34.414108 ], [ -119.846638, 34.414136 ], [ -119.846637, 34.414136 ], [ -119.846637, 34.414147 ], [ -119.846638, 34.414147 ], [ -119.846638, 34.414159 ], [ -119.846637, 34.414159 ], [ -119.846637, 34.414168 ], [ -119.846638, 34.414168 ], [ -119.846638, 34.414205 ], [ -119.846637, 34.414205 ], [ -119.846637, 34.414214 ], [ -119.846638, 34.414214 ], [ -119.846638, 34.414219 ], [ -119.846637, 34.414219 ], [ -119.846637, 34.414228 ], [ -119.846638, 34.414228 ], [ -119.846638, 34.414233 ], [ -119.846603, 34.414233 ], [ -119.846603, 34.414219 ], [ -119.846539, 34.414219 ], [ -119.846539, 34.414218 ], [ -119.846508, 34.414218 ], [ -119.846508, 34.414219 ], [ -119.846443, 34.414219 ], [ -119.846443, 34.414237 ], [ -119.846423, 34.414239 ], [ -119.846423, 34.414233 ], [ -119.846417, 34.414233 ], [ -119.846417, 34.414233 ], [ -119.846406, 34.414233 ], [ -119.846406, 34.414233 ], [ -119.846405, 34.414233 ], [ -119.846405, 34.41424 ], [ -119.846385, 34.414242 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 507.0, "bldgname": "Central Receiving Storehouse And Mail Facility" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.856681, 34.423053 ], [ -119.856649, 34.423053 ], [ -119.856648, 34.422902 ], [ -119.85701, 34.422902 ], [ -119.85701, 34.423023 ], [ -119.857055, 34.423023 ], [ -119.857055, 34.42303 ], [ -119.857229, 34.42303 ], [ -119.85723, 34.423261 ], [ -119.857009, 34.423262 ], [ -119.857009, 34.423372 ], [ -119.856663, 34.423373 ], [ -119.856663, 34.423243 ], [ -119.856681, 34.423243 ], [ -119.856681, 34.423053 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 546.0, "bldgname": "Woodhouse Lab" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.842524, 34.413577 ], [ -119.842525, 34.41332 ], [ -119.842932, 34.413322 ], [ -119.842931, 34.413578 ], [ -119.842524, 34.413577 ] ], [ [ -119.842811, 34.413424 ], [ -119.842644, 34.413424 ], [ -119.842644, 34.413474 ], [ -119.842811, 34.413474 ], [ -119.842811, 34.413424 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 525.0, "bldgname": "Davidson Library" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.845212, 34.413632 ], [ -119.845784, 34.413632 ], [ -119.845785, 34.413741 ], [ -119.845845, 34.413741 ], [ -119.845841, 34.414332 ], [ -119.84517, 34.414336 ], [ -119.845169, 34.414239 ], [ -119.845204, 34.414238 ], [ -119.8452, 34.413745 ], [ -119.845213, 34.413745 ], [ -119.845212, 34.413632 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 535.0, "bldgname": "North Hall" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.847305, 34.415264 ], [ -119.847305, 34.41539 ], [ -119.846529, 34.41539 ], [ -119.846529, 34.415494 ], [ -119.846172, 34.415494 ], [ -119.846172, 34.415455 ], [ -119.846079, 34.415455 ], [ -119.846079, 34.414802 ], [ -119.846532, 34.414802 ], [ -119.846532, 34.41477 ], [ -119.846606, 34.41477 ], [ -119.846606, 34.414802 ], [ -119.846748, 34.414802 ], [ -119.846748, 34.414985 ], [ -119.846301, 34.414986 ], [ -119.846301, 34.415306 ], [ -119.84647, 34.415306 ], [ -119.84647, 34.415264 ], [ -119.847305, 34.415264 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 540.0, "bldgname": "Greenhouse 540" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.843163, 34.413027 ], [ -119.843163, 34.41296 ], [ -119.843213, 34.412961 ], [ -119.843213, 34.412942 ], [ -119.843192, 34.412942 ], [ -119.843192, 34.412776 ], [ -119.843489, 34.412775 ], [ -119.843488, 34.412942 ], [ -119.843234, 34.412942 ], [ -119.843233, 34.412961 ], [ -119.843332, 34.412961 ], [ -119.843332, 34.413027 ], [ -119.843163, 34.413027 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 544.0, "bldgname": "Noble Hall" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.84397, 34.413037 ], [ -119.843969, 34.412771 ], [ -119.844015, 34.412771 ], [ -119.844015, 34.412692 ], [ -119.843418, 34.412692 ], [ -119.843418, 34.412719 ], [ -119.843314, 34.412719 ], [ -119.843314, 34.412716 ], [ -119.843287, 34.412716 ], [ -119.843287, 34.412718 ], [ -119.843202, 34.412718 ], [ -119.843202, 34.412504 ], [ -119.843147, 34.412504 ], [ -119.843147, 34.412469 ], [ -119.843285, 34.412469 ], [ -119.843285, 34.412486 ], [ -119.843884, 34.412486 ], [ -119.843884, 34.412211 ], [ -119.844099, 34.412211 ], [ -119.844099, 34.412692 ], [ -119.844078, 34.412692 ], [ -119.844078, 34.413111 ], [ -119.844015, 34.413111 ], [ -119.844015, 34.413037 ], [ -119.84397, 34.413037 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 549.0, "bldgname": "De La Guerra Dining Commons" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.845339, 34.409523 ], [ -119.845339, 34.40972 ], [ -119.845212, 34.40972 ], [ -119.845212, 34.409818 ], [ -119.845159, 34.409818 ], [ -119.845159, 34.409997 ], [ -119.845136, 34.409997 ], [ -119.845136, 34.41005 ], [ -119.844877, 34.41005 ], [ -119.844877, 34.409996 ], [ -119.844855, 34.409996 ], [ -119.844855, 34.409775 ], [ -119.844758, 34.409775 ], [ -119.844758, 34.409717 ], [ -119.844746, 34.409717 ], [ -119.844746, 34.409698 ], [ -119.844757, 34.409698 ], [ -119.844756, 34.4096 ], [ -119.844744, 34.4096 ], [ -119.844744, 34.409584 ], [ -119.844622, 34.409584 ], [ -119.844622, 34.409692 ], [ -119.844488, 34.409692 ], [ -119.844487, 34.409437 ], [ -119.844497, 34.409437 ], [ -119.844497, 34.409385 ], [ -119.844503, 34.409385 ], [ -119.844502, 34.409351 ], [ -119.8447, 34.409351 ], [ -119.844701, 34.409376 ], [ -119.844716, 34.409376 ], [ -119.844716, 34.409437 ], [ -119.844744, 34.409437 ], [ -119.844744, 34.40946 ], [ -119.844903, 34.40946 ], [ -119.844902, 34.409387 ], [ -119.845146, 34.409387 ], [ -119.845146, 34.409454 ], [ -119.845272, 34.409454 ], [ -119.845272, 34.409443 ], [ -119.845357, 34.409443 ], [ -119.845357, 34.409523 ], [ -119.845339, 34.409523 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 503.0, "bldgname": "Engineering II" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.840916, 34.415221 ], [ -119.840916, 34.415004 ], [ -119.840939, 34.415004 ], [ -119.840939, 34.414918 ], [ -119.840916, 34.414918 ], [ -119.840916, 34.414456 ], [ -119.841473, 34.414456 ], [ -119.841472, 34.414397 ], [ -119.841774, 34.414395 ], [ -119.841773, 34.414637 ], [ -119.841635, 34.414637 ], [ -119.841692, 34.414637 ], [ -119.841693, 34.414728 ], [ -119.841838, 34.414728 ], [ -119.841838, 34.415221 ], [ -119.840916, 34.415221 ] ], [ [ -119.841577, 34.415003 ], [ -119.841577, 34.414637 ], [ -119.841474, 34.414638 ], [ -119.841473, 34.414507 ], [ -119.841473, 34.414553 ], [ -119.84103, 34.414553 ], [ -119.84103, 34.415003 ], [ -119.841577, 34.415003 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 525.0, "bldgname": "Davidson Library" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -119.845869, 34.414636 ], [ -119.845277, 34.414642 ], [ -119.845277, 34.414628 ], [ -119.845244, 34.414628 ], [ -119.845039, 34.414631 ], [ -119.845034, 34.414452 ], [ -119.845012, 34.414451 ], [ -119.845011, 34.414389 ], [ -119.845242, 34.414386 ], [ -119.845245, 34.414439 ], [ -119.845404, 34.414437 ], [ -119.845401, 34.414318 ], [ -119.84546, 34.414317 ], [ -119.84546, 34.414435 ], [ -119.845593, 34.414434 ], [ -119.845591, 34.41442 ], [ -119.84563, 34.414419 ], [ -119.845631, 34.414435 ], [ -119.845721, 34.414434 ], [ -119.845866, 34.414432 ], [ -119.845869, 34.414636 ] ] ] } },
{ "type": "Feature", "properties": { "bldg_no": 522.0, "bldgname": "Building 522" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -119.852652, 34.418541 ], [ -119.852541, 34.418504 ], [ -119.852376, 34.418568 ], [ -119.852381, 34.418575 ], [ -119.852341, 34.418588 ], [ -119.852314, 34.418534 ], [ -119.852332, 34.418525 ], [ -119.852323, 34.418514 ], [ -119.852446, 34.418468 ], [ -119.852439, 34.418452 ], [ -119.852552, 34.41841 ], [ -119.852558, 34.418424 ], [ -119.852578, 34.418389 ], [ -119.852603, 34.418399 ], [ -119.852614, 34.418378 ], [ -119.852691, 34.418403 ], [ -119.852684, 34.418426 ], [ -119.852729, 34.418441 ], [ -119.852716, 34.418463 ], [ -119.852736, 34.418485 ], [ -119.852754, 34.41848 ], [ -119.85278, 34.418536 ], [ -119.852739, 34.418549 ], [ -119.852802, 34.418685 ], [ -119.852782, 34.418689 ], [ -119.852789, 34.418697 ], [ -119.852727, 34.418722 ], [ -119.852711, 34.418691 ], [ -119.852717, 34.418689 ], [ -119.852683, 34.418617 ], [ -119.852686, 34.418615 ], [ -119.852652, 34.418541 ] ] ], [ [ [ -119.852195, 34.418594 ], [ -119.85232, 34.418552 ], [ -119.852338, 34.41859 ], [ -119.852213, 34.418631 ], [ -119.852195, 34.418594 ] ] ], [ [ [ -119.852726, 34.418725 ], [ -119.852771, 34.418709 ], [ -119.852823, 34.418811 ], [ -119.852777, 34.418827 ], [ -119.852726, 34.418725 ] ] ] ] } }
]
}
var pts =
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"note1": "Bldg. 517: Primary Location",
"servesbldg": 517,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.84544,
34.416989
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 547: Primary Location",
"servesbldg": 547,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.842518,
34.41047
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 547: Secondary Location",
"servesbldg": 547,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.844232,
34.410628
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 501: Primary Location",
"servesbldg": 501,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.846146,
34.413151
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 501: Secondary Location",
"servesbldg": 501,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.845648,
34.414503
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 534: Primary Location",
"servesbldg": 534,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.848534,
34.412234
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 534: Secondary Location",
"servesbldg": 534,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.849512,
34.412988
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 531: Primary Location",
"servesbldg": 531,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.848187,
34.412253
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 531: Secondary Location",
"servesbldg": 531,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.847119,
34.412883
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 504: Primary Location",
"servesbldg": 504,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.842778,
34.412604
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 504: Secondary Location",
"servesbldg": 504,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.842917,
34.411375
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 539: Primary Location",
"servesbldg": 539,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.84278,
34.413063
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 539: Secondary Location",
"servesbldg": 539,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.844311,
34.41306
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 521: Primary Location",
"servesbldg": 521,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.841428,
34.41328
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 521: Secondary Location",
"servesbldg": 521,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.842075,
34.413739
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 538: Primary Location",
"servesbldg": 538,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.84605,
34.416251
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 538: Secondary Location",
"servesbldg": 538,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.845294,
34.416838
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 507: Primary Location",
"servesbldg": 507,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.856368,
34.42311
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 507: Secondary Location",
"servesbldg": 507,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.856817,
34.422686
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 543: Primary Location",
"servesbldg": 543,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.844129,
34.409383
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 543: Secondary Location",
"servesbldg": 543,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.844031,
34.408715
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 549: Primary Location",
"servesbldg": 549,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.845038,
34.410173
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 549: Secondary Location",
"servesbldg": 549,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.844133,
34.410287
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 503: Primary Location",
"servesbldg": 503,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.842292,
34.414868
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 503: Secondary Location",
"servesbldg": 503,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.842206,
34.414197
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 505: Primary Location",
"servesbldg": 505,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.851347,
34.414494
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 505: Secondary Location",
"servesbldg": 505,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.851235,
34.413006
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 526: Primary Location",
"servesbldg": 526,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.844317,
34.413241
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 526: Secondary Location",
"servesbldg": 526,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.843211,
34.41381
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 540: Primary Location",
"servesbldg": 540,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.842779,
34.412909
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 540: Secondary Location",
"servesbldg": 540,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.845023,
34.412792
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 515, Arcade & Tower: Primary Location",
"servesbldg": 515,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.849454,
34.413953
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 515, Arcade & Tower: Secondary Location",
"servesbldg": 515,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.849963,
34.41307
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 515, Dance & Drama: Primary Location",
"servesbldg": 515,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.852197,
34.413467
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 515, Dance & Drama: Secondary Location",
"servesbldg": 515,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.849649,
34.412961
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 525: Primary Location",
"servesbldg": 525,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.846249,
34.413946
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 525: Secondary Location",
"servesbldg": 525,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.844433,
34.413534
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 520: Primary Location",
"servesbldg": 520,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.842599,
34.412563
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 520: Secondary Location",
"servesbldg": 520,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.841735,
34.412832
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 531: Primary Location",
"servesbldg": 531,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.847144,
34.411816
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 531: Secondary Location",
"servesbldg": 531,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.846915,
34.413482
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 544: Primary Location",
"servesbldg": 544,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.843579,
34.412277
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 544: Secondary Location",
"servesbldg": 544,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.844313,
34.412309
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 535: Primary Location",
"servesbldg": 535,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.84782,
34.415213
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 535: Secondary Location",
"servesbldg": 535,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.845487,
34.414527
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 542: Primary Location",
"servesbldg": 542,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.84608,
34.410282
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 542: Secondary Location",
"servesbldg": 542,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.846637,
34.411186
]
}
},
{
"type": "Feature",
"properties": {
"marker-color": "#7e7e7e",
"marker-size": "medium",
"marker-symbol": "",
"note1": "Bldg. 516: Primary Location",
"servesbldg": 516,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.849011,
34.417618
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 516: Secondary Location",
"servesbldg": 516,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.847863,
34.418215
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 511: Primary Location",
"servesbldg": 511,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.850379,
34.419594
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 511: Secondary Location",
"servesbldg": 511,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.849981,
34.418377
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 533: Primary Location",
"servesbldg": 533,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.849287,
34.417216
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 533: Secondary Location",
"servesbldg": 533,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.848519,
34.415788
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 548: Primary Location",
"servesbldg": 548,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.844064,
34.410286
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 548: Secondary Location",
"servesbldg": 548,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.84311,
34.409176
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 527: Primary Location",
"servesbldg": 527,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.844331,
34.410622
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 527: Secondary Location",
"servesbldg": 527,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.845016,
34.411692
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 528: Primary Location",
"servesbldg": 528,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.848108,
34.41389
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 528: Secondary Location",
"servesbldg": 528,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.847058,
34.412828
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 522: Primary Location",
"servesbldg": 522,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.853126,
34.418593
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 546: Primary Location",
"servesbldg": 546,
"location_t": "Primary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.843139,
34.413761
]
}
},
{
"type": "Feature",
"properties": {
"note1": "Bldg. 546: Secondary Location",
"servesbldg": 546,
"location_t": "Secondary"
},
"geometry": {
"type": "Point",
"coordinates": [
-119.842071,
34.413723
]
}
}
]
}
for(var i = 0; i < pts.features.length; i++) {
pts.features[i].properties['marker-color'] = '#DC143C';
pts.features[i].properties['marker-symbol'] = 'square-stroked';
pts.features[i].properties['marker-size'] = 'medium';
};
var polyLayer = L.mapbox.featureLayer(polys).addTo(map);
var ptsLayer = L.mapbox.featureLayer().addTo(map);
map.fitBounds(polyLayer.getBounds());
polyLayer.on('mouseover', function (e) {
// Force the popup closed.
e.layer.closePopup();
var feature = e.layer.feature;
var content = '<div><strong>' + feature.properties.bldg_no + '</strong>' +
'<p>' + feature.properties.bldgname + '</p></div>';
info.innerHTML = content;
});
// Clear the tooltip when map is clicked.
map.on('move', empty);
// Trigger empty contents when the script
// has loaded on the page.
empty();
function empty() {
info.innerHTML = '<div><strong>Hover over a building to locate<br>emergency assembly point(s)</strong></div>';
}
polyLayer.on('mouseover', function(e) {
var matchingPoints = turf.featurecollection([])
matchingPoints.features = pts.features.filter(function(pt) {
if(pt.properties.servesbldg === e.layer.feature.properties.bldg_no) return true
})
ptsLayer.setGeoJSON(matchingPoints);
});
function getPoints(building, pts) {
var matchingPoints = turf.featurecollection([])
matchingPoints.features = pts.features.filter(function(pt) {
if(pt.properties.servesbldg === building.properties.bldg_no) return true
})
return matchingPoints
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment