Skip to content

Instantly share code, notes, and snippets.

@ericrobskyhuntley
Created March 1, 2019 23:13
Show Gist options
  • Save ericrobskyhuntley/f999414064d06f8bd01a1467c37cf358 to your computer and use it in GitHub Desktop.
Save ericrobskyhuntley/f999414064d06f8bd01a1467c37cf358 to your computer and use it in GitHub Desktop.
Linking Leaflet Layers by ID
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Linking Leaflet Layers by ID</title>
<style>
#map {height: 850px;}
</style>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.4.0/dist/leaflet.css" />
<!-- Must come after leaflet.css -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://unpkg.com/leaflet@1.4.0/dist/leaflet.js" type="text/javascript"></script>
</head>
<body>
<div id="map"></div>
<script src="map.js" type="text/javascript"></script>
</body>
</html>
var animalMap = L.map('map').setView(
center = [42.360724, -71.068711],
zoom = 16);
var tonerLite = L.tileLayer('https://stamen-tiles-{s}.a.ssl.fastly.net/toner-lite/{z}/{x}/{y}.{ext}', {
attribution: 'Map tiles by <a href="http://stamen.com">Stamen Design</a>, <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a> &mdash; Map data &copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>',
subdomains: 'abcd',
minZoom: 0,
maxZoom: 20,
ext: 'png'
});
tonerLite.addTo(animalMap);
var bufferGroup = L.layerGroup().addTo(animalMap);
$.getJSON("test_points.geojson", function(data) {
var point = L.geoJSON(data, {
onEachFeature: function(feature, layer) {
var props = feature.properties;
layer.on('click', function() {
addBuffer(props.CASE_ENQUIRY_ID);
});
}
}).addTo(animalMap);
});
function addBuffer(id) {
bufferGroup.clearLayers();
$.getJSON("test_1p5km.geojson", function(data) {
L.geoJSON(data, {
filter: function(feature, layer) {
return Math.round(feature.properties.CASE_ENQUI) == id;
}
}).addTo(bufferGroup);
})
};
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"name": "test_1p5km",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "CASE_ENQUI": 101002224305.0, "open_dt": "2017\/09\/23 11:47:00", "target_dt": null, "closed_dt": null, "OnTime_Sta": "ONTIME", "CASE_STATU": "Open", "CLOSURE_RE": "NA", "CASE_TITLE": "Animal Noise Disturbances", "SUBJECT": "Animal Control", "REASON": "Animal Issues", "TYPE": "Animal Noise Disturbances", "QUEUE": "INFO01_GenericeFormforOtherServiceRequestTypes", "Department": "INFO", "SubmittedP": null, "ClosedPhot": null, "Location": "78 Phillips St Boston MA 02114", "Fire_distr": 3, "pwd_distri": "1B", "city_counc": 8, "police_dis": "A1", "neighborho": "Beacon Hill", "neighbor_1": 14, "ward": "Ward 5", "precinct": "0504", "LOCATION_S": "78 Phillips St", "LOCATION_Z": "2114", "Latitude": 42.3601, "Longitude": -71.0694, "Source": "Employee Generated" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.063850131879008, 42.360079086971886 ], [ -71.063862865139811, 42.359820681051609 ], [ -71.063897450657919, 42.359563377980976 ], [ -71.063953751677246, 42.359308193198267 ], [ -71.064031545749287, 42.359056133770011 ], [ -71.064130525614999, 42.35880819441703 ], [ -71.064250300421165, 42.358565353589263 ], [ -71.064390397266564, 42.358328569605284 ], [ -71.064550263071439, 42.358098776871216 ], [ -71.064729266763152, 42.357876882194091 ], [ -71.064926701769167, 42.357663761204464 ], [ -71.065141788807608, 42.357460254902051 ], [ -71.06537367896415, 42.357267166338048 ], [ -71.065621457043434, 42.357085257447444 ], [ -71.065884145181329, 42.356915246043563 ], [ -71.066160706704053, 42.356757802986593 ], [ -71.066450050218947, 42.356613549537705 ], [ -71.066751033920568, 42.356483054908587 ], [ -71.06706247009528, 42.356366834016526 ], [ -71.067383129806544, 42.356265345453579 ], [ -71.06771174774245, 42.356178989677986 ], [ -71.068047027206404, 42.356108107434842 ], [ -71.06838764523134, 42.356052978412272 ], [ -71.068732257797194, 42.35601382013855 ], [ -71.069079505131384, 42.355990787124121 ], [ -71.069428017071132, 42.35598397025241 ], [ -71.069776418466716, 42.355993396421297 ], [ -71.070123334604347, 42.356019028437153 ], [ -71.070467396627308, 42.356060765161466 ], [ -71.070807246934095, 42.356118441909672 ], [ -71.071141544532196, 42.356191831100595 ], [ -71.071468970326578, 42.356280643154008 ], [ -71.071788232322035, 42.356384527632521 ], [ -71.072098070718909, 42.356503074623681 ], [ -71.072397262881921, 42.356635816356523 ], [ -71.072684628163103, 42.356782229046438 ], [ -71.072959032559183, 42.35694173496092 ], [ -71.073219393185411, 42.357113704698158 ], [ -71.073464682548305, 42.357297459669525 ], [ -71.073693932600136, 42.357492274776085 ], [ -71.073906238559417, 42.357697381268721 ], [ -71.074100762482288, 42.357911969780531 ], [ -71.074276736570525, 42.358135193519402 ], [ -71.074433466203317, 42.358366171608665 ], [ -71.074570332680679, 42.358603992562067 ], [ -71.074686795667702, 42.358847717879655 ], [ -71.074782395329933, 42.359096385750689 ], [ -71.074856754151384, 42.359349014848377 ], [ -71.074909578428077, 42.359604608201948 ], [ -71.074940659430936, 42.359862157130515 ], [ -71.074949874233596, 42.36012064522356 ], [ -71.074937186201723, 42.360379052351824 ], [ -71.074902645141748, 42.360636358693299 ], [ -71.074846387108636, 42.360891548758048 ], [ -71.074768633872978, 42.361143615396294 ], [ -71.07466969204981, 42.361391563773559 ], [ -71.074549951892379, 42.361634415297473 ], [ -71.074409885755472, 42.361871211480846 ], [ -71.074250046234553, 42.362101017725166 ], [ -71.074071063987773, 42.362322927010311 ], [ -71.073873645249435, 42.362536063475339 ], [ -71.073658569044895, 42.36273958587654 ], [ -71.073426684117592, 42.362932690908764 ], [ -71.073178905580448, 42.36311461637731 ], [ -71.072916211304786, 42.363284644207461 ], [ -71.072639638061204, 42.363442103279937 ], [ -71.072350277427191, 42.363586372080995 ], [ -71.072049271478178, 42.363716881156883 ], [ -71.071737808278655, 42.363833115362389 ], [ -71.071417117191359, 42.363934615895573 ], [ -71.07108846402302, 42.364020982109373 ], [ -71.070753146025837, 42.364091873094118 ], [ -71.070412486774629, 42.364147009023775 ], [ -71.070067830939564, 42.364186172261178 ], [ -71.069720538975659, 42.364209208217588 ], [ -71.069371981749484, 42.364216025963181 ], [ -71.069023535124984, 42.364206598586293 ], [ -71.068676574529206, 42.364180963299617 ], [ -71.068332469520016, 42.36413922129325 ], [ -71.067992578376845, 42.364081537335032 ], [ -71.067658242736229, 42.364008139119846 ], [ -71.067330782293112, 42.363919316370279 ], [ -71.067011489589149, 42.363815419692372 ], [ -71.066701624908319, 42.363696859190981 ], [ -71.066402411300373, 42.363564102850106 ], [ -71.066115029751501, 42.363417674684761 ], [ -71.065840614521534, 42.363258152671513 ], [ -71.065580248666038, 42.363086166466069 ], [ -71.065334959761032, 42.362902394916752 ], [ -71.065105715846954, 42.36270756338395 ], [ -71.064893421608545, 42.36250244087578 ], [ -71.064698914804779, 42.362287837011777 ], [ -71.064522962963949, 42.362064598826173 ], [ -71.064366260355968, 42.361833607423428 ], [ -71.064229425254638, 42.361595774499833 ], [ -71.064112997500061, 42.36135203874403 ], [ -71.064017436371046, 42.361103362131381 ], [ -71.063943118775867, 42.360850726126586 ], [ -71.063890337768356, 42.36059512780934 ], [ -71.06385930139524, 42.360337575938807 ], [ -71.063850131879008, 42.360079086971886 ] ] ] ] } },
{ "type": "Feature", "properties": { "CASE_ENQUI": 101002175540.0, "open_dt": "2017\/07\/31 16:20:00", "target_dt": null, "closed_dt": null, "OnTime_Sta": "ONTIME", "CASE_STATU": "Open", "CLOSURE_RE": "NA", "CASE_TITLE": "Animal Noise Disturbances", "SUBJECT": "Animal Control", "REASON": "Animal Issues", "TYPE": "Animal Noise Disturbances", "QUEUE": "INFO01_GenericeFormforOtherServiceRequestTypes", "Department": "INFO", "SubmittedP": null, "ClosedPhot": null, "Location": "INTERSECTION of Searle Rd & Sparrow St West Roxbury MA", "Fire_distr": 12, "pwd_distri": "06", "city_counc": 6, "police_dis": "E5", "neighborho": "West Roxbury", "neighbor_1": 12, "ward": "20", "precinct": "2010", "LOCATION_S": "INTERSECTION Searle Rd & Sparrow St", "LOCATION_Z": "NA", "Latitude": 42.3594, "Longitude": -71.0587, "Source": "Employee Generated" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.053150196894379, 42.359378570633332 ], [ -71.053162973721257, 42.359120165859295 ], [ -71.053197602376386, 42.358862865968121 ], [ -71.053253945933477, 42.358607686385497 ], [ -71.053331781776151, 42.358355634157469 ], [ -71.053430802480563, 42.358107703976309 ], [ -71.053550617032371, 42.357864874255824 ], [ -71.053690752373541, 42.35762810327072 ], [ -71.053850655272427, 42.357398325375769 ], [ -71.054029694510092, 42.357176447319482 ], [ -71.054227163373753, 42.356963344666745 ], [ -71.054442282447951, 42.356759858344908 ], [ -71.054674202692055, 42.356566791326365 ], [ -71.054922008792005, 42.356384905461027 ], [ -71.055184722773149, 42.356214918471338 ], [ -71.055461307859787, 42.356057501121164 ], [ -71.055750672566319, 42.35591327457022 ], [ -71.056051675003744, 42.355782807924022 ], [ -71.056363127384515, 42.355666615989477 ], [ -71.0566838007082, 42.355565157244357 ], [ -71.057012429609216, 42.355478832029235 ], [ -71.057347717347739, 42.355407980968621 ], [ -71.057688340924045, 42.355352883627624 ], [ -71.058032956296202, 42.355313757409441 ], [ -71.058380203680571, 42.355290756698082 ], [ -71.058728712914203, 42.355283972249502 ], [ -71.059077108858006, 42.35529343083364 ], [ -71.059424016819733, 42.355319095128984 ], [ -71.059768067974915, 42.355360863869649 ], [ -71.060107904764877, 42.355418572244702 ], [ -71.060442186250441, 42.355491992548224 ], [ -71.060769593400124, 42.355580835077184 ], [ -71.061088834292278, 42.355684749273948 ], [ -71.061398649210389, 42.355803325108795 ], [ -71.061697815611879, 42.355936094696958 ], [ -71.061985152950356, 42.356082534143894 ], [ -71.062259527332714, 42.356242065611525 ], [ -71.062519855992647, 42.356414059597157 ], [ -71.06276511156274, 42.356597837416487 ], [ -71.062994326128546, 42.356792673880449 ], [ -71.06320659504857, 42.356997800155604 ], [ -71.063401080525082, 42.357212406796947 ], [ -71.063577014911516, 42.35743564694085 ], [ -71.063733703743679, 42.357666639645885 ], [ -71.063870528482582, 42.357904473368031 ], [ -71.063986948957975, 42.358148209557029 ], [ -71.064082505503123, 42.358396886359174 ], [ -71.064156820772226, 42.358649522412378 ], [ -71.064209601233117, 42.358905120718411 ], [ -71.06424063832965, 42.359162672576858 ], [ -71.06424980930872, 42.359421161565571 ], [ -71.064237077708938, 42.35967956755173 ], [ -71.064202493508716, 42.359936870717817 ], [ -71.064146192933265, 42.360192055586445 ], [ -71.064068397921119, 42.36044411502828 ], [ -71.063969415252217, 42.360692054237212 ], [ -71.063849635341029, 42.360934894657049 ], [ -71.063709530699299, 42.361171677844389 ], [ -71.063549654074507, 42.361401469252016 ], [ -71.063370636271287, 42.361623361918362 ], [ -71.063173183664333, 42.361836480048019 ], [ -71.062958075412737, 42.362039982469675 ], [ -71.062726160386461, 42.36223306595695 ], [ -71.062478353817284, 42.362414968400266 ], [ -71.062215633687245, 42.3625849718157 ], [ -71.061939036869006, 42.362742405180335 ], [ -71.061649655033207, 42.362886647081943 ], [ -71.061348630338955, 42.363017128172878 ], [ -71.061037150924847, 42.363133333418425 ], [ -71.060716446217597, 42.36323480413094 ], [ -71.060387782077768, 42.363321139781057 ], [ -71.0600524558009, 42.363391999579761 ], [ -71.059711790994484, 42.363447103824107 ], [ -71.059367132350658, 42.363486235002007 ], [ -71.059019840335537, 42.36350923865124 ], [ -71.05867128581589, 42.363516023969552 ], [ -71.058322844644991, 42.363506564173257 ], [ -71.057975892228356, 42.363480896603008 ], [ -71.057631798091521, 42.363439122576345 ], [ -71.05729192047103, 42.363381406987507 ], [ -71.056957600949971, 42.363307977656213 ], [ -71.056630159159667, 42.363219124427893 ], [ -71.056310887568074, 42.363115198028879 ], [ -71.05600104637584, 42.362996608681357 ], [ -71.055701858539933, 42.362863824483149 ], [ -71.05541450494475, 42.36271736955927 ], [ -71.055140119739775, 42.362557821991849 ], [ -71.054879785862013, 42.362385811537479 ], [ -71.054634530761163, 42.362202017140177 ], [ -71.054405322344266, 42.362007164250485 ], [ -71.054193065155815, 42.361802021960848 ], [ -71.053998596808583, 42.36158739996884 ], [ -71.053822684678963, 42.361364145380215 ], [ -71.053666022880151, 42.361133139364156 ], [ -71.053529229524813, 42.360895293674638 ], [ -71.053412844288246, 42.360651547050637 ], [ -71.05331732628143, 42.360402861510416 ], [ -71.053243052242451, 42.360150218553862 ], [ -71.053190315053186, 42.359894615288091 ], [ -71.053159322587433, 42.359637060491771 ], [ -71.053150196894379, 42.359378570633332 ] ] ] ] } },
{ "type": "Feature", "properties": { "CASE_ENQUI": 101002174020.0, "open_dt": "2017\/07\/29 14:20:00", "target_dt": null, "closed_dt": null, "OnTime_Sta": "ONTIME", "CASE_STATU": "Open", "CLOSURE_RE": "NA", "CASE_TITLE": "Animal Noise Disturbances", "SUBJECT": "Animal Control", "REASON": "Animal Issues", "TYPE": "Animal Noise Disturbances", "QUEUE": "INFO01_GenericeFormforOtherServiceRequestTypes", "Department": "INFO", "SubmittedP": null, "ClosedPhot": null, "Location": "INTERSECTION of Sherbrook St & Dent St West Roxbury MA", "Fire_distr": 12, "pwd_distri": "06", "city_counc": 6, "police_dis": "E5", "neighborho": "West Roxbury", "neighbor_1": 12, "ward": "20", "precinct": "2012", "LOCATION_S": "INTERSECTION Sherbrook St & Dent St", "LOCATION_Z": "NA", "Latitude": 42.3594, "Longitude": -71.0587, "Source": "Employee Generated" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.053150196894379, 42.359378570633332 ], [ -71.053162973721257, 42.359120165859295 ], [ -71.053197602376386, 42.358862865968121 ], [ -71.053253945933477, 42.358607686385497 ], [ -71.053331781776151, 42.358355634157469 ], [ -71.053430802480563, 42.358107703976309 ], [ -71.053550617032371, 42.357864874255824 ], [ -71.053690752373541, 42.35762810327072 ], [ -71.053850655272427, 42.357398325375769 ], [ -71.054029694510092, 42.357176447319482 ], [ -71.054227163373753, 42.356963344666745 ], [ -71.054442282447951, 42.356759858344908 ], [ -71.054674202692055, 42.356566791326365 ], [ -71.054922008792005, 42.356384905461027 ], [ -71.055184722773149, 42.356214918471338 ], [ -71.055461307859787, 42.356057501121164 ], [ -71.055750672566319, 42.35591327457022 ], [ -71.056051675003744, 42.355782807924022 ], [ -71.056363127384515, 42.355666615989477 ], [ -71.0566838007082, 42.355565157244357 ], [ -71.057012429609216, 42.355478832029235 ], [ -71.057347717347739, 42.355407980968621 ], [ -71.057688340924045, 42.355352883627624 ], [ -71.058032956296202, 42.355313757409441 ], [ -71.058380203680571, 42.355290756698082 ], [ -71.058728712914203, 42.355283972249502 ], [ -71.059077108858006, 42.35529343083364 ], [ -71.059424016819733, 42.355319095128984 ], [ -71.059768067974915, 42.355360863869649 ], [ -71.060107904764877, 42.355418572244702 ], [ -71.060442186250441, 42.355491992548224 ], [ -71.060769593400124, 42.355580835077184 ], [ -71.061088834292278, 42.355684749273948 ], [ -71.061398649210389, 42.355803325108795 ], [ -71.061697815611879, 42.355936094696958 ], [ -71.061985152950356, 42.356082534143894 ], [ -71.062259527332714, 42.356242065611525 ], [ -71.062519855992647, 42.356414059597157 ], [ -71.06276511156274, 42.356597837416487 ], [ -71.062994326128546, 42.356792673880449 ], [ -71.06320659504857, 42.356997800155604 ], [ -71.063401080525082, 42.357212406796947 ], [ -71.063577014911516, 42.35743564694085 ], [ -71.063733703743679, 42.357666639645885 ], [ -71.063870528482582, 42.357904473368031 ], [ -71.063986948957975, 42.358148209557029 ], [ -71.064082505503123, 42.358396886359174 ], [ -71.064156820772226, 42.358649522412378 ], [ -71.064209601233117, 42.358905120718411 ], [ -71.06424063832965, 42.359162672576858 ], [ -71.06424980930872, 42.359421161565571 ], [ -71.064237077708938, 42.35967956755173 ], [ -71.064202493508716, 42.359936870717817 ], [ -71.064146192933265, 42.360192055586445 ], [ -71.064068397921119, 42.36044411502828 ], [ -71.063969415252217, 42.360692054237212 ], [ -71.063849635341029, 42.360934894657049 ], [ -71.063709530699299, 42.361171677844389 ], [ -71.063549654074507, 42.361401469252016 ], [ -71.063370636271287, 42.361623361918362 ], [ -71.063173183664333, 42.361836480048019 ], [ -71.062958075412737, 42.362039982469675 ], [ -71.062726160386461, 42.36223306595695 ], [ -71.062478353817284, 42.362414968400266 ], [ -71.062215633687245, 42.3625849718157 ], [ -71.061939036869006, 42.362742405180335 ], [ -71.061649655033207, 42.362886647081943 ], [ -71.061348630338955, 42.363017128172878 ], [ -71.061037150924847, 42.363133333418425 ], [ -71.060716446217597, 42.36323480413094 ], [ -71.060387782077768, 42.363321139781057 ], [ -71.0600524558009, 42.363391999579761 ], [ -71.059711790994484, 42.363447103824107 ], [ -71.059367132350658, 42.363486235002007 ], [ -71.059019840335537, 42.36350923865124 ], [ -71.05867128581589, 42.363516023969552 ], [ -71.058322844644991, 42.363506564173257 ], [ -71.057975892228356, 42.363480896603008 ], [ -71.057631798091521, 42.363439122576345 ], [ -71.05729192047103, 42.363381406987507 ], [ -71.056957600949971, 42.363307977656213 ], [ -71.056630159159667, 42.363219124427893 ], [ -71.056310887568074, 42.363115198028879 ], [ -71.05600104637584, 42.362996608681357 ], [ -71.055701858539933, 42.362863824483149 ], [ -71.05541450494475, 42.36271736955927 ], [ -71.055140119739775, 42.362557821991849 ], [ -71.054879785862013, 42.362385811537479 ], [ -71.054634530761163, 42.362202017140177 ], [ -71.054405322344266, 42.362007164250485 ], [ -71.054193065155815, 42.361802021960848 ], [ -71.053998596808583, 42.36158739996884 ], [ -71.053822684678963, 42.361364145380215 ], [ -71.053666022880151, 42.361133139364156 ], [ -71.053529229524813, 42.360895293674638 ], [ -71.053412844288246, 42.360651547050637 ], [ -71.05331732628143, 42.360402861510416 ], [ -71.053243052242451, 42.360150218553862 ], [ -71.053190315053186, 42.359894615288091 ], [ -71.053159322587433, 42.359637060491771 ], [ -71.053150196894379, 42.359378570633332 ] ] ] ] } },
{ "type": "Feature", "properties": { "CASE_ENQUI": 101002171191.0, "open_dt": "2017\/07\/26 11:43:00", "target_dt": null, "closed_dt": null, "OnTime_Sta": "ONTIME", "CASE_STATU": "Open", "CLOSURE_RE": "NA", "CASE_TITLE": "Animal Noise Disturbances", "SUBJECT": "Animal Control", "REASON": "Animal Issues", "TYPE": "Animal Noise Disturbances", "QUEUE": "INFO01_GenericeFormforOtherServiceRequestTypes", "Department": "INFO", "SubmittedP": null, "ClosedPhot": null, "Location": "103 Myrtle St Boston MA 02114", "Fire_distr": 3, "pwd_distri": "1B", "city_counc": 8, "police_dis": "A1", "neighborho": "Beacon Hill", "neighbor_1": 14, "ward": "Ward 5", "precinct": "0504", "LOCATION_S": "103 Myrtle St", "LOCATION_Z": "2114", "Latitude": 42.3594, "Longitude": -71.0683, "Source": "Employee Generated" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.062750193657195, 42.359379033888715 ], [ -71.062762931270129, 42.359120628049837 ], [ -71.062797520879329, 42.358863325269766 ], [ -71.062853825712565, 42.358608140985659 ], [ -71.062931623306326, 42.358356082262105 ], [ -71.063030606387613, 42.358108143817056 ], [ -71.063150384090591, 42.357865304096912 ], [ -71.063290483502584, 42.357628521415897 ], [ -71.063450351533717, 42.357398730174936 ], [ -71.063629357102585, 42.357176837175238 ], [ -71.063826793629246, 42.356963718040674 ], [ -71.064041881825815, 42.356760213763636 ], [ -71.064273772773447, 42.356567127387372 ], [ -71.064521551273629, 42.356385220838234 ], [ -71.064784239460593, 42.356215211920251 ], [ -71.065060800660376, 42.356057771483854 ], [ -71.065350143481567, 42.355913520779843 ], [ -71.065651126121494, 42.355783029009089 ], [ -71.065962560870716, 42.355666811077597 ], [ -71.066283218798304, 42.355565325565735 ], [ -71.066611834599399, 42.355478972919698 ], [ -71.066947111585819, 42.355408093872242 ], [ -71.067287726800302, 42.355352968098906 ], [ -71.067632336233842, 42.355313813115089 ], [ -71.067979580126234, 42.35529078341829 ], [ -71.068328088328272, 42.355283969878833 ], [ -71.068676485704984, 42.355293399381459 ], [ -71.069023397558439, 42.355319034719386 ], [ -71.06936745504882, 42.355360774740973 ], [ -71.069707300592469, 42.355418454748659 ], [ -71.070041593215706, 42.355491847148421 ], [ -71.070369013843106, 42.355580662347343 ], [ -71.070688270499872, 42.355684549895656 ], [ -71.070998103407334, 42.355803099868751 ], [ -71.071297289951957, 42.355935844483916 ], [ -71.071584649507884, 42.356082259945197 ], [ -71.071859048094439, 42.356241768509108 ], [ -71.072119402849808, 42.356413740763408 ], [ -71.072364686303644, 42.356597498109515 ], [ -71.072593930431538, 42.356792315439158 ], [ -71.072806230475393, 42.356997423994422 ], [ -71.073000748514687, 42.357212014400254 ], [ -71.073176716774384, 42.357435239857104 ], [ -71.073333440656711, 42.357666219481509 ], [ -71.073470301484363, 42.35790404178109 ], [ -71.073586758944714, 42.358147768250653 ], [ -71.073682353225109, 42.358396437074909 ], [ -71.073756706830849, 42.35864906692327 ], [ -71.073809526078506, 42.358904660822013 ], [ -71.073840602258869, 42.359162210088108 ], [ -71.073849812464601, 42.359420698309677 ], [ -71.073837120079503, 42.35967910535696 ], [ -71.073802574927228, 42.359936411408285 ], [ -71.073746313078871, 42.360191600974879 ], [ -71.073668556320101, 42.360443666908864 ], [ -71.073569611279865, 42.36069161437856 ], [ -71.073449868224088, 42.360934464795193 ], [ -71.073309799519052, 42.361171259675928 ], [ -71.07314995777034, 42.361401064427398 ], [ -71.0729709736449, 42.361622972035363 ], [ -71.072773553384465, 42.361836106645555 ], [ -71.072558476020419, 42.362039627021495 ], [ -71.072326590300761, 42.362232729866051 ], [ -71.072078811341555, 42.362414652993216 ], [ -71.071816117015814, 42.362584678337448 ], [ -71.071539544094307, 42.362742134789265 ], [ -71.071250184153271, 42.362886400845341 ], [ -71.070949179265426, 42.363016907062665 ], [ -71.070637717491053, 42.363133138307411 ], [ -71.07031702818729, 42.363234635789233 ], [ -71.069988377153791, 42.363320998873171 ], [ -71.069653061634384, 42.36339188666188 ], [ -71.069312405194069, 42.363447019341955 ], [ -71.068967752491929, 42.363486179289048 ], [ -71.068620463970589, 42.363509211927408 ], [ -71.068271910483048, 42.363516026340335 ], [ -71.067923467878515, 42.363506595629261 ], [ -71.06757651156812, 42.363480957020094 ], [ -71.06723241109286, 42.36343921171602 ], [ -71.066892524714234, 42.363381524497925 ], [ -71.066558194049932, 42.363308123073544 ], [ -71.066230738775332, 42.363219297178098 ], [ -71.065911451411623, 42.363115397430086 ], [ -71.065601592221711, 42.362996833946454 ], [ -71.065302384233675, 42.362864074723014 ], [ -71.065015008411507, 42.362717643786119 ], [ -71.064740598992429, 42.362558119123307 ], [ -71.0644802390091, 42.362386130400701 ], [ -71.064234956014289, 42.362202356476594 ], [ -71.064005718025186, 42.362007522720702 ], [ -71.063793429703054, 42.361802398149983 ], [ -71.063598928783591, 42.361587792392093 ], [ -71.063422982771797, 42.361364552488673 ], [ -71.063266285914636, 42.361133559551057 ], [ -71.063129456463187, 42.360895725281502 ], [ -71.063013034235226, 42.360651988374016 ], [ -71.06291747848779, 42.360403310808522 ], [ -71.062843166107925, 42.360150674053415 ], [ -71.062790390128839, 42.359895075191389 ], [ -71.062759358577438, 42.359637522983739 ], [ -71.062750193657195, 42.359379033888715 ] ] ] ] } },
{ "type": "Feature", "properties": { "CASE_ENQUI": 101001960228.0, "open_dt": "2016\/11\/28 21:34:00", "target_dt": null, "closed_dt": null, "OnTime_Sta": "ONTIME", "CASE_STATU": "Open", "CLOSURE_RE": "NA", "CASE_TITLE": "Animal Noise Disturbances", "SUBJECT": "Animal Control", "REASON": "Animal Issues", "TYPE": "Animal Noise Disturbances", "QUEUE": "INFO01_GenericeFormforOtherServiceRequestTypes", "Department": "INFO", "SubmittedP": null, "ClosedPhot": null, "Location": "INTERSECTION of Washington St & Cornell St Roslindale MA", "Fire_distr": 12, "pwd_distri": "06", "city_counc": 5, "police_dis": "E5", "neighborho": "Roslindale", "neighbor_1": 10, "ward": "20", "precinct": "2009", "LOCATION_S": "INTERSECTION Washington St & Cornell St", "LOCATION_Z": "NA", "Latitude": 42.3594, "Longitude": -71.0587, "Source": "Constituent Call" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.053150196894379, 42.359378570633332 ], [ -71.053162973721257, 42.359120165859295 ], [ -71.053197602376386, 42.358862865968121 ], [ -71.053253945933477, 42.358607686385497 ], [ -71.053331781776151, 42.358355634157469 ], [ -71.053430802480563, 42.358107703976309 ], [ -71.053550617032371, 42.357864874255824 ], [ -71.053690752373541, 42.35762810327072 ], [ -71.053850655272427, 42.357398325375769 ], [ -71.054029694510092, 42.357176447319482 ], [ -71.054227163373753, 42.356963344666745 ], [ -71.054442282447951, 42.356759858344908 ], [ -71.054674202692055, 42.356566791326365 ], [ -71.054922008792005, 42.356384905461027 ], [ -71.055184722773149, 42.356214918471338 ], [ -71.055461307859787, 42.356057501121164 ], [ -71.055750672566319, 42.35591327457022 ], [ -71.056051675003744, 42.355782807924022 ], [ -71.056363127384515, 42.355666615989477 ], [ -71.0566838007082, 42.355565157244357 ], [ -71.057012429609216, 42.355478832029235 ], [ -71.057347717347739, 42.355407980968621 ], [ -71.057688340924045, 42.355352883627624 ], [ -71.058032956296202, 42.355313757409441 ], [ -71.058380203680571, 42.355290756698082 ], [ -71.058728712914203, 42.355283972249502 ], [ -71.059077108858006, 42.35529343083364 ], [ -71.059424016819733, 42.355319095128984 ], [ -71.059768067974915, 42.355360863869649 ], [ -71.060107904764877, 42.355418572244702 ], [ -71.060442186250441, 42.355491992548224 ], [ -71.060769593400124, 42.355580835077184 ], [ -71.061088834292278, 42.355684749273948 ], [ -71.061398649210389, 42.355803325108795 ], [ -71.061697815611879, 42.355936094696958 ], [ -71.061985152950356, 42.356082534143894 ], [ -71.062259527332714, 42.356242065611525 ], [ -71.062519855992647, 42.356414059597157 ], [ -71.06276511156274, 42.356597837416487 ], [ -71.062994326128546, 42.356792673880449 ], [ -71.06320659504857, 42.356997800155604 ], [ -71.063401080525082, 42.357212406796947 ], [ -71.063577014911516, 42.35743564694085 ], [ -71.063733703743679, 42.357666639645885 ], [ -71.063870528482582, 42.357904473368031 ], [ -71.063986948957975, 42.358148209557029 ], [ -71.064082505503123, 42.358396886359174 ], [ -71.064156820772226, 42.358649522412378 ], [ -71.064209601233117, 42.358905120718411 ], [ -71.06424063832965, 42.359162672576858 ], [ -71.06424980930872, 42.359421161565571 ], [ -71.064237077708938, 42.35967956755173 ], [ -71.064202493508716, 42.359936870717817 ], [ -71.064146192933265, 42.360192055586445 ], [ -71.064068397921119, 42.36044411502828 ], [ -71.063969415252217, 42.360692054237212 ], [ -71.063849635341029, 42.360934894657049 ], [ -71.063709530699299, 42.361171677844389 ], [ -71.063549654074507, 42.361401469252016 ], [ -71.063370636271287, 42.361623361918362 ], [ -71.063173183664333, 42.361836480048019 ], [ -71.062958075412737, 42.362039982469675 ], [ -71.062726160386461, 42.36223306595695 ], [ -71.062478353817284, 42.362414968400266 ], [ -71.062215633687245, 42.3625849718157 ], [ -71.061939036869006, 42.362742405180335 ], [ -71.061649655033207, 42.362886647081943 ], [ -71.061348630338955, 42.363017128172878 ], [ -71.061037150924847, 42.363133333418425 ], [ -71.060716446217597, 42.36323480413094 ], [ -71.060387782077768, 42.363321139781057 ], [ -71.0600524558009, 42.363391999579761 ], [ -71.059711790994484, 42.363447103824107 ], [ -71.059367132350658, 42.363486235002007 ], [ -71.059019840335537, 42.36350923865124 ], [ -71.05867128581589, 42.363516023969552 ], [ -71.058322844644991, 42.363506564173257 ], [ -71.057975892228356, 42.363480896603008 ], [ -71.057631798091521, 42.363439122576345 ], [ -71.05729192047103, 42.363381406987507 ], [ -71.056957600949971, 42.363307977656213 ], [ -71.056630159159667, 42.363219124427893 ], [ -71.056310887568074, 42.363115198028879 ], [ -71.05600104637584, 42.362996608681357 ], [ -71.055701858539933, 42.362863824483149 ], [ -71.05541450494475, 42.36271736955927 ], [ -71.055140119739775, 42.362557821991849 ], [ -71.054879785862013, 42.362385811537479 ], [ -71.054634530761163, 42.362202017140177 ], [ -71.054405322344266, 42.362007164250485 ], [ -71.054193065155815, 42.361802021960848 ], [ -71.053998596808583, 42.36158739996884 ], [ -71.053822684678963, 42.361364145380215 ], [ -71.053666022880151, 42.361133139364156 ], [ -71.053529229524813, 42.360895293674638 ], [ -71.053412844288246, 42.360651547050637 ], [ -71.05331732628143, 42.360402861510416 ], [ -71.053243052242451, 42.360150218553862 ], [ -71.053190315053186, 42.359894615288091 ], [ -71.053159322587433, 42.359637060491771 ], [ -71.053150196894379, 42.359378570633332 ] ] ] ] } },
{ "type": "Feature", "properties": { "CASE_ENQUI": 101001801423.0, "open_dt": "2016\/05\/27 19:57:00", "target_dt": null, "closed_dt": null, "OnTime_Sta": "ONTIME", "CASE_STATU": "Open", "CLOSURE_RE": "NA", "CASE_TITLE": "Animal Noise Disturbances", "SUBJECT": "Animal Control", "REASON": "Animal Issues", "TYPE": "Animal Noise Disturbances", "QUEUE": "INFO01_GenericeFormforOtherServiceRequestTypes", "Department": "INFO", "SubmittedP": null, "ClosedPhot": null, "Location": "40 S Russell St Boston MA 02114", "Fire_distr": 3, "pwd_distri": "1B", "city_counc": 1, "police_dis": "A1", "neighborho": "Beacon Hill", "neighbor_1": 3, "ward": "Ward 3", "precinct": "0306", "LOCATION_S": "40 S Russell St", "LOCATION_Z": "2114", "Latitude": 42.36, "Longitude": -71.0658, "Source": "Employee Generated" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.060250141854894, 42.359978913250799 ], [ -71.060262889800939, 42.359720507723566 ], [ -71.060297489906759, 42.35946320572998 ], [ -71.060353805358744, 42.359208022704109 ], [ -71.060431613651431, 42.358955965705555 ], [ -71.060530607469644, 42.358708029445467 ], [ -71.060650395905128, 42.358465192361649 ], [ -71.060790506002888, 42.358228412757889 ], [ -71.060950384630885, 42.357998625022958 ], [ -71.061129400665891, 42.357776735944213 ], [ -71.061326847486697, 42.35756362113009 ], [ -71.061541945764759, 42.357360121555885 ], [ -71.061773846541499, 42.357167040246331 ], [ -71.062021634579594, 42.356985139107721 ], [ -71.062284331975675, 42.356815135922808 ], [ -71.062560902019442, 42.356657701519332 ], [ -71.062850253284637, 42.356513457124322 ], [ -71.063151243935224, 42.356382971913746 ], [ -71.063462686230167, 42.356266760767703 ], [ -71.063783351208798, 42.356165282239814 ], [ -71.064111973538431, 42.356078936748716 ], [ -71.064447256505161, 42.356008064998896 ], [ -71.064787877128097, 42.355952946637125 ], [ -71.065132491376914, 42.355913799149548 ], [ -71.065479739472423, 42.355890777004099 ], [ -71.065828251248831, 42.355883971041287 ], [ -71.066176651557072, 42.355893408115975 ], [ -71.066523565687632, 42.355919050991503 ], [ -71.066867624791726, 42.355960798486471 ], [ -71.067207471279332, 42.35601848587384 ], [ -71.067541764173015, 42.356091885530468 ], [ -71.067869184396301, 42.356180707834802 ], [ -71.068188439975955, 42.35628460230901 ], [ -71.068498271137599, 42.356403159001218 ], [ -71.068797455274535, 42.35653591010216 ], [ -71.069084811770438, 42.35668233179026 ], [ -71.069359206656642, 42.356841846297527 ], [ -71.069619557085943, 42.357013824188201 ], [ -71.069864835605088, 42.357197586841501 ], [ -71.070094074209081, 42.357392409128181 ], [ -71.070306368161624, 42.357597522270773 ], [ -71.070500879566225, 42.357812116876126 ], [ -71.070676840674011, 42.358035346128091 ], [ -71.070833556915417, 42.358266329128234 ], [ -71.070970409643266, 42.35850415437087 ], [ -71.071086858576905, 42.358747883339184 ], [ -71.071182443937317, 42.358996554207991 ], [ -71.071256788264975, 42.359249185638639 ], [ -71.071309597913071, 42.359504780651186 ], [ -71.07134066421024, 42.359762330558162 ], [ -71.071349864288194, 42.360020818945173 ], [ -71.071337161570654, 42.360279225681822 ], [ -71.071302605922057, 42.360536530947606 ], [ -71.071246333454937, 42.360791719256873 ], [ -71.071168565996842, 42.361043783466691 ], [ -71.07106961021897, 42.361291728752207 ], [ -71.070949856429635, 42.361534576533252 ], [ -71.070809777037439, 42.361771368337372 ], [ -71.070649924690215, 42.362001169583344 ], [ -71.07047093009669, 42.362223073270776 ], [ -71.070273499539965, 42.362436203560847 ], [ -71.070058412092038, 42.362639719234117 ], [ -71.069826516540743, 42.362832817012084 ], [ -71.069578728040923, 42.363014734728637 ], [ -71.069316024503308, 42.363184754339649 ], [ -71.069039442735018, 42.363342204758268 ], [ -71.068750074347221, 42.36348646450493 ], [ -71.068449061445975, 42.363616964161579 ], [ -71.068137592123236, 42.363733188620238 ], [ -71.067816895765915, 42.36383467911741 ], [ -71.06748823820152, 42.363921035045657 ], [ -71.067152916699698, 42.363991915535863 ], [ -71.066812254849012, 42.364047040803477 ], [ -71.066467597329975, 42.364086193253378 ], [ -71.066120304604198, 42.364109218339429 ], [ -71.065771747541305, 42.364116025174724 ], [ -71.065423302004575, 42.364106586890649 ], [ -71.065076343416763, 42.364080940742923 ], [ -71.064732241327818, 42.364039187964572 ], [ -71.064392354005619, 42.36398149336592 ], [ -71.06405802307161, 42.363908084683878 ], [ -71.063730568202175, 42.363819251682301 ], [ -71.063411281916927, 42.363715345007726 ], [ -71.06310142447451, 42.363596774804478 ], [ -71.062802218896095, 42.363464009094841 ], [ -71.062514846136139, 42.363317571930807 ], [ -71.062240440419785, 42.363158041324446 ], [ -71.061980084765054, 42.362986046965396 ], [ -71.061734806707619, 42.362802267734139 ], [ -71.06150557424516, 42.362607429021388 ], [ -71.061293292017126, 42.362402299863632 ], [ -71.061098797735141, 42.362187689906619 ], [ -71.060922858878001, 42.361964446208596 ], [ -71.060766169664404, 42.361733449895816 ], [ -71.06062934831526, 42.36149561268391 ], [ -71.060512934616355, 42.361251873278484 ], [ -71.060417387791048, 42.361003193669269 ], [ -71.060343084691141, 42.360750555332771 ], [ -71.06029031831325, 42.360494955357893 ], [ -71.060259296646336, 42.360237402510307 ], [ -71.060250141854894, 42.359978913250799 ] ] ] ] } },
{ "type": "Feature", "properties": { "CASE_ENQUI": 101001530373.0, "open_dt": "2015\/08\/25 19:42:00", "target_dt": null, "closed_dt": null, "OnTime_Sta": "ONTIME", "CASE_STATU": "Open", "CLOSURE_RE": "NA", "CASE_TITLE": "Animal Noise Disturbances", "SUBJECT": "Animal Control", "REASON": "Animal Issues", "TYPE": "Animal Noise Disturbances", "QUEUE": "INFO01_GenericeFormforOtherServiceRequestTypes", "Department": "INFO", "SubmittedP": null, "ClosedPhot": null, "Location": "41 S Russell St Boston MA 02114", "Fire_distr": 3, "pwd_distri": "1B", "city_counc": 1, "police_dis": "A1", "neighborho": "Beacon Hill", "neighbor_1": 3, "ward": "Ward 3", "precinct": "0306", "LOCATION_S": "41 S Russell St", "LOCATION_Z": "2114", "Latitude": 42.36, "Longitude": -71.0661, "Source": "Employee Generated" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.060550141754291, 42.359978927727539 ], [ -71.060562888474891, 42.359720522167031 ], [ -71.060597487360511, 42.359463220083207 ], [ -71.060653801602371, 42.359208036910431 ], [ -71.06073160869974, 42.358955979708917 ], [ -71.060830601342204, 42.358708043190624 ], [ -71.060950388626154, 42.35846520579436 ], [ -71.0610904976011, 42.358228425825104 ], [ -71.061250375139451, 42.357998637673127 ], [ -71.061429390122285, 42.357776748127414 ], [ -71.061626835932515, 42.357563632798261 ], [ -71.061841933245631, 42.357360132663004 ], [ -71.062073833106822, 42.357167050748508 ], [ -71.062321620282404, 42.356985148963574 ], [ -71.062584316872375, 42.356815145093407 ], [ -71.062860886169645, 42.356657709968509 ], [ -71.063150236750886, 42.356513464818732 ], [ -71.06345122678276, 42.356382978823021 ], [ -71.063762668526678, 42.356266766864593 ], [ -71.064083333024143, 42.356165287500239 ], [ -71.064411954944376, 42.356078941151935 ], [ -71.064747237575062, 42.356008068527558 ], [ -71.065087857936646, 42.355952949277267 ], [ -71.065432471999856, 42.355913800890768 ], [ -71.06577971998621, 42.35589077783952 ], [ -71.066128231730346, 42.355883970967625 ], [ -71.066476632083308, 42.355893407133507 ], [ -71.066823546335456, 42.355919049104124 ], [ -71.067167605637493, 42.35596079570162 ], [ -71.067507452398615, 42.356018482202508 ], [ -71.067841745640322, 42.356091880987123 ], [ -71.068169166284761, 42.356180702437392 ], [ -71.068488422357049, 42.356284596078822 ], [ -71.068798254080818, 42.35640315196283 ], [ -71.069097438847209, 42.356535902283362 ], [ -71.069384796037383, 42.356682323221904 ], [ -71.069659191679946, 42.356841837013398 ], [ -71.069919542924723, 42.357013814224949 ], [ -71.070164822315206, 42.357197576238448 ], [ -71.070394061843004, 42.35739239792715 ], [ -71.070606356768167, 42.357597510515987 ], [ -71.070800869190336, 42.357812104613934 ], [ -71.070976831356646, 42.358035333406917 ], [ -71.071133548693368, 42.358266315998264 ], [ -71.071270402548976, 42.358504140883937 ], [ -71.071386852638398, 42.358747869548488 ], [ -71.071482439178041, 42.358996540167965 ], [ -71.071556784703731, 42.359249171404691 ], [ -71.071609595563913, 42.359504766279471 ], [ -71.071640663082462, 42.359762316105424 ], [ -71.071649864386259, 42.360020804468427 ], [ -71.071637162894191, 42.360279211238208 ], [ -71.071602608465867, 42.360536516594124 ], [ -71.071546337208972, 42.36079170505019 ], [ -71.071468570946323, 42.361043769462853 ], [ -71.071369616344356, 42.361291715006487 ], [ -71.071249863706768, 42.361534563099909 ], [ -71.071109785437642, 42.36177135526944 ], [ -71.070949934180305, 42.362001156932394 ], [ -71.07077094063925, 42.362223061086731 ], [ -71.070573511093372, 42.36243619189176 ], [ -71.070358424610717, 42.362639708126103 ], [ -71.070126529975269, 42.362832806508969 ], [ -71.069878742338318, 42.363014724871874 ], [ -71.069616039607112, 42.36318474516812 ], [ -71.069339458585631, 42.36334219630821 ], [ -71.069050090882087, 42.363486456809682 ], [ -71.068749078599836, 42.363616957251523 ], [ -71.068437609828365, 42.363733182522658 ], [ -71.068116913952423, 42.363834673856331 ], [ -71.067788256797655, 42.363921030641883 ], [ -71.067452935632019, 42.363991912006767 ], [ -71.067112274042842, 42.364047038162994 ], [ -71.066767616709512, 42.36408619151193 ], [ -71.066420324092945, 42.364109217503895 ], [ -71.066071767062354, 42.3641160252484 ], [ -71.065723321480846, 42.364106587873231 ], [ -71.065376362771403, 42.364080942630544 ], [ -71.065032260484401, 42.364039190749772 ], [ -71.064692372888544, 42.363981497037727 ], [ -71.06435804160634, 42.363908089227763 ], [ -71.064030586315553, 42.363819257080365 ], [ -71.063711299537445, 42.363715351238639 ], [ -71.063401441532633, 42.363596781843647 ], [ -71.063102235324493, 42.363464016914492 ], [ -71.062814861869953, 42.363317580500059 ], [ -71.062540455396928, 42.363158050609478 ], [ -71.062280098926408, 42.362986056929564 ], [ -71.062034819997308, 42.362802278338116 ], [ -71.061805586610731, 42.362607440223329 ], [ -71.061593303409779, 42.362402311619306 ], [ -71.061398808109942, 42.362187702169628 ], [ -71.06122286819398, 42.361964458930544 ], [ -71.061066177884825, 42.361733463026489 ], [ -71.06092935540768, 42.361495626171482 ], [ -71.060812940552793, 42.361251887069699 ], [ -71.060717392548085, 42.361003207709722 ], [ -71.060643088250032, 42.36075056956706 ], [ -71.060590320659941, 42.360494969729828 ], [ -71.060559297771619, 42.360237416963159 ], [ -71.060550141754291, 42.359978927727539 ] ] ] ] } },
{ "type": "Feature", "properties": { "CASE_ENQUI": 101001517343.0, "open_dt": "2015\/08\/10 14:50:00", "target_dt": null, "closed_dt": null, "OnTime_Sta": "ONTIME", "CASE_STATU": "Open", "CLOSURE_RE": "NA", "CASE_TITLE": "Animal Noise Disturbances", "SUBJECT": "Animal Control", "REASON": "Animal Issues", "TYPE": "Animal Noise Disturbances", "QUEUE": "INFO01_GenericeFormforOtherServiceRequestTypes", "Department": "INFO", "SubmittedP": null, "ClosedPhot": null, "Location": "120 Charles St Boston MA 02114", "Fire_distr": 3, "pwd_distri": "1B", "city_counc": 8, "police_dis": "A1", "neighborho": "Back Bay", "neighbor_1": 14, "ward": "Ward 5", "precinct": "0511", "LOCATION_S": "120 Charles St", "LOCATION_Z": "2114", "Latitude": 42.3592, "Longitude": -71.0709, "Source": "Constituent Call" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.065350210338522, 42.359179159353246 ], [ -71.065362937290672, 42.35892075321501 ], [ -71.065397516215455, 42.358663449641611 ], [ -71.065453810382849, 42.358408264073361 ], [ -71.065531597371347, 42.358156203579888 ], [ -71.06563056994986, 42.357908262886149 ], [ -71.065750337293977, 42.357665420447482 ], [ -71.065890426531894, 42.357428634588764 ], [ -71.066050284613894, 42.357198839723495 ], [ -71.066229280497794, 42.356976942667195 ], [ -71.066426707641881, 42.356763819059751 ], [ -71.066641786795287, 42.356560309911238 ], [ -71.066873669074837, 42.356367218284049 ], [ -71.06712143931621, 42.356185306125319 ], [ -71.067384119686196, 42.356015291261201 ], [ -71.067660673541695, 42.355857844565612 ], [ -71.06795000952026, 42.355713587314021 ], [ -71.068250985846205, 42.355583088733169 ], [ -71.068562414834958, 42.355466863755893 ], [ -71.068883067578355, 42.355365370990391 ], [ -71.069211678791973, 42.355279010911524 ], [ -71.069546951805734, 42.355208124281276 ], [ -71.069887563678009, 42.355152990805173 ], [ -71.070232170412993, 42.355113828029005 ], [ -71.070579412261125, 42.355090790481007 ], [ -71.070927919081271, 42.35508396906247 ], [ -71.071276315743887, 42.355093390689255 ], [ -71.071623227553886, 42.355119018185633 ], [ -71.071967285671604, 42.355160750430919 ], [ -71.072307132510929, 42.355218422758213 ], [ -71.07264142709306, 42.355291807603834 ], [ -71.07296885033486, 42.355380615404627 ], [ -71.073288110251184, 42.35548449574005 ], [ -71.073597947050573, 42.355603038713959 ], [ -71.073897138104101, 42.355735776571251 ], [ -71.074184502768134, 42.355882185542612 ], [ -71.074458907041873, 42.356041687910214 ], [ -71.074719268041036, 42.356213654286229 ], [ -71.074964558270679, 42.356397406095319 ], [ -71.075193809679675, 42.356592218251016 ], [ -71.075406117481194, 42.356797322015865 ], [ -71.075600643724115, 42.35701190803367 ], [ -71.075776620601061, 42.357235129522252 ], [ -71.075933353480238, 42.357466105613774 ], [ -71.076070223648827, 42.357703924829849 ], [ -71.076186690757424, 42.357947648677417 ], [ -71.076282294955263, 42.358196315351556 ], [ -71.076356658708505, 42.358448943530171 ], [ -71.076409488293706, 42.358704536246123 ], [ -71.076440574960841, 42.358962084821052 ], [ -71.076449795761221, 42.359220572845835 ], [ -71.076437114036821, 42.35947898019149 ], [ -71.076402579569233, 42.359736287035155 ], [ -71.076346328387359, 42.359991477884954 ], [ -71.076268582234761, 42.360243545587934 ], [ -71.076169647698578, 42.360491495305453 ], [ -71.076049915003225, 42.360734348439877 ], [ -71.075909856474098, 42.360971146497633 ], [ -71.075750024676623, 42.361200954872821 ], [ -71.075571050238437, 42.361422866536927 ], [ -71.075373639363065, 42.36163600561963 ], [ -71.075158571044781, 42.361839530866838 ], [ -71.074926693995934, 42.362032638962226 ], [ -71.074678923298293, 42.362214567698992 ], [ -71.074416236792302, 42.3623845989895 ], [ -71.074139671217822, 42.3625420617008 ], [ -71.073850318122098, 42.36268633430484 ], [ -71.073549319550793, 42.362816847332773 ], [ -71.073237863539262, 42.362933085623901 ], [ -71.072917179421879, 42.363034590360073 ], [ -71.072588532977818, 42.363120960877666 ], [ -71.072253221432803, 42.363191856250012 ], [ -71.071912568336089, 42.363246996633784 ], [ -71.071567918333599, 42.363286164374195 ], [ -71.071220631857287, 42.363309204864763 ], [ -71.070872079752093, 42.363316027157744 ], [ -71.070523637861712, 42.363306604323562 ], [ -71.070176681594532, 42.363280973556897 ], [ -71.069832580491308, 42.363239236030111 ], [ -71.069492692816056, 42.363181556493281 ], [ -71.069158360191622, 42.363108162623881 ], [ -71.068830902301059, 42.363019344127331 ], [ -71.06851161167593, 42.362915451592862 ], [ -71.068201748592017, 42.362796895109028 ], [ -71.067902536092774, 42.362664142643922 ], [ -71.067615155160013, 42.362517718197296 ], [ -71.067340740051151, 42.362358199731027 ], [ -71.067080373821298, 42.362186216886805 ], [ -71.066835084047909, 42.362002448499688 ], [ -71.066605838774933, 42.361807619917599 ], [ -71.066393542692396, 42.361602500137046 ], [ -71.066199033566633, 42.361387898766758 ], [ -71.066023078935046, 42.361164662831108 ], [ -71.065866373078649, 42.360933673425734 ], [ -71.065729534284046, 42.360695842239018 ], [ -71.065613102405891, 42.360452107952717 ], [ -71.065517536739321, 42.360203432536466 ], [ -71.065443214210532, 42.359950797450203 ], [ -71.065390427892808, 42.359695199770009 ], [ -71.065359385853839, 42.359437648252502 ], [ -71.065350210338522, 42.359179159353246 ] ] ] ] } },
{ "type": "Feature", "properties": { "CASE_ENQUI": 101001407008.0, "open_dt": "2015\/06\/10 20:40:00", "target_dt": null, "closed_dt": null, "OnTime_Sta": "ONTIME", "CASE_STATU": "Open", "CLOSURE_RE": "NA", "CASE_TITLE": "Animal Noise Disturbances", "SUBJECT": "Animal Control", "REASON": "Animal Issues", "TYPE": "Animal Noise Disturbances", "QUEUE": "INFO01_GenericeFormforOtherServiceRequestTypes", "Department": "INFO", "SubmittedP": null, "ClosedPhot": null, "Location": "29-31 Revere St Boston MA 02114", "Fire_distr": 3, "pwd_distri": "1B", "city_counc": 8, "police_dis": "A1", "neighborho": "Beacon Hill", "neighbor_1": 14, "ward": "Ward 5", "precinct": "0504", "LOCATION_S": "29-31 Revere St", "LOCATION_Z": "2114", "Latitude": 42.3597, "Longitude": -71.0673, "Source": "Employee Generated" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.061750167671974, 42.3596789856337 ], [ -71.061762909430243, 42.359420579922897 ], [ -71.061797503270896, 42.359163277460858 ], [ -71.061853812405062, 42.358908093683439 ], [ -71.061931614352176, 42.358656035653212 ], [ -71.062030601822116, 42.358408098085448 ], [ -71.062150383931709, 42.358165259423068 ], [ -71.0622904877509, 42.357928477976081 ], [ -71.06245036017242, 42.357698688140601 ], [ -71.06262937009754, 42.357476796712227 ], [ -71.062826810929124, 42.357263679308652 ], [ -71.063041903362304, 42.357060176915475 ], [ -71.063273798461537, 42.356867092568436 ], [ -71.063521581011912, 42.356685188185935 ], [ -71.063784273131674, 42.356515181563431 ], [ -71.064060838131354, 42.356357743542318 ], [ -71.064350184604592, 42.356213495363804 ], [ -71.064651170734265, 42.356083006218853 ], [ -71.06496260879716, 42.355966791003084 ], [ -71.065283269849303, 42.355865308286155 ], [ -71.0656118885735, 42.355778958503244 ], [ -71.065947168270071, 42.355708082375784 ], [ -71.066287785970985, 42.355652959567806 ], [ -71.0666323976575, 42.355613807583005 ], [ -71.066979643560501, 42.355590780907065 ], [ -71.067328153522837, 42.355583970398342 ], [ -71.067676552402617, 42.355593402929657 ], [ -71.068023465495955, 42.355619041282303 ], [ -71.068367523958173, 42.355660784292702 ], [ -71.06870737020175, 42.355718467251478 ], [ -71.069041663250232, 42.355791862553005 ], [ -71.069369084026562, 42.355880680592918 ], [ -71.069688340555317, 42.355984570910209 ], [ -71.069998173058337, 42.356103123569383 ], [ -71.070297358923682, 42.356235870777098 ], [ -71.070584717528192, 42.356382288727168 ], [ -71.070859114894887, 42.356541799666289 ], [ -71.071119468166799, 42.35671377417286 ], [ -71.071364749879436, 42.356897533639412 ], [ -71.071593992015238, 42.357092352949266 ], [ -71.071806289823968, 42.357297463336749 ], [ -71.072000805393913, 42.357512055419548 ], [ -71.0721767709598, 42.357735282391459 ], [ -71.072333491934458, 42.357966263363089 ], [ -71.072470349652036, 42.35820408683675 ], [ -71.072586803812186, 42.358447814302579 ], [ -71.072682394615313, 42.358696483941337 ], [ -71.072756744580388, 42.358949114419275 ], [ -71.072809560038365, 42.359204708760132 ], [ -71.072840632294955, 42.359462258279159 ], [ -71.072849838458353, 42.359720746563468 ], [ -71.072837141928289, 42.359979153483074 ], [ -71.072802592544761, 42.360236459216772 ], [ -71.072746326395574, 42.360491648277026 ], [ -71.072668565283351, 42.360743713518005 ], [ -71.072569615854235, 42.36099166011072 ], [ -71.072449868391487, 42.361234509469895 ], [ -71.072309795278755, 42.361471303116844 ], [ -71.07214994913906, 42.361701106463066 ], [ -71.071970960656628, 42.361923012499865 ], [ -71.071773536090433, 42.362136145379161 ], [ -71.071558454488837, 42.362339663871339 ], [ -71.071326564616598, 42.362532764686691 ], [ -71.071078781606118, 42.362714685647177 ], [ -71.070816083346458, 42.362884708695866 ], [ -71.070539506623902, 42.363042162732334 ], [ -71.070250143029696, 42.363186426262708 ], [ -71.069949134650969, 42.363316929854037 ], [ -71.0696376695618, 42.363433158382797 ], [ -71.069316977132416, 42.363534653069401 ], [ -71.068988323174807, 42.363621013289915 ], [ -71.068653004944352, 42.363691898158272 ], [ -71.068312346016739, 42.363747027872634 ], [ -71.0679676910609, 42.363786184820334 ], [ -71.067620400528341, 42.36380921443746 ], [ -71.067271845280032, 42.36381602581924 ], [ -71.066923401172062, 42.363806592079115 ], [ -71.066576443621585, 42.36378095045486 ], [ -71.066232342174416, 42.363739202161618 ], [ -71.065892455095934, 42.36368151199207 ], [ -71.065558124006614, 42.363608107665591 ], [ -71.065230668583439, 42.363519278928877 ], [ -71.064911381348224, 42.363415376411609 ], [ -71.064601522563379, 42.363296810241714 ], [ -71.064302315255347, 42.363164048425567 ], [ -71.064014940385462, 42.363017614999769 ], [ -71.063740532187168, 42.362858087961662 ], [ -71.063480173688291, 42.362686096986756 ], [ -71.063234892435744, 42.362502320942212 ], [ -71.063005656439842, 42.362307485206173 ], [ -71.062793370353972, 42.362102358803398 ], [ -71.062598871904996, 42.361887751368698 ], [ -71.062422928588177, 42.361664509950408 ], [ -71.062266234639779, 42.361433515665773 ], [ -71.062129408299455, 42.361195680222473 ], [ -71.062012989372704, 42.360951942319033 ], [ -71.061917437103475, 42.360703263939349 ], [ -71.061843128365098, 42.360450626555057 ], [ -71.061790356176431, 42.360195027251279 ], [ -71.0617593285494, 42.359937474791067 ], [ -71.061750167671974, 42.3596789856337 ] ] ] ] } },
{ "type": "Feature", "properties": { "CASE_ENQUI": 101001376953.0, "open_dt": "2015\/05\/13 16:40:00", "target_dt": null, "closed_dt": null, "OnTime_Sta": "ONTIME", "CASE_STATU": "Open", "CLOSURE_RE": "NA", "CASE_TITLE": "Animal Noise Disturbances", "SUBJECT": "Animal Control", "REASON": "Animal Issues", "TYPE": "Animal Noise Disturbances", "QUEUE": "INFO01_GenericeFormforOtherServiceRequestTypes", "Department": "INFO", "SubmittedP": null, "ClosedPhot": null, "Location": "29-31 Revere St Boston MA 02114", "Fire_distr": 3, "pwd_distri": "1B", "city_counc": 8, "police_dis": "A1", "neighborho": "Beacon Hill", "neighbor_1": 14, "ward": "Ward 5", "precinct": "0504", "LOCATION_S": "29-31 Revere St", "LOCATION_Z": "2114", "Latitude": 42.3597, "Longitude": -71.0673, "Source": "Employee Generated" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.061750167671974, 42.3596789856337 ], [ -71.061762909430243, 42.359420579922897 ], [ -71.061797503270896, 42.359163277460858 ], [ -71.061853812405062, 42.358908093683439 ], [ -71.061931614352176, 42.358656035653212 ], [ -71.062030601822116, 42.358408098085448 ], [ -71.062150383931709, 42.358165259423068 ], [ -71.0622904877509, 42.357928477976081 ], [ -71.06245036017242, 42.357698688140601 ], [ -71.06262937009754, 42.357476796712227 ], [ -71.062826810929124, 42.357263679308652 ], [ -71.063041903362304, 42.357060176915475 ], [ -71.063273798461537, 42.356867092568436 ], [ -71.063521581011912, 42.356685188185935 ], [ -71.063784273131674, 42.356515181563431 ], [ -71.064060838131354, 42.356357743542318 ], [ -71.064350184604592, 42.356213495363804 ], [ -71.064651170734265, 42.356083006218853 ], [ -71.06496260879716, 42.355966791003084 ], [ -71.065283269849303, 42.355865308286155 ], [ -71.0656118885735, 42.355778958503244 ], [ -71.065947168270071, 42.355708082375784 ], [ -71.066287785970985, 42.355652959567806 ], [ -71.0666323976575, 42.355613807583005 ], [ -71.066979643560501, 42.355590780907065 ], [ -71.067328153522837, 42.355583970398342 ], [ -71.067676552402617, 42.355593402929657 ], [ -71.068023465495955, 42.355619041282303 ], [ -71.068367523958173, 42.355660784292702 ], [ -71.06870737020175, 42.355718467251478 ], [ -71.069041663250232, 42.355791862553005 ], [ -71.069369084026562, 42.355880680592918 ], [ -71.069688340555317, 42.355984570910209 ], [ -71.069998173058337, 42.356103123569383 ], [ -71.070297358923682, 42.356235870777098 ], [ -71.070584717528192, 42.356382288727168 ], [ -71.070859114894887, 42.356541799666289 ], [ -71.071119468166799, 42.35671377417286 ], [ -71.071364749879436, 42.356897533639412 ], [ -71.071593992015238, 42.357092352949266 ], [ -71.071806289823968, 42.357297463336749 ], [ -71.072000805393913, 42.357512055419548 ], [ -71.0721767709598, 42.357735282391459 ], [ -71.072333491934458, 42.357966263363089 ], [ -71.072470349652036, 42.35820408683675 ], [ -71.072586803812186, 42.358447814302579 ], [ -71.072682394615313, 42.358696483941337 ], [ -71.072756744580388, 42.358949114419275 ], [ -71.072809560038365, 42.359204708760132 ], [ -71.072840632294955, 42.359462258279159 ], [ -71.072849838458353, 42.359720746563468 ], [ -71.072837141928289, 42.359979153483074 ], [ -71.072802592544761, 42.360236459216772 ], [ -71.072746326395574, 42.360491648277026 ], [ -71.072668565283351, 42.360743713518005 ], [ -71.072569615854235, 42.36099166011072 ], [ -71.072449868391487, 42.361234509469895 ], [ -71.072309795278755, 42.361471303116844 ], [ -71.07214994913906, 42.361701106463066 ], [ -71.071970960656628, 42.361923012499865 ], [ -71.071773536090433, 42.362136145379161 ], [ -71.071558454488837, 42.362339663871339 ], [ -71.071326564616598, 42.362532764686691 ], [ -71.071078781606118, 42.362714685647177 ], [ -71.070816083346458, 42.362884708695866 ], [ -71.070539506623902, 42.363042162732334 ], [ -71.070250143029696, 42.363186426262708 ], [ -71.069949134650969, 42.363316929854037 ], [ -71.0696376695618, 42.363433158382797 ], [ -71.069316977132416, 42.363534653069401 ], [ -71.068988323174807, 42.363621013289915 ], [ -71.068653004944352, 42.363691898158272 ], [ -71.068312346016739, 42.363747027872634 ], [ -71.0679676910609, 42.363786184820334 ], [ -71.067620400528341, 42.36380921443746 ], [ -71.067271845280032, 42.36381602581924 ], [ -71.066923401172062, 42.363806592079115 ], [ -71.066576443621585, 42.36378095045486 ], [ -71.066232342174416, 42.363739202161618 ], [ -71.065892455095934, 42.36368151199207 ], [ -71.065558124006614, 42.363608107665591 ], [ -71.065230668583439, 42.363519278928877 ], [ -71.064911381348224, 42.363415376411609 ], [ -71.064601522563379, 42.363296810241714 ], [ -71.064302315255347, 42.363164048425567 ], [ -71.064014940385462, 42.363017614999769 ], [ -71.063740532187168, 42.362858087961662 ], [ -71.063480173688291, 42.362686096986756 ], [ -71.063234892435744, 42.362502320942212 ], [ -71.063005656439842, 42.362307485206173 ], [ -71.062793370353972, 42.362102358803398 ], [ -71.062598871904996, 42.361887751368698 ], [ -71.062422928588177, 42.361664509950408 ], [ -71.062266234639779, 42.361433515665773 ], [ -71.062129408299455, 42.361195680222473 ], [ -71.062012989372704, 42.360951942319033 ], [ -71.061917437103475, 42.360703263939349 ], [ -71.061843128365098, 42.360450626555057 ], [ -71.061790356176431, 42.360195027251279 ], [ -71.0617593285494, 42.359937474791067 ], [ -71.061750167671974, 42.3596789856337 ] ] ] ] } },
{ "type": "Feature", "properties": { "CASE_ENQUI": 101000970819.0, "open_dt": "2013\/11\/23 18:20:36", "target_dt": null, "closed_dt": null, "OnTime_Sta": "ONTIME", "CASE_STATU": "Open", "CLOSURE_RE": "NA", "CASE_TITLE": "Animal Noise Disturbances", "SUBJECT": "Animal Control", "REASON": "Animal Issues", "TYPE": "Animal Noise Disturbances", "QUEUE": "INFO01_GenericeFormforOtherServiceRequestTypes", "Department": "INFO", "SubmittedP": null, "ClosedPhot": null, "Location": "34 Anderson St Boston MA 02114", "Fire_distr": 3, "pwd_distri": "1B", "city_counc": 8, "police_dis": "A1", "neighborho": "Beacon Hill", "neighbor_1": 14, "ward": "Ward 5", "precinct": "0504", "LOCATION_S": "34 Anderson St", "LOCATION_Z": "2114", "Latitude": 42.36, "Longitude": -71.0676, "Source": "Constituent Call" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.0620501412523, 42.359979000111196 ], [ -71.062062881845648, 42.359720594384498 ], [ -71.062097474630264, 42.359463291849451 ], [ -71.062153782821426, 42.359208107942244 ], [ -71.062231583942292, 42.35895604972599 ], [ -71.062330570706024, 42.358708111916613 ], [ -71.06245035223219, 42.358465272958071 ], [ -71.062590455593067, 42.358228491161498 ], [ -71.062750327683176, 42.357998700924369 ], [ -71.06292933740508, 42.357776809043919 ], [ -71.06312677816247, 42.35756369113961 ], [ -71.06334187065076, 42.357360188198982 ], [ -71.063573765934166, 42.357167103259997 ], [ -71.06382154879708, 42.356985198243343 ], [ -71.064084241356497, 42.356815190947003 ], [ -71.064360806921215, 42.356657752214971 ], [ -71.064650154082628, 42.356513503291396 ], [ -71.064951141020913, 42.356383013370049 ], [ -71.065262580009673, 42.356266797349676 ], [ -71.065583242101255, 42.356165313803103 ], [ -71.065911861974371, 42.356078963168784 ], [ -71.066247142924809, 42.356008086171492 ], [ -71.066587761979591, 42.355952962478689 ], [ -71.066932375114646, 42.35591380959761 ], [ -71.067279622555134, 42.355890782017411 ], [ -71.067628134137834, 42.355883970600054 ], [ -71.067976534714461, 42.355893402221938 ], [ -71.068323449574464, 42.355919039667945 ], [ -71.068667509866131, 42.355960781778045 ], [ -71.069007357994806, 42.356018463846496 ], [ -71.069341652976547, 42.3560918582711 ], [ -71.069669075726679, 42.356180675450993 ], [ -71.069988334261978, 42.356284564928544 ], [ -71.070298168796413, 42.356403116771574 ], [ -71.070597356709996, 42.356535863189976 ], [ -71.070884717371484, 42.356682280380653 ], [ -71.071159116795798, 42.356841790593343 ], [ -71.071419472117825, 42.357013764409238 ], [ -71.071664755865029, 42.357197523223661 ], [ -71.071894000011781, 42.357392341922498 ], [ -71.072106299799941, 42.357597451742471 ], [ -71.072300817309952, 42.357812043303483 ], [ -71.072476784768924, 42.358035269801448 ], [ -71.072633507582154, 42.358266250348791 ], [ -71.0727703670766, 42.358504073449517 ], [ -71.072886822944895, 42.358747800595218 ], [ -71.07298241538065, 42.358996469967991 ], [ -71.073056766896443, 42.359249100235054 ], [ -71.073109583817086, 42.35950469442102 ], [ -71.073140657442508, 42.359762243841715 ], [ -71.073149864875518, 42.360020732084706 ], [ -71.073137169510815, 42.360279139020093 ], [ -71.073102621183807, 42.360536444826657 ], [ -71.073046355978136, 42.360791634016579 ], [ -71.072968595692672, 42.361043699443492 ], [ -71.072869646970318, 42.361291646277692 ], [ -71.072749900091523, 42.361534495932936 ], [ -71.07260982743766, 42.361771289929393 ], [ -71.072449981629873, 42.362001093677158 ], [ -71.07227099335114, 42.362223000165976 ], [ -71.072073568859594, 42.36243613354597 ], [ -71.071858487203301, 42.362639652585521 ], [ -71.07162659714723, 42.362832753992805 ], [ -71.071378813824538, 42.363014675587443 ], [ -71.071116115125491, 42.363184699309947 ], [ -71.070839537838083, 42.363342154057307 ], [ -71.070550173555844, 42.363486418332812 ], [ -71.070249164368576, 42.363616922700572 ], [ -71.069937698353556, 42.363733152033966 ], [ -71.069617004884648, 42.363834647550298 ], [ -71.069288349777992, 42.363921008622313 ], [ -71.068953030293457, 42.363991894360609 ], [ -71.068612370011721, 42.364047024959874 ], [ -71.068267713607028, 42.36408618280398 ], [ -71.067920421536627, 42.364109213325463 ], [ -71.067571864667542, 42.364116025615978 ], [ -71.06722341886227, 42.364106592785404 ], [ -71.066876459544645, 42.364080952067901 ], [ -71.066532356267501, 42.364039204675073 ], [ -71.066192467303409, 42.36398151539597 ], [ -71.06585813428029, 42.363908111946529 ], [ -71.065530676882773, 42.363819284069926 ], [ -71.065211387640488, 42.36371538239252 ], [ -71.064901526823732, 42.36359681703884 ], [ -71.064602317466978, 42.36346405601207 ], [ -71.064314940539646, 42.363317623345701 ], [ -71.064040530283322, 42.363158097034095 ], [ -71.06378016973396, 42.362986106749865 ], [ -71.063534886446547, 42.3628023313575 ], [ -71.063305648439425, 42.362607496232471 ], [ -71.063093360373941, 42.362402370397184 ], [ -71.06289885998477, 42.362187763484243 ], [ -71.062722914774795, 42.361964522539878 ], [ -71.062566218987826, 42.36173352867948 ], [ -71.062429390870705, 42.361495693609022 ], [ -71.062312970235936, 42.361251956025626 ], [ -71.062217416334278, 42.361003277911855 ], [ -71.06214310604544, 42.360750640738324 ], [ -71.062090332394433, 42.360495041589367 ], [ -71.062059303398925, 42.360237489227366 ], [ -71.0620501412523, 42.359979000111196 ] ] ] ] } }
]
}
Display the source blob
Display the rendered blob
Raw
Loading
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