Skip to content

Instantly share code, notes, and snippets.

@shimizu
Last active February 19, 2019 07:59
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shimizu/925bd1a92b63753608ef to your computer and use it in GitHub Desktop.
Save shimizu/925bd1a92b63753608ef to your computer and use it in GitHub Desktop.
leaflet.js Voronoi Diagram
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<meta http-equiv="content-language" content="ja">
<title>Mapbox(leaflet.js) Voronoi Diagram</title>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.css"/>
<style>
html, body{
height: 100%;
padding: 0px;
margin: 0px;
}
#map {
width:100%;
height: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet-src.js"></script>
<script>
d3.json('point.geojson', function(geojson){
mapDraw(geojson);
});
function mapDraw(geojson){
var pointdata = geojson.features;
//leaflet初期設定
var map = L.map('map');
map.setView([36.3894816, 139.0634281], 14);
map.on("viewreset moveend", update);
var mapLink = '<a href="http://openstreetmap.org">OpenStreetMap</a>';
L.tileLayer(
'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
{
attribution: 'Map data &copy; ' + mapLink,
maxZoom: 18
}
).addTo(map);
// オーバーレイレイヤ追加
map._initPathRoot();
var svg = d3.select("#map").select("svg");
var g = svg.append("g").attr("class", "leaflet-zoom-hide");
//ボロノイジェネレーター
var voronoi = d3.geom.voronoi()
.x(function(d) { return d.x; })
.y(function(d) { return d.y; });
update();
function update() {
//ピクセルポジション情報保存用
var positions = [];
//位置情報→ピクセルポジション変換
pointdata.forEach(function(d) {
var latlng = new L.LatLng(d.geometry.coordinates[1], d.geometry.coordinates[0]);
positions.push({
x :map.latLngToLayerPoint(latlng).x,
y :map.latLngToLayerPoint(latlng).y
});
});
//前サークルを削除
d3.selectAll('.AEDpoint').remove();
//サークル要素を追加
var circle = g.selectAll("circle")
.data(positions)
.enter()
.append("circle")
.attr("class", "AEDpoint")
.attr({
"cx":function(d, i) { return d.x; },
"cy":function(d, i) { return d.y; },
"r":2,
fill:"red"
});
//ボロノイ変換関数
var polygons = voronoi(positions);
polygons.forEach(function(v) { v.cell = v; });
//前ボロノイPathを削除
svg.selectAll(".volonoi").remove();
//path要素を追加
svg.selectAll("path")
.data(polygons)
.enter()
.append("svg:path")
.attr("class", "volonoi")
.attr({
"d": function(d) {
if(!d) return null;
return "M" + d.cell.join("L") + "Z";
},
stroke:"black",
fill:"none"
});
}
}
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "No": 12, "address": "群馬県高崎市吉井町多比良4373-1", "lat": 36.2325059, "lng": 138.9848659, "name": "牛伏ドリームセンター" }, "geometry": { "type": "Point", "coordinates": [ 138.9848659, 36.2325059 ] } },
{ "type": "Feature", "properties": { "No": 170, "address": "群馬県高崎市吉井町塩24-3", "lat": 36.2366108, "lng": 138.9772137, "name": "多胡小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9772137, 36.2366108 ] } },
{ "type": "Feature", "properties": { "No": 280, "address": "群馬県高崎市吉井町吉井川581", "lat": 36.2488596, "lng": 138.9890455, "name": "吉井中央中学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9890455, 36.2488596 ] } },
{ "type": "Feature", "properties": { "No": 286, "address": "群馬県高崎市吉井町吉井川598-2", "lat": 36.2493429, "lng": 138.9873068, "name": "吉井福祉センター" }, "geometry": { "type": "Point", "coordinates": [ 138.9873068, 36.2493429 ] } },
{ "type": "Feature", "properties": { "No": 5, "address": "群馬県高崎市吉井町石神321-1", "lat": 36.2507483, "lng": 139.00443250000001, "name": "入野中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.00443250000001, 36.2507483 ] } },
{ "type": "Feature", "properties": { "No": 288, "address": "群馬県高崎市吉井町吉井322", "lat": 36.2522508, "lng": 138.9852847, "name": "吉井保育所・吉井学童クラブ" }, "geometry": { "type": "Point", "coordinates": [ 138.9852847, 36.2522508 ] } },
{ "type": "Feature", "properties": { "No": 277, "address": "群馬県高崎市吉井町吉井285-2", "lat": 36.2530257, "lng": 138.98517630000001, "name": "吉井公民館・吉井文化会館" }, "geometry": { "type": "Point", "coordinates": [ 138.98517630000001, 36.2530257 ] } },
{ "type": "Feature", "properties": { "No": 266, "address": "群馬県高崎市吉井町吉井乙285", "lat": 36.2538034, "lng": 138.98540410000001, "name": "山種記念吉井図書館" }, "geometry": { "type": "Point", "coordinates": [ 138.98540410000001, 36.2538034 ] } },
{ "type": "Feature", "properties": { "No": 156, "address": "群馬県高崎市吉井町吉井川371", "lat": 36.2541701, "lng": 138.9889398, "name": "高崎市役所吉井支所" }, "geometry": { "type": "Point", "coordinates": [ 138.9889398, 36.2541701 ] } },
{ "type": "Feature", "properties": { "No": 284, "address": "群馬県高崎市吉井町長根1923-1", "lat": 36.2545864, "lng": 138.967964, "name": "吉井西幼稚園" }, "geometry": { "type": "Point", "coordinates": [ 138.967964, 36.2545864 ] } },
{ "type": "Feature", "properties": { "No": 282, "address": "群馬県高崎市吉井町長根1930-1", "lat": 36.2548809, "lng": 138.9692222, "name": "吉井西小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9692222, 36.2548809 ] } },
{ "type": "Feature", "properties": { "No": 290, "address": "群馬県高崎市吉井町吉井338-1", "lat": 36.2550115, "lng": 138.9801795, "name": "吉井幼稚園" }, "geometry": { "type": "Point", "coordinates": [ 138.9801795, 36.2550115 ] } },
{ "type": "Feature", "properties": { "No": 157, "address": "群馬県高崎市吉井町吉井486-1", "lat": 36.2550561, "lng": 138.98752880000001, "name": "高崎市吉井障害者自立支援センター こはぎ" }, "geometry": { "type": "Point", "coordinates": [ 138.98752880000001, 36.2550561 ] } },
{ "type": "Feature", "properties": { "No": 278, "address": "群馬県高崎市吉井町吉井235-1", "lat": 36.2554837, "lng": 138.98304590000001, "name": "吉井小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.98304590000001, 36.2554837 ] } },
{ "type": "Feature", "properties": { "No": 289, "address": "群馬県高崎市吉井町吉井472", "lat": 36.255581, "lng": 138.9867289, "name": "吉井保健センター" }, "geometry": { "type": "Point", "coordinates": [ 138.9867289, 36.255581 ] } },
{ "type": "Feature", "properties": { "No": 281, "address": "群馬県高崎市吉井町長根1966-1", "lat": 36.2556946, "lng": 138.96442260000001, "name": "吉井西学童保育クラブ" }, "geometry": { "type": "Point", "coordinates": [ 138.96442260000001, 36.2556946 ] } },
{ "type": "Feature", "properties": { "No": 4, "address": "群馬県高崎市吉井町小串130", "lat": 36.2561143, "lng": 139.0141895, "name": "入野小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0141895, 36.2561143 ] } },
{ "type": "Feature", "properties": { "No": 34, "address": "群馬県高崎市吉井町小串119-1", "lat": 36.2565281, "lng": 139.0137062, "name": "かぶら幼稚園" }, "geometry": { "type": "Point", "coordinates": [ 139.0137062, 36.2565281 ] } },
{ "type": "Feature", "properties": { "No": 283, "address": "群馬県高崎市吉井町本郷45", "lat": 36.2586222, "lng": 138.9718996, "name": "吉井西中学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9718996, 36.2586222 ] } },
{ "type": "Feature", "properties": { "No": 279, "address": "群馬県高崎市吉井町池1660", "lat": 36.2639189, "lng": 139.0009159, "name": "吉井体育施設管理事務所" }, "geometry": { "type": "Point", "coordinates": [ 139.0009159, 36.2639189 ] } },
{ "type": "Feature", "properties": { "No": 126, "address": "群馬県高崎市新町2010-1", "lat": 36.2651072, "lng": 139.1024324, "name": "新町第二小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1024324, 36.2651072 ] } },
{ "type": "Feature", "properties": { "No": 171, "address": "群馬県高崎市吉井町池1085", "lat": 36.2652854, "lng": 138.9968997, "name": "多胡碑記念館" }, "geometry": { "type": "Point", "coordinates": [ 138.9968997, 36.2652854 ] } },
{ "type": "Feature", "properties": { "No": 237, "address": "群馬県高崎市吉井町馬庭1033-1", "lat": 36.2668658, "lng": 139.0129144, "name": "馬庭小学校・吉井東学童保育クラブ" }, "geometry": { "type": "Point", "coordinates": [ 139.0129144, 36.2668658 ] } },
{ "type": "Feature", "properties": { "No": 129, "address": "群馬県高崎市新町1498-7", "lat": 36.267196, "lng": 139.1066902, "name": "新町鉄南長寿センター" }, "geometry": { "type": "Point", "coordinates": [ 139.1066902, 36.267196 ] } },
{ "type": "Feature", "properties": { "No": 123, "address": "群馬県高崎市新町1497", "lat": 36.2672432, "lng": 139.10607640000001, "name": "新町児童体育館" }, "geometry": { "type": "Point", "coordinates": [ 139.10607640000001, 36.2672432 ] } },
{ "type": "Feature", "properties": { "No": 121, "address": "群馬県高崎市新町1192-4", "lat": 36.2688099, "lng": 139.1113368, "name": "新町9区交流館" }, "geometry": { "type": "Point", "coordinates": [ 139.1113368, 36.2688099 ] } },
{ "type": "Feature", "properties": { "No": 10, "address": "群馬県高崎市吉井町下奥平205-1", "lat": 36.273004, "lng": 138.9666134, "name": "岩平小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9666134, 36.273004 ] } },
{ "type": "Feature", "properties": { "No": 131, "address": "群馬県高崎市新町729-3", "lat": 36.2734904, "lng": 139.11952460000001, "name": "新町福祉作業所" }, "geometry": { "type": "Point", "coordinates": [ 139.11952460000001, 36.2734904 ] } },
{ "type": "Feature", "properties": { "No": 209, "address": "群馬県高崎市吉井町南陽台3-16-1", "lat": 36.2736401, "lng": 139.0003628, "name": "南陽台小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0003628, 36.2736401 ] } },
{ "type": "Feature", "properties": { "No": 122, "address": "群馬県高崎市新町2271-1", "lat": 36.2752954, "lng": 139.1066706, "name": "新町公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.1066706, 36.2752954 ] } },
{ "type": "Feature", "properties": { "No": 255, "address": "群馬県高崎市山名町720-2", "lat": 36.2755849, "lng": 139.0396336, "name": "南八幡公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.0396336, 36.2755849 ] } },
{ "type": "Feature", "properties": { "No": 127, "address": "群馬県高崎市新町361-1", "lat": 36.275815, "lng": 139.1130476, "name": "新町中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1130476, 36.275815 ] } },
{ "type": "Feature", "properties": { "No": 124, "address": "群馬県高崎市新町3161", "lat": 36.2768843, "lng": 139.1124309, "name": "新町住民体育館" }, "geometry": { "type": "Point", "coordinates": [ 139.1124309, 36.2768843 ] } },
{ "type": "Feature", "properties": { "No": 259, "address": "群馬県高崎市山名町140-1", "lat": 36.2770318, "lng": 139.03415630000001, "name": "南八幡幼稚園" }, "geometry": { "type": "Point", "coordinates": [ 139.03415630000001, 36.2770318 ] } },
{ "type": "Feature", "properties": { "No": 125, "address": "群馬県高崎市新町345-1", "lat": 36.2770593, "lng": 139.1114255, "name": "新町第一小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1114255, 36.2770593 ] } },
{ "type": "Feature", "properties": { "No": 133, "address": "群馬県高崎市新町3154 -2", "lat": 36.2771399, "lng": 139.11328080000001, "name": "新町保健センター" }, "geometry": { "type": "Point", "coordinates": [ 139.11328080000001, 36.2771399 ] } },
{ "type": "Feature", "properties": { "No": 132, "address": "群馬県高崎市新町3190-1", "lat": 36.2777011, "lng": 139.11525280000001, "name": "新町文化ホール" }, "geometry": { "type": "Point", "coordinates": [ 139.11525280000001, 36.2777011 ] } },
{ "type": "Feature", "properties": { "No": 120, "address": "群馬県高崎市新町3273-1", "lat": 36.2783235, "lng": 139.12415730000001, "name": "新町温水プール" }, "geometry": { "type": "Point", "coordinates": [ 139.12415730000001, 36.2783235 ] } },
{ "type": "Feature", "properties": { "No": 128, "address": "群馬県高崎市新町3135-1", "lat": 36.2786038, "lng": 139.1148723, "name": "新町長寿センター" }, "geometry": { "type": "Point", "coordinates": [ 139.1148723, 36.2786038 ] } },
{ "type": "Feature", "properties": { "No": 130, "address": "群馬県高崎市新町3126", "lat": 36.2786982, "lng": 139.11553330000001, "name": "新町図書館" }, "geometry": { "type": "Point", "coordinates": [ 139.11553330000001, 36.2786982 ] } },
{ "type": "Feature", "properties": { "No": 258, "address": "群馬県高崎市山名町155", "lat": 36.2795262, "lng": 139.04032240000001, "name": "南八幡ふれあい館" }, "geometry": { "type": "Point", "coordinates": [ 139.04032240000001, 36.2795262 ] } },
{ "type": "Feature", "properties": { "No": 256, "address": "群馬県高崎市山名町24-1", "lat": 36.2810622, "lng": 139.03879470000001, "name": "南八幡小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.03879470000001, 36.2810622 ] } },
{ "type": "Feature", "properties": { "No": 257, "address": "群馬県高崎市山名町30-1", "lat": 36.2813232, "lng": 139.0377614, "name": "南八幡中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0377614, 36.2813232 ] } },
{ "type": "Feature", "properties": { "No": 113, "address": "群馬県高崎市城山町2-16-2", "lat": 36.2849307, "lng": 139.0132275, "name": "城山公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.0132275, 36.2849307 ] } },
{ "type": "Feature", "properties": { "No": 114, "address": "群馬県高崎市城山町2-16-1", "lat": 36.2859806, "lng": 139.0136358, "name": "城山小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0136358, 36.2859806 ] } },
{ "type": "Feature", "properties": { "No": 1, "address": "群馬県高崎市阿久津町730", "lat": 36.2873312, "lng": 139.0436829, "name": "阿久津水処理センター" }, "geometry": { "type": "Point", "coordinates": [ 139.0436829, 36.2873312 ] } },
{ "type": "Feature", "properties": { "No": 147, "address": "群馬県高崎市阿久津町1909-1", "lat": 36.2888315, "lng": 139.0581121, "name": "高崎市民ゴルフ場" }, "geometry": { "type": "Point", "coordinates": [ 139.0581121, 36.2888315 ] } },
{ "type": "Feature", "properties": { "No": 57, "address": "群馬県高崎市倉賀野町1270", "lat": 36.2950471, "lng": 139.0424634, "name": "倉賀野中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0424634, 36.2950471 ] } },
{ "type": "Feature", "properties": { "No": 54, "address": "群馬県高崎市倉賀野町2072-1", "lat": 36.2951363, "lng": 139.0520603, "name": "倉賀野児童館" }, "geometry": { "type": "Point", "coordinates": [ 139.0520603, 36.2951363 ] } },
{ "type": "Feature", "properties": { "No": 98, "address": "群馬県高崎市寺尾町1239", "lat": 36.2954353, "lng": 139.00593620000001, "name": "市斎場" }, "geometry": { "type": "Point", "coordinates": [ 139.00593620000001, 36.2954353 ] } },
{ "type": "Feature", "properties": { "No": 158, "address": "群馬県高崎市倉賀野町2078-1", "lat": 36.2967802, "lng": 139.0572281, "name": "たかさき人権プラザ" }, "geometry": { "type": "Point", "coordinates": [ 139.0572281, 36.2967802 ] } },
{ "type": "Feature", "properties": { "No": 58, "address": "群馬県高崎市倉賀野町2313-1", "lat": 36.2968304, "lng": 139.0549991, "name": "倉賀野保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.0549991, 36.2968304 ] } },
{ "type": "Feature", "properties": { "No": 53, "address": "群馬県高崎市倉賀野町1691", "lat": 36.2973471, "lng": 139.0491516, "name": "倉賀野公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.0491516, 36.2973471 ] } },
{ "type": "Feature", "properties": { "No": 55, "address": "群馬県高崎市倉賀野町1900-12", "lat": 36.2979137, "lng": 139.04967930000001, "name": "倉賀野市民サービスセンター" }, "geometry": { "type": "Point", "coordinates": [ 139.04967930000001, 36.2979137 ] } },
{ "type": "Feature", "properties": { "No": 56, "address": "群馬県高崎市倉賀野町1744", "lat": 36.2999441, "lng": 139.048296, "name": "倉賀野小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.048296, 36.2999441 ] } },
{ "type": "Feature", "properties": { "No": 6, "address": "群馬県高崎市栗崎町409-3", "lat": 36.3011724, "lng": 139.0693413, "name": "岩鼻公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.0693413, 36.3011724 ] } },
{ "type": "Feature", "properties": { "No": 9, "address": "群馬県高崎市栗崎町409-2", "lat": 36.3012085, "lng": 139.068658, "name": "岩鼻保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.068658, 36.3012085 ] } },
{ "type": "Feature", "properties": { "No": 27, "address": "群馬県高崎市石原町3892-2", "lat": 36.3015154, "lng": 139.0031195, "name": "片岡長寿センター" }, "geometry": { "type": "Point", "coordinates": [ 139.0031195, 36.3015154 ] } },
{ "type": "Feature", "properties": { "No": 183, "address": "群馬県高崎市石原町3892-17", "lat": 36.3016903, "lng": 139.0035778, "name": "寺尾公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.0035778, 36.3016903 ] } },
{ "type": "Feature", "properties": { "No": 59, "address": "群馬県高崎市倉賀野町4293-5", "lat": 36.3018438, "lng": 139.0436686, "name": "倉賀野幼稚園" }, "geometry": { "type": "Point", "coordinates": [ 139.0436686, 36.3018438 ] } },
{ "type": "Feature", "properties": { "No": 24, "address": "群馬県高崎市石原町3892-7", "lat": 36.3021181, "lng": 139.0026973, "name": "武道館・片岡市民サービスセンター" }, "geometry": { "type": "Point", "coordinates": [ 139.0026973, 36.3021181 ] } },
{ "type": "Feature", "properties": { "No": 96, "address": "群馬県高崎市下之城町584-70", "lat": 36.3021213, "lng": 139.0351694, "name": "産業創造館" }, "geometry": { "type": "Point", "coordinates": [ 139.0351694, 36.3021213 ] } },
{ "type": "Feature", "properties": { "No": 7, "address": "群馬県高崎市台新田町1", "lat": 36.3026028, "lng": 139.0692135, "name": "岩鼻小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0692135, 36.3026028 ] } },
{ "type": "Feature", "properties": { "No": 184, "address": "群馬県高崎市寺尾町290", "lat": 36.3026569, "lng": 139.0073913, "name": "寺尾小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0073913, 36.3026569 ] } },
{ "type": "Feature", "properties": { "No": 185, "address": "群馬県高崎市寺尾町2710", "lat": 36.3033763, "lng": 139.00948270000001, "name": "寺尾中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.00948270000001, 36.3033763 ] } },
{ "type": "Feature", "properties": { "No": 94, "address": "群馬県高崎市佐野窪町22-1", "lat": 36.3045235, "lng": 139.015335, "name": "佐野長寿センター" }, "geometry": { "type": "Point", "coordinates": [ 139.015335, 36.3045235 ] } },
{ "type": "Feature", "properties": { "No": 8, "address": "群馬県高崎市東中里町193", "lat": 36.3056107, "lng": 139.0601892, "name": "岩鼻長寿センター" }, "geometry": { "type": "Point", "coordinates": [ 139.0601892, 36.3056107 ] } },
{ "type": "Feature", "properties": { "No": 139, "address": "群馬県高崎市寺尾町2302-11", "lat": 36.3056678, "lng": 138.98128790000001, "name": "染料植物園" }, "geometry": { "type": "Point", "coordinates": [ 138.98128790000001, 36.3056678 ] } },
{ "type": "Feature", "properties": { "No": 108, "address": "群馬県高崎市和田多中町610", "lat": 36.3060179, "lng": 139.01494880000001, "name": "城南クリーンセンター" }, "geometry": { "type": "Point", "coordinates": [ 139.01494880000001, 36.3060179 ] } },
{ "type": "Feature", "properties": { "No": 134, "address": "群馬県高崎市柴崎町2325", "lat": 36.3061191, "lng": 139.0603698, "name": "就労支援施設 すまいる柴崎" }, "geometry": { "type": "Point", "coordinates": [ 139.0603698, 36.3061191 ] } },
{ "type": "Feature", "properties": { "No": 135, "address": "群馬県高崎市台新田町314", "lat": 36.3061862, "lng": 139.07544060000001, "name": "青年センター" }, "geometry": { "type": "Point", "coordinates": [ 139.07544060000001, 36.3061862 ] } },
{ "type": "Feature", "properties": { "No": 20, "address": "群馬県高崎市柴崎町1746-1", "lat": 36.3068135, "lng": 139.06144190000001, "name": "高崎市心身障害者会館・学童クラブ ハーモニー" }, "geometry": { "type": "Point", "coordinates": [ 139.06144190000001, 36.3068135 ] } },
{ "type": "Feature", "properties": { "No": 18, "address": "群馬県高崎市石原町3137-1", "lat": 36.3069039, "lng": 138.99828360000001, "name": "小坂山交流館" }, "geometry": { "type": "Point", "coordinates": [ 138.99828360000001, 36.3069039 ] } },
{ "type": "Feature", "properties": { "No": 91, "address": "群馬県高崎市上佐野町919-1", "lat": 36.3076208, "lng": 139.02534230000001, "name": "佐野公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.02534230000001, 36.3076208 ] } },
{ "type": "Feature", "properties": { "No": 92, "address": "群馬県高崎市上佐野町918-2", "lat": 36.3084874, "lng": 139.0246507, "name": "佐野小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0246507, 36.3084874 ] } },
{ "type": "Feature", "properties": { "No": 265, "address": "群馬県高崎市矢中町700-1", "lat": 36.3093022, "lng": 139.0567839, "name": "矢中中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0567839, 36.3093022 ] } },
{ "type": "Feature", "properties": { "No": 82, "address": "群馬県高崎市綿貫町130-1", "lat": 36.3101692, "lng": 139.07025490000001, "name": "群南南部保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.07025490000001, 36.3101692 ] } },
{ "type": "Feature", "properties": { "No": 169, "address": "群馬県高崎市下滝町744-2", "lat": 36.310828, "lng": 139.0846341, "name": "滝川保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.0846341, 36.310828 ] } },
{ "type": "Feature", "properties": { "No": 264, "address": "群馬県高崎市矢中町160-1", "lat": 36.3109991, "lng": 139.0485096, "name": "矢中小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0485096, 36.3109991 ] } },
{ "type": "Feature", "properties": { "No": 110, "address": "群馬県高崎市新後閑町301-1", "lat": 36.3110427, "lng": 139.0112212, "name": "城南小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0112212, 36.3110427 ] } },
{ "type": "Feature", "properties": { "No": 263, "address": "群馬県高崎市矢中町153", "lat": 36.3115046, "lng": 139.0479818, "name": "矢中公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.0479818, 36.3115046 ] } },
{ "type": "Feature", "properties": { "No": 168, "address": "群馬県高崎市下滝町585-2", "lat": 36.311864, "lng": 139.08388690000001, "name": "滝川小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.08388690000001, 36.311864 ] } },
{ "type": "Feature", "properties": { "No": 111, "address": "群馬県高崎市下和田町2-11-1", "lat": 36.3121787, "lng": 139.00754370000001, "name": "城南プール" }, "geometry": { "type": "Point", "coordinates": [ 139.00754370000001, 36.3121787 ] } },
{ "type": "Feature", "properties": { "No": 167, "address": "群馬県高崎市下滝町776 -1", "lat": 36.3127641, "lng": 139.0856117, "name": "滝川公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.0856117, 36.3127641 ] } },
{ "type": "Feature", "properties": { "No": 109, "address": "群馬県高崎市下和田町3-6-3", "lat": 36.3128315, "lng": 139.0117488, "name": "城南公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.0117488, 36.3128315 ] } },
{ "type": "Feature", "properties": { "No": 275, "address": "群馬県高崎市下滝町772-1", "lat": 36.3128974, "lng": 139.0847063, "name": "養護学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0847063, 36.3128974 ] } },
{ "type": "Feature", "properties": { "No": 43, "address": "群馬県高崎市乗附町4045", "lat": 36.3132841, "lng": 138.95666750000001, "name": "観音山キャンプパーク" }, "geometry": { "type": "Point", "coordinates": [ 138.95666750000001, 36.3132841 ] } },
{ "type": "Feature", "properties": { "No": 112, "address": "群馬県高崎市下和田町2-12", "lat": 36.3137231, "lng": 139.00699090000001, "name": "城南野球場" }, "geometry": { "type": "Point", "coordinates": [ 139.00699090000001, 36.3137231 ] } },
{ "type": "Feature", "properties": { "No": 194, "address": "群馬県高崎市中居町3-21-1", "lat": 36.3156682, "lng": 139.04044350000001, "name": "中居公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.04044350000001, 36.3156682 ] } },
{ "type": "Feature", "properties": { "No": 195, "address": "群馬県高崎市中居町3-28-2", "lat": 36.3157599, "lng": 139.04066850000001, "name": "中居市民サービスセンター" }, "geometry": { "type": "Point", "coordinates": [ 139.04066850000001, 36.3157599 ] } },
{ "type": "Feature", "properties": { "No": 25, "address": "群馬県高崎市片岡町2-12-1", "lat": 36.3157812, "lng": 138.9974193, "name": "片岡小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9974193, 36.3157812 ] } },
{ "type": "Feature", "properties": { "No": 196, "address": "群馬県高崎市中居町3-28-1", "lat": 36.3162849, "lng": 139.0410545, "name": "中居小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0410545, 36.3162849 ] } },
{ "type": "Feature", "properties": { "No": 93, "address": "群馬県高崎市上中居町345", "lat": 36.317026, "lng": 139.02522260000001, "name": "佐野中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.02522260000001, 36.317026 ] } },
{ "type": "Feature", "properties": { "No": 208, "address": "群馬県高崎市若松町321-2", "lat": 36.3173896, "lng": 139.0049436, "name": "南部交流館" }, "geometry": { "type": "Point", "coordinates": [ 139.0049436, 36.3173896 ] } },
{ "type": "Feature", "properties": { "No": 23, "address": "群馬県高崎市片岡町3 -4-9", "lat": 36.318456, "lng": 138.99410270000001, "name": "片岡公民館" }, "geometry": { "type": "Point", "coordinates": [ 138.99410270000001, 36.318456 ] } },
{ "type": "Feature", "properties": { "No": 26, "address": "群馬県高崎市片岡町1-14-1", "lat": 36.3204143, "lng": 138.99399990000001, "name": "片岡中学校" }, "geometry": { "type": "Point", "coordinates": [ 138.99399990000001, 36.3204143 ] } },
{ "type": "Feature", "properties": { "No": 151, "address": "群馬県高崎市八島町110-27", "lat": 36.3207284, "lng": 139.01062920000001, "name": "高崎市美術館・南公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.01062920000001, 36.3207284 ] } },
{ "type": "Feature", "properties": { "No": 292, "address": "群馬県高崎市上滝町1058", "lat": 36.3210939, "lng": 139.0695657, "name": "歴史民俗資料館" }, "geometry": { "type": "Point", "coordinates": [ 139.0695657, 36.3210939 ] } },
{ "type": "Feature", "properties": { "No": 174, "address": "群馬県高崎市栄町11-1", "lat": 36.3211507, "lng": 139.01734260000001, "name": "中央体育館" }, "geometry": { "type": "Point", "coordinates": [ 139.01734260000001, 36.3211507 ] } },
{ "type": "Feature", "properties": { "No": 13, "address": "群馬県高崎市八島町110-21", "lat": 36.3213395, "lng": 139.01108740000001, "name": "駅前駐車場" }, "geometry": { "type": "Point", "coordinates": [ 139.01108740000001, 36.3213395 ] } },
{ "type": "Feature", "properties": { "No": 254, "address": "群馬県高崎市八島町70-1", "lat": 36.3215006, "lng": 139.0096126, "name": "南小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0096126, 36.3215006 ] } },
{ "type": "Feature", "properties": { "No": 14, "address": "群馬県高崎市柴崎町1263-1", "lat": 36.3217264, "lng": 139.04283480000001, "name": "大類公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.04283480000001, 36.3217264 ] } },
{ "type": "Feature", "properties": { "No": 84, "address": "群馬県高崎市上滝町1032-2", "lat": 36.3218605, "lng": 139.0696462, "name": "高南中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0696462, 36.3218605 ] } },
{ "type": "Feature", "properties": { "No": 291, "address": "群馬県高崎市新潟県柏崎市大字笠島江尻316", "lat": 36.3219088, "lng": 139.00329360000001, "name": "臨海学校" }, "geometry": { "type": "Point", "coordinates": [ 139.00329360000001, 36.3219088 ] } },
{ "type": "Feature", "properties": { "No": 150, "address": "群馬県高崎市高松町35-1", "lat": 36.3219643, "lng": 139.0033047, "name": "高崎市役所・高崎シティギャラリー" }, "geometry": { "type": "Point", "coordinates": [ 139.0033047, 36.3219643 ] } },
{ "type": "Feature", "properties": { "No": 143, "address": "群馬県高崎市八島町222 JR高崎駅東口3階 イーサイト内", "lat": 36.3225034, "lng": 139.01260120000001, "name": "高崎駅市民サービスセンター" }, "geometry": { "type": "Point", "coordinates": [ 139.01260120000001, 36.3225034 ] } },
{ "type": "Feature", "properties": { "No": 149, "address": "群馬県高崎市栄町3-23 高崎タワー21", "lat": 36.3225331, "lng": 139.015209, "name": "高崎市タワー美術館" }, "geometry": { "type": "Point", "coordinates": [ 139.015209, 36.3225331 ] } },
{ "type": "Feature", "properties": { "No": 119, "address": "群馬県高崎市高松町35-2", "lat": 36.3228393, "lng": 139.0039879, "name": "シンフォニーホール" }, "geometry": { "type": "Point", "coordinates": [ 139.0039879, 36.3228393 ] } },
{ "type": "Feature", "properties": { "No": 22, "address": "群馬県高崎市八千代町1- 67", "lat": 36.3229364, "lng": 138.9945358, "name": "河川敷管理棟" }, "geometry": { "type": "Point", "coordinates": [ 138.9945358, 36.3229364 ] } },
{ "type": "Feature", "properties": { "No": 17, "address": "群馬県高崎市南大類町538-6", "lat": 36.3232959, "lng": 139.0461761, "name": "大類保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.0461761, 36.3232959 ] } },
{ "type": "Feature", "properties": { "No": 69, "address": "群馬県高崎市高松町28-2", "lat": 36.3235226, "lng": 139.0035962, "name": "群馬音楽センター" }, "geometry": { "type": "Point", "coordinates": [ 139.0035962, 36.3235226 ] } },
{ "type": "Feature", "properties": { "No": 165, "address": "群馬県高崎市高松町4", "lat": 36.323867, "lng": 139.0015991, "name": "高松地下駐車場" }, "geometry": { "type": "Point", "coordinates": [ 139.0015991, 36.323867 ] } },
{ "type": "Feature", "properties": { "No": 15, "address": "群馬県高崎市南大類町543-1", "lat": 36.324082, "lng": 139.0458233, "name": "大類小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0458233, 36.324082 ] } },
{ "type": "Feature", "properties": { "No": 299, "address": "群馬県高崎市八千代町1-7-1", "lat": 36.3241696, "lng": 138.9914498, "name": "和田橋交通公園・和田橋野球場" }, "geometry": { "type": "Point", "coordinates": [ 138.9914498, 36.3241696 ] } },
{ "type": "Feature", "properties": { "No": 11, "address": "群馬県高崎市旭町34-1", "lat": 36.3244227, "lng": 139.0117206, "name": "ウエストパーク1000" }, "geometry": { "type": "Point", "coordinates": [ 139.0117206, 36.3244227 ] } },
{ "type": "Feature", "properties": { "No": 106, "address": "群馬県高崎市東町172-11", "lat": 36.3252395, "lng": 139.0174674, "name": "城東公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.0174674, 36.3252395 ] } },
{ "type": "Feature", "properties": { "No": 46, "address": "群馬県高崎市高松町5-28", "lat": 36.3253697, "lng": 139.0018102, "name": "中央図書館・総合保健センター・休日応急歯科診療所" }, "geometry": { "type": "Point", "coordinates": [ 139.0018102, 36.3253697 ] } },
{ "type": "Feature", "properties": { "No": 212, "address": "群馬県高崎市八千代町4-2-7", "lat": 36.3257416, "lng": 138.9884611, "name": "乗附公民館" }, "geometry": { "type": "Point", "coordinates": [ 138.9884611, 36.3257416 ] } },
{ "type": "Feature", "properties": { "No": 2, "address": "群馬県高崎市東町80-11", "lat": 36.3258505, "lng": 139.01352320000001, "name": "イーストパーク" }, "geometry": { "type": "Point", "coordinates": [ 139.01352320000001, 36.3258505 ] } },
{ "type": "Feature", "properties": { "No": 166, "address": "群馬県高崎市高松町5-3", "lat": 36.3263002, "lng": 139.001299, "name": "高松中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.001299, 36.3263002 ] } },
{ "type": "Feature", "properties": { "No": 176, "address": "群馬県高崎市高松町5-5", "lat": 36.3263363, "lng": 138.9998075, "name": "通級指導教室" }, "geometry": { "type": "Point", "coordinates": [ 138.9998075, 36.3263363 ] } },
{ "type": "Feature", "properties": { "No": 138, "address": "群馬県高崎市安中市中宿283-4", "lat": 36.3377924, "lng": 138.91548239999997, "name": "西毛総合運動公園" }, "geometry": { "type": "Point", "coordinates": [ 138.91548239999997, 36.3377924 ] } },
{ "type": "Feature", "properties": { "No": 213, "address": "群馬県高崎市乗附町155-1", "lat": 36.3265277, "lng": 138.98503360000001, "name": "乗附小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.98503360000001, 36.3265277 ] } },
{ "type": "Feature", "properties": { "No": 293, "address": "群馬県高崎市東町80-1", "lat": 36.3265699, "lng": 139.013726, "name": "労使会館" }, "geometry": { "type": "Point", "coordinates": [ 139.013726, 36.3265699 ] } },
{ "type": "Feature", "properties": { "No": 107, "address": "群馬県高崎市江木町128-1", "lat": 36.3268756, "lng": 139.02095320000001, "name": "城東小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.02095320000001, 36.3268756 ] } },
{ "type": "Feature", "properties": { "No": 173, "address": "群馬県高崎市常盤町48-1", "lat": 36.3280251, "lng": 138.9990908, "name": "中央小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9990908, 36.3280251 ] } },
{ "type": "Feature", "properties": { "No": 105, "address": "群馬県高崎市柳川町13-1", "lat": 36.3281418, "lng": 139.0029711, "name": "城址公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.0029711, 36.3281418 ] } },
{ "type": "Feature", "properties": { "No": 231, "address": "群馬県高崎市弓町119-9", "lat": 36.328417, "lng": 139.01056220000001, "name": "東公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.01056220000001, 36.328417 ] } },
{ "type": "Feature", "properties": { "No": 192, "address": "群馬県高崎市乗附町2747", "lat": 36.3290109, "lng": 138.96831270000001, "name": "動物愛護センター" }, "geometry": { "type": "Point", "coordinates": [ 138.96831270000001, 36.3290109 ] } },
{ "type": "Feature", "properties": { "No": 16, "address": "群馬県高崎市南大類町1455", "lat": 36.3296815, "lng": 139.0354102, "name": "大類中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0354102, 36.3296815 ] } },
{ "type": "Feature", "properties": { "No": 232, "address": "群馬県高崎市弓町121-1", "lat": 36.3298808, "lng": 139.0101899, "name": "東小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0101899, 36.3298808 ] } },
{ "type": "Feature", "properties": { "No": 214, "address": "群馬県高崎市鼻高町33-5", "lat": 36.3318273, "lng": 138.9511058, "name": "鼻高公民館" }, "geometry": { "type": "Point", "coordinates": [ 138.9511058, 36.3318273 ] } },
{ "type": "Feature", "properties": { "No": 215, "address": "群馬県高崎市鼻高町58-2", "lat": 36.332438, "lng": 138.9392072, "name": "鼻高小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9392072, 36.332438 ] } },
{ "type": "Feature", "properties": { "No": 99, "address": "群馬県高崎市末広町23-1", "lat": 36.3328945, "lng": 139.0063012, "name": "市文化会館" }, "geometry": { "type": "Point", "coordinates": [ 139.0063012, 36.3328945 ] } },
{ "type": "Feature", "properties": { "No": 45, "address": "群馬県高崎市請地町20-2", "lat": 36.333111, "lng": 139.0021209, "name": "北小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0021209, 36.333111 ] } },
{ "type": "Feature", "properties": { "No": 172, "address": "群馬県高崎市末広町27", "lat": 36.3332139, "lng": 139.0056318, "name": "中央公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.0056318, 36.3332139 ] } },
{ "type": "Feature", "properties": { "No": 190, "address": "群馬県高崎市中豊岡町24", "lat": 36.3332301, "lng": 138.976084, "name": "豊岡小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.976084, 36.3332301 ] } },
{ "type": "Feature", "properties": { "No": 142, "address": "群馬県高崎市上和田町16-1", "lat": 36.3332553, "lng": 138.9966684, "name": "第一中学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9966684, 36.3332553 ] } },
{ "type": "Feature", "properties": { "No": 188, "address": "群馬県高崎市豊岡町170-2", "lat": 36.3332662, "lng": 138.97334530000001, "name": "豊岡公民館" }, "geometry": { "type": "Point", "coordinates": [ 138.97334530000001, 36.3332662 ] } },
{ "type": "Feature", "properties": { "No": 189, "address": "群馬県高崎市下豊岡町1428-2", "lat": 36.333805, "lng": 138.9738619, "name": "豊岡児童館" }, "geometry": { "type": "Point", "coordinates": [ 138.9738619, 36.333805 ] } },
{ "type": "Feature", "properties": { "No": 118, "address": "前橋市鶴光路町701番地", "lat": 36.3341663, "lng": 139.09262670000001, "name": "前橋市下川淵公民館(市民サービスセンター)" }, "geometry": { "type": "Point", "coordinates": [ 139.09262670000001, 36.3341663 ] } },
{ "type": "Feature", "properties": { "No": 44, "address": "群馬県高崎市昭和町170-1", "lat": 36.3346, "lng": 139.0066733, "name": "北公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.0066733, 36.3346 ] } },
{ "type": "Feature", "properties": { "No": 34, "address": "前橋市鶴光路町68番地2", "lat": 36.3348163, "lng": 139.0940709, "name": "前橋市立下川淵保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.0940709, 36.3348163 ] } },
{ "type": "Feature", "properties": { "No": 49, "address": "群馬県高崎市矢島町229", "lat": 36.334993, "lng": 139.0546166, "name": "京ヶ島長寿センター" }, "geometry": { "type": "Point", "coordinates": [ 139.0546166, 36.334993 ] } },
{ "type": "Feature", "properties": { "No": 272, "address": "群馬県高崎市藤塚町187-1", "lat": 36.3350661, "lng": 138.9585021, "name": "八幡長寿センター" }, "geometry": { "type": "Point", "coordinates": [ 138.9585021, 36.3350661 ] } },
{ "type": "Feature", "properties": { "No": 270, "address": "群馬県高崎市八幡町170-13", "lat": 36.3358798, "lng": 138.9526721, "name": "八幡中央保育所" }, "geometry": { "type": "Point", "coordinates": [ 138.9526721, 36.3358798 ] } },
{ "type": "Feature", "properties": { "No": 146, "address": "群馬県高崎市昭和町200-2", "lat": 36.3359359, "lng": 139.0044484, "name": "高崎市昭和町福祉作業所" }, "geometry": { "type": "Point", "coordinates": [ 139.0044484, 36.3359359 ] } },
{ "type": "Feature", "properties": { "No": 54, "address": "前橋市鶴光路町38番地1", "lat": 36.3359829, "lng": 139.09448190000001, "name": "前橋市立下川淵小学校・前橋市しもかわふち第二児童クラブ" }, "geometry": { "type": "Point", "coordinates": [ 139.09448190000001, 36.3359829 ] } },
{ "type": "Feature", "properties": { "No": 269, "address": "群馬県高崎市八幡町179-1", "lat": 36.3361631, "lng": 138.9515111, "name": "八幡小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9515111, 36.3361631 ] } },
{ "type": "Feature", "properties": { "No": 160, "address": "群馬県高崎市末広町88-1", "lat": 36.3363916, "lng": 139.0073649, "name": "高崎幼稚園" }, "geometry": { "type": "Point", "coordinates": [ 139.0073649, 36.3363916 ] } },
{ "type": "Feature", "properties": { "No": 191, "address": "群馬県高崎市中豊岡町350-2", "lat": 36.3365688, "lng": 138.9697732, "name": "豊岡中学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9697732, 36.3365688 ] } },
{ "type": "Feature", "properties": { "No": 51, "address": "群馬県高崎市並榎町123", "lat": 36.3372217, "lng": 138.99676550000001, "name": "勤労青少年ホーム" }, "geometry": { "type": "Point", "coordinates": [ 138.99676550000001, 36.3372217 ] } },
{ "type": "Feature", "properties": { "No": 140, "address": "群馬県高崎市末広町115-1", "lat": 36.3374748, "lng": 139.0085675, "name": "総合福祉センター" }, "geometry": { "type": "Point", "coordinates": [ 139.0085675, 36.3374748 ] } },
{ "type": "Feature", "properties": { "No": 177, "address": "群馬県高崎市飯玉町74-1", "lat": 36.3381556, "lng": 139.0161559, "name": "塚沢公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.0161559, 36.3381556 ] } },
{ "type": "Feature", "properties": { "No": 180, "address": "群馬県高崎市飯塚町1721", "lat": 36.3386804, "lng": 139.01243120000001, "name": "塚沢幼稚園" }, "geometry": { "type": "Point", "coordinates": [ 139.01243120000001, 36.3386804 ] } },
{ "type": "Feature", "properties": { "No": 39, "address": "群馬県高崎市上並榎町1590", "lat": 36.3386908, "lng": 138.9867105, "name": "上並榎庭球場" }, "geometry": { "type": "Point", "coordinates": [ 138.9867105, 36.3386908 ] } },
{ "type": "Feature", "properties": { "No": 267, "address": "群馬県高崎市八幡町422-11", "lat": 36.3389712, "lng": 138.95762980000001, "name": "八幡公民館" }, "geometry": { "type": "Point", "coordinates": [ 138.95762980000001, 36.3389712 ] } },
{ "type": "Feature", "properties": { "No": 210, "address": "群馬県高崎市並榎町190 -1", "lat": 36.3390047, "lng": 138.99141850000001, "name": "西公民館" }, "geometry": { "type": "Point", "coordinates": [ 138.99141850000001, 36.3390047 ] } },
{ "type": "Feature", "properties": { "No": 179, "address": "群馬県高崎市飯玉町109", "lat": 36.3392416, "lng": 139.0164809, "name": "塚沢中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0164809, 36.3392416 ] } },
{ "type": "Feature", "properties": { "No": 211, "address": "群馬県高崎市並榎町109-1", "lat": 36.3394048, "lng": 138.9947211, "name": "西小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9947211, 36.3394048 ] } },
{ "type": "Feature", "properties": { "No": 50, "address": "群馬県高崎市島野町543-1", "lat": 36.3398957, "lng": 139.062788, "name": "京ヶ島保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.062788, 36.3398957 ] } },
{ "type": "Feature", "properties": { "No": 178, "address": "群馬県高崎市飯玉町134-1", "lat": 36.3401276, "lng": 139.01670590000001, "name": "塚沢小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.01670590000001, 36.3401276 ] } },
{ "type": "Feature", "properties": { "No": 42, "address": "群馬県高崎市八幡町800 -144", "lat": 36.3401734, "lng": 138.94009840000001, "name": "観音塚考古資料館" }, "geometry": { "type": "Point", "coordinates": [ 138.94009840000001, 36.3401734 ] } },
{ "type": "Feature", "properties": { "No": 47, "address": "群馬県高崎市京目町44-5", "lat": 36.3402623, "lng": 139.06350180000001, "name": "京ヶ島公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.06350180000001, 36.3402623 ] } },
{ "type": "Feature", "properties": { "No": 48, "address": "群馬県高崎市京目町44-1", "lat": 36.3404401, "lng": 139.0637212, "name": "京ヶ島小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0637212, 36.3404401 ] } },
{ "type": "Feature", "properties": { "No": 96, "address": "前橋市宮地町260番地1", "lat": 36.3405074, "lng": 139.1038079, "name": "前橋市立第七中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1038079, 36.3405074 ] } },
{ "type": "Feature", "properties": { "No": 268, "address": "群馬県高崎市八幡町1013-3", "lat": 36.3412762, "lng": 138.94326190000001, "name": "八幡交流館" }, "geometry": { "type": "Point", "coordinates": [ 138.94326190000001, 36.3412762 ] } },
{ "type": "Feature", "properties": { "No": 187, "address": "群馬県高崎市上大類町1372", "lat": 36.3422751, "lng": 139.03066860000001, "name": "東部小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.03066860000001, 36.3422751 ] } },
{ "type": "Feature", "properties": { "No": 207, "address": "群馬県高崎市並榎町60", "lat": 36.3423601, "lng": 138.9942266, "name": "並榎中学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9942266, 36.3423601 ] } },
{ "type": "Feature", "properties": { "No": 83, "address": "群馬県高崎市剣崎町995-1", "lat": 36.3434819, "lng": 138.96152380000001, "name": "剣崎交流館" }, "geometry": { "type": "Point", "coordinates": [ 138.96152380000001, 36.3434819 ] } },
{ "type": "Feature", "properties": { "No": 186, "address": "群馬県高崎市貝沢町331-1", "lat": 36.3439692, "lng": 139.0244469, "name": "東部公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.0244469, 36.3439692 ] } },
{ "type": "Feature", "properties": { "No": 21, "address": "群馬県高崎市上並榎町1376", "lat": 36.344118, "lng": 138.97816950000001, "name": "学童クラブ ひまわり" }, "geometry": { "type": "Point", "coordinates": [ 138.97816950000001, 36.344118 ] } },
{ "type": "Feature", "properties": { "No": 271, "address": "群馬県高崎市八幡町1300-1", "lat": 36.3444036, "lng": 138.9434978, "name": "八幡中学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9434978, 36.3444036 ] } },
{ "type": "Feature", "properties": { "No": 40, "address": "群馬県高崎市上並榎町1610", "lat": 36.3445069, "lng": 138.987588, "name": "上並榎パークゴルフ場" }, "geometry": { "type": "Point", "coordinates": [ 138.987588, 36.3445069 ] } },
{ "type": "Feature", "properties": { "No": 117, "address": "群馬県高崎市新保855-2", "lat": 36.3470611, "lng": 139.0427729, "name": "新高尾南部保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.0427729, 36.3470611 ] } },
{ "type": "Feature", "properties": { "No": 298, "address": "群馬県高崎市若田町309-2", "lat": 36.3471337, "lng": 138.94142020000001, "name": "若田浄水場" }, "geometry": { "type": "Point", "coordinates": [ 138.94142020000001, 36.3471337 ] } },
{ "type": "Feature", "properties": { "No": 75, "address": "前橋市駒形町1172番地", "lat": 36.3472182, "lng": 139.1361532, "name": "前橋市立駒形小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1361532, 36.3472182 ] } },
{ "type": "Feature", "properties": { "No": 137, "address": "群馬県高崎市八幡町1414", "lat": 36.3479754, "lng": 138.943681, "name": "西部小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.943681, 36.3479754 ] } },
{ "type": "Feature", "properties": { "No": 50, "address": "前橋市山王町160番地1", "lat": 36.3488179, "lng": 139.12444060000001, "name": "前橋市立山王小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.12444060000001, 36.3488179 ] } },
{ "type": "Feature", "properties": { "No": 136, "address": "群馬県高崎市金井渕町35-3", "lat": 36.3489421, "lng": 138.9507219, "name": "西部公民館" }, "geometry": { "type": "Point", "coordinates": [ 138.9507219, 36.3489421 ] } },
{ "type": "Feature", "properties": { "No": 234, "address": "群馬県高崎市下小塙町657-1", "lat": 36.348962, "lng": 138.97882480000001, "name": "北部公民館" }, "geometry": { "type": "Point", "coordinates": [ 138.97882480000001, 36.348962 ] } },
{ "type": "Feature", "properties": { "No": 193, "address": "群馬県高崎市問屋町4-8-6", "lat": 36.3489879, "lng": 139.0159195, "name": "問屋町庭球場" }, "geometry": { "type": "Point", "coordinates": [ 139.0159195, 36.3489879 ] } },
{ "type": "Feature", "properties": { "No": 97, "address": "群馬県高崎市問屋町4-8-8", "lat": 36.3491018, "lng": 139.01621950000001, "name": "サンライフ高崎" }, "geometry": { "type": "Point", "coordinates": [ 139.01621950000001, 36.3491018 ] } },
{ "type": "Feature", "properties": { "No": 19, "address": "群馬県高崎市貝沢町60", "lat": 36.3492076, "lng": 139.0258493, "name": "貝沢野球場" }, "geometry": { "type": "Point", "coordinates": [ 139.0258493, 36.3492076 ] } },
{ "type": "Feature", "properties": { "No": 273, "address": "群馬県高崎市下大島町213", "lat": 36.3503113, "lng": 138.9474555, "name": "八幡北部保育所" }, "geometry": { "type": "Point", "coordinates": [ 138.9474555, 36.3503113 ] } },
{ "type": "Feature", "properties": { "No": 220, "address": "群馬県高崎市浜尻町210-1", "lat": 36.3505988, "lng": 139.01404740000001, "name": "浜尻小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.01404740000001, 36.3505988 ] } },
{ "type": "Feature", "properties": { "No": 235, "address": "群馬県高崎市下小塙町719-1", "lat": 36.3511089, "lng": 138.9738502, "name": "北部小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9738502, 36.3511089 ] } },
{ "type": "Feature", "properties": { "No": 297, "address": "群馬県高崎市下小鳥町76-5", "lat": 36.3513981, "lng": 138.9914043, "name": "六郷長寿センター" }, "geometry": { "type": "Point", "coordinates": [ 138.9914043, 36.3513981 ] } },
{ "type": "Feature", "properties": { "No": 219, "address": "群馬県高崎市浜尻町209-4", "lat": 36.3519292, "lng": 139.0133474, "name": "浜尻公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.0133474, 36.3519292 ] } },
{ "type": "Feature", "properties": { "No": 295, "address": "群馬県高崎市筑縄町54-6", "lat": 36.3531034, "lng": 138.9865768, "name": "六郷公民館" }, "geometry": { "type": "Point", "coordinates": [ 138.9865768, 36.3531034 ] } },
{ "type": "Feature", "properties": { "No": 296, "address": "群馬県高崎市筑縄町32-2", "lat": 36.3536117, "lng": 138.9872656, "name": "六郷小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9872656, 36.3536117 ] } },
{ "type": "Feature", "properties": { "No": 200, "address": "群馬県高崎市井野町1061-1", "lat": 36.3551433, "lng": 139.02810450000001, "name": "中川長寿センター" }, "geometry": { "type": "Point", "coordinates": [ 139.02810450000001, 36.3551433 ] } },
{ "type": "Feature", "properties": { "No": 28, "address": "前橋市上佐鳥町396番地3", "lat": 36.3568693, "lng": 139.0875519, "name": "前橋市立上川淵保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.0875519, 36.3568693 ] } },
{ "type": "Feature", "properties": { "No": 203, "address": "群馬県高崎市上小塙町325-1", "lat": 36.3573999, "lng": 138.9732084, "name": "長野郷中学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9732084, 36.3573999 ] } },
{ "type": "Feature", "properties": { "No": 49, "address": "前橋市広瀬町三丁目19番地", "lat": 36.3575031, "lng": 139.1145559, "name": "前橋市立広瀬小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1145559, 36.3575031 ] } },
{ "type": "Feature", "properties": { "No": 98, "address": "前橋市後閑町437番地1", "lat": 36.357639, "lng": 139.10802090000001, "name": "前橋市立広瀬中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.10802090000001, 36.357639 ] } },
{ "type": "Feature", "properties": { "No": 53, "address": "前橋市朝倉町466番地", "lat": 36.358347, "lng": 139.0906986, "name": "前橋市立上川淵小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0906986, 36.358347 ] } },
{ "type": "Feature", "properties": { "No": 151, "address": "前橋市広瀬町二丁目10番12号", "lat": 36.3583695, "lng": 139.108693, "name": "前橋市広瀬学童クラブ" }, "geometry": { "type": "Point", "coordinates": [ 139.108693, 36.3583695 ] } },
{ "type": "Feature", "properties": { "No": 154, "address": "前橋市広瀬町二丁目16番地", "lat": 36.359575, "lng": 139.1102149, "name": "前橋市ひろせ老人福祉センター" }, "geometry": { "type": "Point", "coordinates": [ 139.1102149, 36.359575 ] } },
{ "type": "Feature", "properties": { "No": 67, "address": "前橋市大利根町二丁目12番地1", "lat": 36.3603798, "lng": 139.058846, "name": "前橋市立大利根小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.058846, 36.3603798 ] } },
{ "type": "Feature", "properties": { "No": 103, "address": "前橋市前箱田町396番地1", "lat": 36.3606712, "lng": 139.047872, "name": "前橋市立箱田中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.047872, 36.3606712 ] } },
{ "type": "Feature", "properties": { "No": 79, "address": "前橋市笂井町1160番地", "lat": 36.3610449, "lng": 139.13892190000001, "name": "前橋市立笂井小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.13892190000001, 36.3610449 ] } },
{ "type": "Feature", "properties": { "No": 3, "address": "群馬県高崎市井野町357-1", "lat": 36.3612287, "lng": 139.021716, "name": "井野児童館" }, "geometry": { "type": "Point", "coordinates": [ 139.021716, 36.3612287 ] } },
{ "type": "Feature", "properties": { "No": 145, "address": "群馬県高崎市浜川町1650-1", "lat": 36.3618666, "lng": 138.9906373, "name": "高崎経済大学附属高等学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9906373, 36.3618666 ] } },
{ "type": "Feature", "properties": { "No": 68, "address": "前橋市上新田町1160番地", "lat": 36.3620463, "lng": 139.0671425, "name": "前橋市立新田小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0671425, 36.3620463 ] } },
{ "type": "Feature", "properties": { "No": 197, "address": "群馬県高崎市中尾町791", "lat": 36.3620982, "lng": 139.02797380000001, "name": "中尾中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.02797380000001, 36.3620982 ] } },
{ "type": "Feature", "properties": { "No": 97, "address": "前橋市上佐鳥町207番地", "lat": 36.3622353, "lng": 139.0862352, "name": "前橋市立春日中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0862352, 36.3622353 ] } },
{ "type": "Feature", "properties": { "No": 198, "address": "群馬県高崎市小八木町1117", "lat": 36.3622423, "lng": 139.01670240000001, "name": "中川公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.01670240000001, 36.3622423 ] } },
{ "type": "Feature", "properties": { "No": 126, "address": "前橋市小屋原町1857番地3", "lat": 36.3623696, "lng": 139.1274095, "name": "前橋市永明公民館(市民サービスセンター)" }, "geometry": { "type": "Point", "coordinates": [ 139.1274095, 36.3623696 ] } },
{ "type": "Feature", "properties": { "No": 204, "address": "群馬県高崎市南新波町265", "lat": 36.3624716, "lng": 138.9703141, "name": "長野公民館" }, "geometry": { "type": "Point", "coordinates": [ 138.9703141, 36.3624716 ] } },
{ "type": "Feature", "properties": { "No": 78, "address": "前橋市二之宮町1841番地", "lat": 36.362506, "lng": 139.1680101, "name": "前橋市立二之宮小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1680101, 36.362506 ] } },
{ "type": "Feature", "properties": { "No": 52, "address": "前橋市後閑町50番地4", "lat": 36.3627189, "lng": 139.09908050000001, "name": "前橋市立天神小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.09908050000001, 36.3627189 ] } },
{ "type": "Feature", "properties": { "No": 117, "address": "前橋市後閑町35番地", "lat": 36.3630272, "lng": 139.1007636, "name": "前橋市上川淵公民館(市民サービスセンター)" }, "geometry": { "type": "Point", "coordinates": [ 139.1007636, 36.3630272 ] } },
{ "type": "Feature", "properties": { "No": 102, "address": "群馬県高崎市下里見町380", "lat": 36.3632645, "lng": 138.9190022, "name": "下里見小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9190022, 36.3632645 ] } },
{ "type": "Feature", "properties": { "No": 106, "address": "前橋市小屋原町1811番地1", "lat": 36.3633251, "lng": 139.1291315, "name": "前橋市立木瀬中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1291315, 36.3633251 ] } },
{ "type": "Feature", "properties": { "No": 159, "address": "前橋市上佐鳥町539番地2", "lat": 36.363524, "lng": 139.0784081, "name": "前橋市第二福祉作業所・前橋サン・アビリティーズ" }, "geometry": { "type": "Point", "coordinates": [ 139.0784081, 36.363524 ] } },
{ "type": "Feature", "properties": { "No": 218, "address": "群馬県高崎市浜川町1575-1", "lat": 36.3636691, "lng": 138.9892262, "name": "浜川プール" }, "geometry": { "type": "Point", "coordinates": [ 138.9892262, 36.3636691 ] } },
{ "type": "Feature", "properties": { "No": 205, "address": "群馬県高崎市南新波町77", "lat": 36.3637381, "lng": 138.97143890000001, "name": "長野小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.97143890000001, 36.3637381 ] } },
{ "type": "Feature", "properties": { "No": 101, "address": "群馬県高崎市下里見町427-1", "lat": 36.3637949, "lng": 138.91825220000001, "name": "下里見公民館" }, "geometry": { "type": "Point", "coordinates": [ 138.91825220000001, 36.3637949 ] } },
{ "type": "Feature", "properties": { "No": 115, "address": "群馬県高崎市日高町536-2", "lat": 36.3639038, "lng": 139.0352925, "name": "新高尾公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.0352925, 36.3639038 ] } },
{ "type": "Feature", "properties": { "No": 199, "address": "群馬県高崎市小八木町1860-1", "lat": 36.3643198, "lng": 139.0148413, "name": "中川小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0148413, 36.3643198 ] } },
{ "type": "Feature", "properties": { "No": 115, "address": "前橋市上佐鳥町460番地1", "lat": 36.3644795, "lng": 139.0809606, "name": "前橋工科大学:前橋市民体育館" }, "geometry": { "type": "Point", "coordinates": [ 139.0809606, 36.3644795 ] } },
{ "type": "Feature", "properties": { "No": 116, "address": "群馬県高崎市日高町592-1", "lat": 36.3646788, "lng": 139.0363424, "name": "新高尾小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0363424, 36.3646788 ] } },
{ "type": "Feature", "properties": { "No": 165, "address": "前橋市六供町1536番地", "lat": 36.3647405, "lng": 139.0720336, "name": "六供清掃工場" }, "geometry": { "type": "Point", "coordinates": [ 139.0720336, 36.3647405 ] } },
{ "type": "Feature", "properties": { "No": 164, "address": "群馬県高崎市高浜町180-1", "lat": 36.3648673, "lng": 138.925882, "name": "高浜長寿センター" }, "geometry": { "type": "Point", "coordinates": [ 138.925882, 36.3648673 ] } },
{ "type": "Feature", "properties": { "No": 37, "address": "前橋市広瀬町一丁目27番地3", "lat": 36.3651826, "lng": 139.1038214, "name": "前橋市立広瀬保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.1038214, 36.3651826 ] } },
{ "type": "Feature", "properties": { "No": 161, "address": "群馬県高崎市高浜町248-1", "lat": 36.3654227, "lng": 138.92466820000001, "name": "高浜クリーンセンター" }, "geometry": { "type": "Point", "coordinates": [ 138.92466820000001, 36.3654227 ] } },
{ "type": "Feature", "properties": { "No": 104, "address": "群馬県高崎市楽間町9-1", "lat": 36.3656822, "lng": 138.96702540000001, "name": "社会就労支援センター セルプ楽間" }, "geometry": { "type": "Point", "coordinates": [ 138.96702540000001, 36.3656822 ] } },
{ "type": "Feature", "properties": { "No": 66, "address": "前橋市箱田町1452番地1", "lat": 36.3658486, "lng": 139.0526214, "name": "前橋市立東小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0526214, 36.3658486 ] } },
{ "type": "Feature", "properties": { "No": 121, "address": "前橋市箱田町1642番地", "lat": 36.3659513, "lng": 139.0513938, "name": "前橋市東公民館(市民サービスセンター)" }, "geometry": { "type": "Point", "coordinates": [ 139.0513938, 36.3659513 ] } },
{ "type": "Feature", "properties": { "No": 216, "address": "群馬県高崎市浜川町1486", "lat": 36.3661939, "lng": 138.9892151, "name": "浜川競技場・浜川体育館" }, "geometry": { "type": "Point", "coordinates": [ 138.9892151, 36.3661939 ] } },
{ "type": "Feature", "properties": { "No": 118, "address": "群馬県高崎市中尾町925-1", "lat": 36.366445, "lng": 139.0272876, "name": "新高尾北部保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.0272876, 36.366445 ] } },
{ "type": "Feature", "properties": { "No": 138, "address": "前橋市朝倉町170番地3", "lat": 36.366524, "lng": 139.09744180000001, "name": "前橋市朝倉児童館" }, "geometry": { "type": "Point", "coordinates": [ 139.09744180000001, 36.366524 ] } },
{ "type": "Feature", "properties": { "No": 201, "address": "群馬県高崎市小八木町58-1", "lat": 36.3666835, "lng": 139.0153801, "name": "中川保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.0153801, 36.3666835 ] } },
{ "type": "Feature", "properties": { "No": 51, "address": "前橋市朝倉町165番地1", "lat": 36.3667767, "lng": 139.0961476, "name": "前橋市立朝倉小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0961476, 36.3667767 ] } },
{ "type": "Feature", "properties": { "No": 89, "address": "群馬県高崎市中里見町1276-1", "lat": 36.3674773, "lng": 138.9018451, "name": "里見交流館" }, "geometry": { "type": "Point", "coordinates": [ 138.9018451, 36.3674773 ] } },
{ "type": "Feature", "properties": { "No": 190, "address": "前橋市六供町1068番地", "lat": 36.3683762, "lng": 139.0715113, "name": "前橋市六供温水プール" }, "geometry": { "type": "Point", "coordinates": [ 139.0715113, 36.3683762 ] } },
{ "type": "Feature", "properties": { "No": 74, "address": "前橋市上大島町655番地", "lat": 36.3690966, "lng": 139.1223463, "name": "前橋市立永明小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1223463, 36.3690966 ] } },
{ "type": "Feature", "properties": { "No": 127, "address": "前橋市二之宮町1320番地", "lat": 36.3692669, "lng": 139.1579329, "name": "前橋市城南公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.1579329, 36.3692669 ] } },
{ "type": "Feature", "properties": { "No": 144, "address": "群馬県高崎市中泉町625-3", "lat": 36.3696023, "lng": 139.0021531, "name": "たかさき北人権プラザ" }, "geometry": { "type": "Point", "coordinates": [ 139.0021531, 36.3696023 ] } },
{ "type": "Feature", "properties": { "No": 68, "address": "群馬県高崎市高浜町2321-1", "lat": 36.3696058, "lng": 138.93187560000001, "name": "久留馬小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.93187560000001, 36.3696058 ] } },
{ "type": "Feature", "properties": { "No": 102, "address": "前橋市光が丘町3番地", "lat": 36.3715064, "lng": 139.0559126, "name": "前橋市立東中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0559126, 36.3715064 ] } },
{ "type": "Feature", "properties": { "No": 31, "address": "前橋市箱田町618番地", "lat": 36.3719174, "lng": 139.0525935, "name": "前橋市立東保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.0525935, 36.3719174 ] } },
{ "type": "Feature", "properties": { "No": 81, "address": "群馬県高崎市三ツ寺町846-1", "lat": 36.3722434, "lng": 138.9953229, "name": "群馬南保育園" }, "geometry": { "type": "Point", "coordinates": [ 138.9953229, 36.3722434 ] } },
{ "type": "Feature", "properties": { "No": 88, "address": "群馬県高崎市棟高町2489-1", "lat": 36.3725353, "lng": 139.0064333, "name": "桜山小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0064333, 36.3725353 ] } },
{ "type": "Feature", "properties": { "No": 202, "address": "群馬県高崎市中里見町450-1", "lat": 36.3727711, "lng": 138.9002506, "name": "中里見交流館" }, "geometry": { "type": "Point", "coordinates": [ 138.9002506, 36.3727711 ] } },
{ "type": "Feature", "properties": { "No": 163, "address": "群馬県高崎市高浜町1971-2", "lat": 36.3729499, "lng": 138.935553, "name": "高浜交流館" }, "geometry": { "type": "Point", "coordinates": [ 138.935553, 36.3729499 ] } },
{ "type": "Feature", "properties": { "No": 222, "address": "群馬県高崎市上里見町1072-1", "lat": 36.3738291, "lng": 138.8933429, "name": "榛名・倉渕保健センター・榛名公民館・榛名文化会館" }, "geometry": { "type": "Point", "coordinates": [ 138.8933429, 36.3738291 ] } },
{ "type": "Feature", "properties": { "No": 159, "address": "群馬県高崎市高浜町965", "lat": 36.3740773, "lng": 138.9295813, "name": "たかさき高浜人権プラザ" }, "geometry": { "type": "Point", "coordinates": [ 138.9295813, 36.3740773 ] } },
{ "type": "Feature", "properties": { "No": 80, "address": "群馬県高崎市三ツ寺町712", "lat": 36.3742847, "lng": 138.9946396, "name": "群馬南中学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9946396, 36.3742847 ] } },
{ "type": "Feature", "properties": { "No": 90, "address": "群馬県高崎市上里見町42-2", "lat": 36.3747347, "lng": 138.89700640000001, "name": "里見小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.89700640000001, 36.3747347 ] } },
{ "type": "Feature", "properties": { "No": 43, "address": "前橋市六供町一丁目13番地2", "lat": 36.3755559, "lng": 139.07438590000001, "name": "前橋市立城南小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.07438590000001, 36.3755559 ] } },
{ "type": "Feature", "properties": { "No": 241, "address": "群馬県高崎市箕郷町下芝66-1", "lat": 36.3766971, "lng": 138.95769530000001, "name": "箕郷第五保育園" }, "geometry": { "type": "Point", "coordinates": [ 138.95769530000001, 36.3766971 ] } },
{ "type": "Feature", "properties": { "No": 184, "address": "前橋市荒口町437番地2", "lat": 36.3772048, "lng": 139.1616545, "name": "前橋総合運動公園(コミュニティープール事務室・市民球場本部役員室・陸上競技場・クラブハウス)" }, "geometry": { "type": "Point", "coordinates": [ 139.1616545, 36.3772048 ] } },
{ "type": "Feature", "properties": { "No": 17, "address": "前橋市文京町三丁目20番36号", "lat": 36.3781529, "lng": 139.0873902, "name": "第五コミュニティセンター" }, "geometry": { "type": "Point", "coordinates": [ 139.0873902, 36.3781529 ] } },
{ "type": "Feature", "properties": { "No": 38, "address": "群馬県高崎市井出町1514", "lat": 36.3786921, "lng": 138.98527910000001, "name": "かみつけの里博物館" }, "geometry": { "type": "Point", "coordinates": [ 138.98527910000001, 36.3786921 ] } },
{ "type": "Feature", "properties": { "No": 46, "address": "前橋市文京町三丁目18番4号", "lat": 36.3790472, "lng": 139.0853764, "name": "前橋市立天川小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0853764, 36.3790472 ] } },
{ "type": "Feature", "properties": { "No": 225, "address": "群馬県高崎市上里見町453", "lat": 36.37912, "lng": 138.88672940000001, "name": "榛名体育館" }, "geometry": { "type": "Point", "coordinates": [ 138.88672940000001, 36.37912 ] } },
{ "type": "Feature", "properties": { "No": 182, "address": "群馬県高崎市棟高町2227-1", "lat": 36.3792675, "lng": 139.0020418, "name": "堤ヶ岡小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0020418, 36.3792675 ] } },
{ "type": "Feature", "properties": { "No": 181, "address": "群馬県高崎市棟高町2567-1", "lat": 36.3796925, "lng": 139.0019002, "name": "堤ヶ岡公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.0019002, 36.3796925 ] } },
{ "type": "Feature", "properties": { "No": 133, "address": "前橋市南町三丁目62番地1", "lat": 36.3799275, "lng": 139.0711499, "name": "前橋市民文化会館" }, "geometry": { "type": "Point", "coordinates": [ 139.0711499, 36.3799275 ] } },
{ "type": "Feature", "properties": { "No": 9, "address": "前橋市天川大島町一丁目31番地1", "lat": 36.3800057, "lng": 139.0965027, "name": "前橋市斎場" }, "geometry": { "type": "Point", "coordinates": [ 139.0965027, 36.3800057 ] } },
{ "type": "Feature", "properties": { "No": 226, "address": "群馬県高崎市上里見町430", "lat": 36.38017, "lng": 138.8928927, "name": "榛名中学校" }, "geometry": { "type": "Point", "coordinates": [ 138.8928927, 36.38017 ] } },
{ "type": "Feature", "properties": { "No": 91, "address": "前橋市南町一丁目20番5号", "lat": 36.3805329, "lng": 139.06542540000001, "name": "前橋市立第一中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.06542540000001, 36.3805329 ] } },
{ "type": "Feature", "properties": { "No": 74, "address": "群馬県高崎市三ツ寺町1094-2", "lat": 36.3813144, "lng": 138.9991392, "name": "群馬長寿センター" }, "geometry": { "type": "Point", "coordinates": [ 138.9991392, 36.3813144 ] } },
{ "type": "Feature", "properties": { "No": 107, "address": "前橋市荒子町1338番地", "lat": 36.3814765, "lng": 139.1647985, "name": "前橋市立荒砥中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1647985, 36.3814765 ] } },
{ "type": "Feature", "properties": { "No": 24, "address": "前橋市南町三丁目32番地3", "lat": 36.3815634, "lng": 139.0733024, "name": "前橋市立第三保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.0733024, 36.3815634 ] } },
{ "type": "Feature", "properties": { "No": 236, "address": "群馬県高崎市保渡田町121-3", "lat": 36.3816276, "lng": 138.9791574, "name": "保渡田交流館" }, "geometry": { "type": "Point", "coordinates": [ 138.9791574, 36.3816276 ] } },
{ "type": "Feature", "properties": { "No": 36, "address": "前橋市荒子町1019番地2", "lat": 36.3818652, "lng": 139.1709535, "name": "前橋市立荒砥保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.1709535, 36.3818652 ] } },
{ "type": "Feature", "properties": { "No": 64, "address": "前橋市元総社町80番地2", "lat": 36.3825933, "lng": 139.0428524, "name": "前橋市立元総社南小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0428524, 36.3825933 ] } },
{ "type": "Feature", "properties": { "No": 167, "address": "前橋市朝日町四丁目9番5号", "lat": 36.3828108, "lng": 139.0918533, "name": "前橋市夜間急病診療所" }, "geometry": { "type": "Point", "coordinates": [ 139.0918533, 36.3828108 ] } },
{ "type": "Feature", "properties": { "No": 136, "address": "前橋市朝日町四丁目22番2号", "lat": 36.3837911, "lng": 139.09008410000001, "name": "前橋市防災センター" }, "geometry": { "type": "Point", "coordinates": [ 139.09008410000001, 36.3837911 ] } },
{ "type": "Feature", "properties": { "No": 77, "address": "前橋市西大室町2817番地", "lat": 36.3840537, "lng": 139.1923098, "name": "前橋市立大室小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1923098, 36.3840537 ] } },
{ "type": "Feature", "properties": { "No": 158, "address": "前橋市朝日町三丁目21番27号", "lat": 36.3848382, "lng": 139.08770380000001, "name": "前橋市第一福祉作業所" }, "geometry": { "type": "Point", "coordinates": [ 139.08770380000001, 36.3848382 ] } },
{ "type": "Feature", "properties": { "No": 48, "address": "前橋市表町一丁目22番33号", "lat": 36.3850629, "lng": 139.0686694, "name": "前橋市立中央小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0686694, 36.3850629 ] } },
{ "type": "Feature", "properties": { "No": 155, "address": "群馬県高崎市下室田町900-1", "lat": 36.3851581, "lng": 138.8819158, "name": "高崎市役所榛名支所・榛名図書館・榛名福祉会館" }, "geometry": { "type": "Point", "coordinates": [ 138.8819158, 36.3851581 ] } },
{ "type": "Feature", "properties": { "No": 27, "address": "前橋市元総社町一丁目25番地8", "lat": 36.386201, "lng": 139.04023860000001, "name": "前橋市立元総社保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.04023860000001, 36.386201 ] } },
{ "type": "Feature", "properties": { "No": 188, "address": "前橋市東片貝町417番地4", "lat": 36.3862582, "lng": 139.1132916, "name": "前橋市産業人スポーツセンター" }, "geometry": { "type": "Point", "coordinates": [ 139.1132916, 36.3862582 ] } },
{ "type": "Feature", "properties": { "No": 103, "address": "群馬県高崎市下室田町1206", "lat": 36.3862663, "lng": 138.88764860000001, "name": "下室田小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.88764860000001, 36.3862663 ] } },
{ "type": "Feature", "properties": { "No": 58, "address": "前橋市西片貝町三丁目343番地", "lat": 36.3862856, "lng": 139.1010296, "name": "前橋市立桃瀬小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1010296, 36.3862856 ] } },
{ "type": "Feature", "properties": { "No": 63, "address": "前橋市元総社町一丁目33番地11", "lat": 36.3864203, "lng": 139.0386637, "name": "前橋市立元総社小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0386637, 36.3864203 ] } },
{ "type": "Feature", "properties": { "No": 10, "address": "前橋市朝日町三丁目36番17号", "lat": 36.3864853, "lng": 139.0898396, "name": "前橋市保健所・第二コミュニティセンター" }, "geometry": { "type": "Point", "coordinates": [ 139.0898396, 36.3864853 ] } },
{ "type": "Feature", "properties": { "No": 41, "address": "前橋市三河町二丁目1番3号", "lat": 36.3865989, "lng": 139.0786101, "name": "前橋市立中川小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0786101, 36.3865989 ] } },
{ "type": "Feature", "properties": { "No": 37, "address": "群馬県高崎市保渡田町2088-1", "lat": 36.3870214, "lng": 138.9842042, "name": "上郊保育園" }, "geometry": { "type": "Point", "coordinates": [ 138.9842042, 36.3870214 ] } },
{ "type": "Feature", "properties": { "No": 112, "address": "前橋市東上野町459番地1", "lat": 36.3870249, "lng": 139.11655780000001, "name": "前橋市立養護学校" }, "geometry": { "type": "Point", "coordinates": [ 139.11655780000001, 36.3870249 ] } },
{ "type": "Feature", "properties": { "No": 23, "address": "前橋市三河町一丁目18番26号", "lat": 36.387396, "lng": 139.0759215, "name": "前橋市立第二保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.0759215, 36.387396 ] } },
{ "type": "Feature", "properties": { "No": 35, "address": "群馬県高崎市保渡田町2101-1", "lat": 36.387438, "lng": 138.9841736, "name": "上郊公民館" }, "geometry": { "type": "Point", "coordinates": [ 138.9841736, 36.387438 ] } },
{ "type": "Feature", "properties": { "No": 139, "address": "前橋市大友町一丁目8番地", "lat": 36.3880787, "lng": 139.046588, "name": "前橋市大友児童館" }, "geometry": { "type": "Point", "coordinates": [ 139.046588, 36.3880787 ] } },
{ "type": "Feature", "properties": { "No": 36, "address": "群馬県高崎市保渡田町2107-1", "lat": 36.3881045, "lng": 138.98349590000001, "name": "上郊小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.98349590000001, 36.3881045 ] } },
{ "type": "Feature", "properties": { "No": 76, "address": "前橋市荒子町1240番地", "lat": 36.3881896, "lng": 139.1648233, "name": "前橋市立荒子小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1648233, 36.3881896 ] } },
{ "type": "Feature", "properties": { "No": 155, "address": "前橋市大友町一丁目12番地10", "lat": 36.388662, "lng": 139.04854610000001, "name": "前橋市おおとも老人福祉センター" }, "geometry": { "type": "Point", "coordinates": [ 139.04854610000001, 36.388662 ] } },
{ "type": "Feature", "properties": { "No": 25, "address": "前橋市大手町二丁目16番4号", "lat": 36.3888539, "lng": 139.0641169, "name": "前橋市立第四保育所・前橋市立桃井小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0641169, 36.3888539 ] } },
{ "type": "Feature", "properties": { "No": 95, "address": "群馬県高崎市箕郷町生原88", "lat": 36.38909, "lng": 138.9652028, "name": "さわやか交流館" }, "geometry": { "type": "Point", "coordinates": [ 138.9652028, 36.38909 ] } },
{ "type": "Feature", "properties": { "No": 135, "address": "前橋市大手町二丁目12番9号", "lat": 36.389365, "lng": 139.06407530000001, "name": "前橋市立図書館" }, "geometry": { "type": "Point", "coordinates": [ 139.06407530000001, 36.389365 ] } },
{ "type": "Feature", "properties": { "No": 152, "address": "前橋市元総社町二丁目20番地6", "lat": 36.3894699, "lng": 139.03869420000001, "name": "前橋市第三福祉作業所・前橋市シルバー人材センター" }, "geometry": { "type": "Point", "coordinates": [ 139.03869420000001, 36.3894699 ] } },
{ "type": "Feature", "properties": { "No": 1, "address": "前橋市大手町二丁目12番1号", "lat": 36.3895427, "lng": 139.0634059, "name": "前橋市役所(1階 正面玄関 時計下・2階 国民健康保険課21番窓口カウンター前方・10階 スポーツ課)" }, "geometry": { "type": "Point", "coordinates": [ 139.0634059, 36.3895427 ] } },
{ "type": "Feature", "properties": { "No": 249, "address": "群馬県高崎市箕郷町生原74", "lat": 36.3898676, "lng": 138.9646556, "name": "箕郷福祉会館エスポワール" }, "geometry": { "type": "Point", "coordinates": [ 138.9646556, 36.3898676 ] } },
{ "type": "Feature", "properties": { "No": 7, "address": "前橋市本町二丁目12番1号", "lat": 36.3899345, "lng": 139.0711718, "name": "前橋市中央公民館・前橋プラザ元気21(にぎわい商業課)" }, "geometry": { "type": "Point", "coordinates": [ 139.0711718, 36.3899345 ] } },
{ "type": "Feature", "properties": { "No": 177, "address": "前橋市西片貝町五丁目8番地", "lat": 36.3899514, "lng": 139.0842095, "name": "前橋市児童文化センター" }, "geometry": { "type": "Point", "coordinates": [ 139.0842095, 36.3899514 ] } },
{ "type": "Feature", "properties": { "No": 67, "address": "群馬県高崎市箕郷町富岡255-1", "lat": 36.3900978, "lng": 138.9490985, "name": "車郷小学校・箕郷車郷小学童みつばちクラブ" }, "geometry": { "type": "Point", "coordinates": [ 138.9490985, 36.3900978 ] } },
{ "type": "Feature", "properties": { "No": 8, "address": "前橋市千代田町5丁目1番16", "lat": 36.3906177, "lng": 139.07143840000001, "name": "アーツ前橋" }, "geometry": { "type": "Point", "coordinates": [ 139.07143840000001, 36.3906177 ] } },
{ "type": "Feature", "properties": { "No": 242, "address": "群馬県高崎市箕郷町富岡281", "lat": 36.3908393, "lng": 138.94890960000001, "name": "箕郷第三保育園" }, "geometry": { "type": "Point", "coordinates": [ 138.94890960000001, 36.3908393 ] } },
{ "type": "Feature", "properties": { "No": 94, "address": "前橋市城東町四丁目24番12号", "lat": 36.3910873, "lng": 139.0796044, "name": "前橋市立第五中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0796044, 36.3910873 ] } },
{ "type": "Feature", "properties": { "No": 239, "address": "群馬県高崎市箕郷町西明屋421-3", "lat": 36.3917171, "lng": 138.9565395, "name": "箕郷公民館・箕郷保健センター" }, "geometry": { "type": "Point", "coordinates": [ 138.9565395, 36.3917171 ] } },
{ "type": "Feature", "properties": { "No": 122, "address": "前橋市元総社町三丁目1番地1", "lat": 36.3920472, "lng": 139.0372804, "name": "前橋市元総社公民館(市民サービスセンター)" }, "geometry": { "type": "Point", "coordinates": [ 139.0372804, 36.3920472 ] } },
{ "type": "Feature", "properties": { "No": 170, "address": "前橋市千代田町二丁目5番1号(1階・7階)", "lat": 36.3921869, "lng": 139.06834420000001, "name": "前橋テルサ" }, "geometry": { "type": "Point", "coordinates": [ 139.06834420000001, 36.3921869 ] } },
{ "type": "Feature", "properties": { "No": 162, "address": "群馬県高崎市上室田町1850", "lat": 36.3924073, "lng": 138.8450772, "name": "高浜クリーンセンター 榛名最終処分場" }, "geometry": { "type": "Point", "coordinates": [ 138.8450772, 36.3924073 ] } },
{ "type": "Feature", "properties": { "No": 85, "address": "群馬県高崎市引間町203-11", "lat": 36.3925689, "lng": 139.0205346, "name": "国府公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.0205346, 36.3925689 ] } },
{ "type": "Feature", "properties": { "No": 206, "address": "群馬県高崎市中室田町1561-1", "lat": 36.3935766, "lng": 138.8687, "name": "中室田小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.8687, 36.3935766 ] } },
{ "type": "Feature", "properties": { "No": 172, "address": "前橋市大渡町二丁目3番地15", "lat": 36.3937195, "lng": 139.04651, "name": "前橋市勤労青少年ホーム" }, "geometry": { "type": "Point", "coordinates": [ 139.04651, 36.3937195 ] } },
{ "type": "Feature", "properties": { "No": 171, "address": "前橋市城東町二丁目3番8号", "lat": 36.3937257, "lng": 139.0731382, "name": "城東町立体駐車場" }, "geometry": { "type": "Point", "coordinates": [ 139.0731382, 36.3937257 ] } },
{ "type": "Feature", "properties": { "No": 120, "address": "前橋市上泉町141番地3", "lat": 36.3938987, "lng": 139.1043511, "name": "前橋市桂萱公民館(市民サービスセンター)" }, "geometry": { "type": "Point", "coordinates": [ 139.1043511, 36.3938987 ] } },
{ "type": "Feature", "properties": { "No": 134, "address": "前橋市千代田町三丁目12番10号", "lat": 36.3939728, "lng": 139.0721855, "name": "前橋文学館" }, "geometry": { "type": "Point", "coordinates": [ 139.0721855, 36.3939728 ] } },
{ "type": "Feature", "properties": { "No": 191, "address": "前橋市大渡町二丁目3番地11", "lat": 36.3940222, "lng": 139.04561570000001, "name": "前橋市大渡温水プール・トレーニングセンター" }, "geometry": { "type": "Point", "coordinates": [ 139.04561570000001, 36.3940222 ] } },
{ "type": "Feature", "properties": { "No": 44, "address": "前橋市城東町一丁目35番地7", "lat": 36.394759, "lng": 139.0796542, "name": "前橋市立城東小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0796542, 36.394759 ] } },
{ "type": "Feature", "properties": { "No": 86, "address": "群馬県高崎市後疋間町184-1", "lat": 36.3950184, "lng": 139.016546, "name": "国府小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.016546, 36.3950184 ] } },
{ "type": "Feature", "properties": { "No": 65, "address": "前橋市総社町総社3149番地", "lat": 36.39503, "lng": 139.0335139, "name": "前橋市立元総社北小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0335139, 36.39503 ] } },
{ "type": "Feature", "properties": { "No": 245, "address": "群馬県高崎市箕郷町西明屋299-1", "lat": 36.3950416, "lng": 138.9557839, "name": "箕郷図書館" }, "geometry": { "type": "Point", "coordinates": [ 138.9557839, 36.3950416 ] } },
{ "type": "Feature", "properties": { "No": 101, "address": "前橋市総社町総社3060番地", "lat": 36.3951717, "lng": 139.03521660000001, "name": "前橋市立元総社中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.03521660000001, 36.3951717 ] } },
{ "type": "Feature", "properties": { "No": 178, "address": "前橋市大手町三丁目16番3号", "lat": 36.3953002, "lng": 139.0630668, "name": "前橋市中央児童遊園・るなぱあく" }, "geometry": { "type": "Point", "coordinates": [ 139.0630668, 36.3953002 ] } },
{ "type": "Feature", "properties": { "No": 179, "address": "前橋市大手町三丁目15番地", "lat": 36.3953446, "lng": 139.0617364, "name": "臨江閣" }, "geometry": { "type": "Point", "coordinates": [ 139.0617364, 36.3953446 ] } },
{ "type": "Feature", "properties": { "No": 99, "address": "前橋市上泉町175番地", "lat": 36.3961373, "lng": 139.1031845, "name": "前橋市立桂萱中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1031845, 36.3961373 ] } },
{ "type": "Feature", "properties": { "No": 55, "address": "前橋市上泉町178番地", "lat": 36.3961651, "lng": 139.1048621, "name": "前橋市立桂萱小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1048621, 36.3961651 ] } },
{ "type": "Feature", "properties": { "No": 75, "address": "群馬県高崎市足門町1667-1", "lat": 36.3962815, "lng": 138.9988225, "name": "群馬図書館" }, "geometry": { "type": "Point", "coordinates": [ 138.9988225, 36.3962815 ] } },
{ "type": "Feature", "properties": { "No": 87, "address": "群馬県高崎市引間町310", "lat": 36.3964376, "lng": 139.017157, "name": "国府保育園" }, "geometry": { "type": "Point", "coordinates": [ 139.017157, 36.3964376 ] } },
{ "type": "Feature", "properties": { "No": 100, "address": "群馬県高崎市足門町1669-2", "lat": 36.3965176, "lng": 138.99967520000001, "name": "市民活動センター" }, "geometry": { "type": "Point", "coordinates": [ 138.99967520000001, 36.3965176 ] } },
{ "type": "Feature", "properties": { "No": 71, "address": "群馬県高崎市足門町1663-2", "lat": 36.3965759, "lng": 138.9989086, "name": "群馬児童館" }, "geometry": { "type": "Point", "coordinates": [ 138.9989086, 36.3965759 ] } },
{ "type": "Feature", "properties": { "No": 145, "address": "前橋市堤町729番地6", "lat": 36.3967131, "lng": 139.1329939, "name": "前橋市かいがやひがし児童クラブ" }, "geometry": { "type": "Point", "coordinates": [ 139.1329939, 36.3967131 ] } },
{ "type": "Feature", "properties": { "No": 244, "address": "群馬県高崎市箕郷町生原654", "lat": 36.3968499, "lng": 138.9638111, "name": "箕郷中学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9638111, 36.3968499 ] } },
{ "type": "Feature", "properties": { "No": 31, "address": "群馬県高崎市足門町930-5", "lat": 36.3969451, "lng": 138.9923758, "name": "金古南足門公民館" }, "geometry": { "type": "Point", "coordinates": [ 138.9923758, 36.3969451 ] } },
{ "type": "Feature", "properties": { "No": 22, "address": "前橋市日吉町一丁目11番地7", "lat": 36.3969614, "lng": 139.0756212, "name": "前橋市立第一保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.0756212, 36.3969614 ] } },
{ "type": "Feature", "properties": { "No": 168, "address": "前橋市岩神町一丁目2番1号", "lat": 36.3969749, "lng": 139.0579228, "name": "前橋競輪場(グリーンドーム前橋)(1階ロビー・2階インフォメーション)" }, "geometry": { "type": "Point", "coordinates": [ 139.0579228, 36.3969749 ] } },
{ "type": "Feature", "properties": { "No": 78, "address": "群馬県高崎市棟高町975-1", "lat": 36.3976009, "lng": 139.0023721, "name": "群馬福祉作業所" }, "geometry": { "type": "Point", "coordinates": [ 139.0023721, 36.3976009 ] } },
{ "type": "Feature", "properties": { "No": 57, "address": "前橋市堤町471番地", "lat": 36.3976101, "lng": 139.129836, "name": "前橋市立桂萱東小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.129836, 36.3976101 ] } },
{ "type": "Feature", "properties": { "No": 76, "address": "群馬県高崎市金古町490-1", "lat": 36.3977176, "lng": 139.002761, "name": "群馬プール" }, "geometry": { "type": "Point", "coordinates": [ 139.002761, 36.3977176 ] } },
{ "type": "Feature", "properties": { "No": 77, "address": "群馬県高崎市棟高町977-1", "lat": 36.397837, "lng": 139.0016278, "name": "群馬福祉会館" }, "geometry": { "type": "Point", "coordinates": [ 139.0016278, 36.397837 ] } },
{ "type": "Feature", "properties": { "No": 79, "address": "群馬県高崎市足門町1658", "lat": 36.3980424, "lng": 138.99986960000001, "name": "群馬保健センター・高崎市役所群馬支所" }, "geometry": { "type": "Point", "coordinates": [ 138.99986960000001, 36.3980424 ] } },
{ "type": "Feature", "properties": { "No": 223, "address": "群馬県高崎市上室田町4707-1", "lat": 36.3982482, "lng": 138.8523736, "name": "はるなくらぶち聖苑" }, "geometry": { "type": "Point", "coordinates": [ 138.8523736, 36.3982482 ] } },
{ "type": "Feature", "properties": { "No": 14, "address": "前橋市日吉町二丁目17番地10", "lat": 36.3983141, "lng": 139.07962910000001, "name": "前橋市総合福祉会館(第四コミュニティセンター)" }, "geometry": { "type": "Point", "coordinates": [ 139.07962910000001, 36.3983141 ] } },
{ "type": "Feature", "properties": { "No": 262, "address": "群馬県高崎市宮沢町1100-1", "lat": 36.3986684, "lng": 138.9138792, "name": "宮沢小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9138792, 36.3986684 ] } },
{ "type": "Feature", "properties": { "No": 260, "address": "群馬県高崎市箕郷町西明屋196-1", "lat": 36.3988049, "lng": 138.95467550000001, "name": "箕輪小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.95467550000001, 36.3988049 ] } },
{ "type": "Feature", "properties": { "No": 248, "address": "群馬県高崎市箕郷町西明屋740", "lat": 36.398927, "lng": 138.9508703, "name": "箕郷プール" }, "geometry": { "type": "Point", "coordinates": [ 138.9508703, 36.398927 ] } },
{ "type": "Feature", "properties": { "No": 240, "address": "群馬県高崎市箕郷町上芝1063-1", "lat": 36.399477, "lng": 138.95601980000001, "name": "箕郷第一保育園" }, "geometry": { "type": "Point", "coordinates": [ 138.95601980000001, 36.399477 ] } },
{ "type": "Feature", "properties": { "No": 252, "address": "群馬県高崎市箕郷町上芝1061-3", "lat": 36.399863, "lng": 138.9552699, "name": "箕郷箕輪小学童わんぱくクラブ" }, "geometry": { "type": "Point", "coordinates": [ 138.9552699, 36.399863 ] } },
{ "type": "Feature", "properties": { "No": 137, "address": "前橋市日吉町三丁目20番地1", "lat": 36.3998861, "lng": 139.0778015, "name": "前橋市日吉児童館" }, "geometry": { "type": "Point", "coordinates": [ 139.0778015, 36.3998861 ] } },
{ "type": "Feature", "properties": { "No": 30, "address": "前橋市上泉町1475番地1", "lat": 36.3998955, "lng": 139.1149188, "name": "前橋市立桂萱保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.1149188, 36.3998955 ] } },
{ "type": "Feature", "properties": { "No": 92, "address": "前橋市平和町二丁目13番24号", "lat": 36.4004911, "lng": 139.0621223, "name": "前橋市立第三中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0621223, 36.4004911 ] } },
{ "type": "Feature", "properties": { "No": 93, "address": "前橋市日吉町三丁目9番2", "lat": 36.4007915, "lng": 139.0761072, "name": "前橋市立みずき中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0761072, 36.4007915 ] } },
{ "type": "Feature", "properties": { "No": 72, "address": "群馬県高崎市足門町1449-1", "lat": 36.400889, "lng": 138.9929285, "name": "群馬体育館" }, "geometry": { "type": "Point", "coordinates": [ 138.9929285, 36.400889 ] } },
{ "type": "Feature", "properties": { "No": 261, "address": "群馬県高崎市箕郷町西明屋859-1", "lat": 36.4009101, "lng": 138.9519507, "name": "箕輪城長寿センター" }, "geometry": { "type": "Point", "coordinates": [ 138.9519507, 36.4009101 ] } },
{ "type": "Feature", "properties": { "No": 250, "address": "群馬県高崎市箕郷町生原922-1", "lat": 36.4009161, "lng": 138.9690023, "name": "箕郷文化会館" }, "geometry": { "type": "Point", "coordinates": [ 138.9690023, 36.4009161 ] } },
{ "type": "Feature", "properties": { "No": 246, "address": "群馬県高崎市箕郷町生原922-2", "lat": 36.4016104, "lng": 138.9685523, "name": "箕郷東小学校・箕郷東小学童げんきっこクラブ" }, "geometry": { "type": "Point", "coordinates": [ 138.9685523, 36.4016104 ] } },
{ "type": "Feature", "properties": { "No": 32, "address": "群馬県高崎市金古町664", "lat": 36.4017083, "lng": 138.9933007, "name": "金古南学童保育クラブ" }, "geometry": { "type": "Point", "coordinates": [ 138.9933007, 36.4017083 ] } },
{ "type": "Feature", "properties": { "No": 33, "address": "群馬県高崎市金古町658", "lat": 36.4017972, "lng": 138.994245, "name": "金古南小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.994245, 36.4017972 ] } },
{ "type": "Feature", "properties": { "No": 42, "address": "前橋市昭和町一丁目22番8号", "lat": 36.402877, "lng": 139.0654831, "name": "前橋市立敷島小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0654831, 36.402877 ] } },
{ "type": "Feature", "properties": { "No": 15, "address": "前橋市岩神町三丁目1番1号", "lat": 36.4031018, "lng": 139.05919750000001, "name": "前橋市総合教育プラザ(第三コミュニティセンター)" }, "geometry": { "type": "Point", "coordinates": [ 139.05919750000001, 36.4031018 ] } },
{ "type": "Feature", "properties": { "No": 73, "address": "群馬県高崎市金古町352-1", "lat": 36.4032834, "lng": 139.00368030000001, "name": "群馬中央中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.00368030000001, 36.4032834 ] } },
{ "type": "Feature", "properties": { "No": 41, "address": "群馬県高崎市上室田町4210", "lat": 36.4036476, "lng": 138.8397412, "name": "上室田小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.8397412, 36.4036476 ] } },
{ "type": "Feature", "properties": { "No": 56, "address": "前橋市上沖町732番地1", "lat": 36.4036749, "lng": 139.09051120000001, "name": "前橋市立桃木小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.09051120000001, 36.4036749 ] } },
{ "type": "Feature", "properties": { "No": 70, "address": "群馬県高崎市金古町707-1", "lat": 36.4051635, "lng": 138.99574480000001, "name": "群馬北保育園" }, "geometry": { "type": "Point", "coordinates": [ 138.99574480000001, 36.4051635 ] } },
{ "type": "Feature", "properties": { "No": 6, "address": "前橋市岩神町三丁目13番15号", "lat": 36.4058596, "lng": 139.0555282, "name": "前橋市水道局庁舎" }, "geometry": { "type": "Point", "coordinates": [ 139.0555282, 36.4058596 ] } },
{ "type": "Feature", "properties": { "No": 114, "address": "前橋市上大屋町105", "lat": 36.4059293, "lng": 139.1630314, "name": "旧前橋東商業高等学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1630314, 36.4059293 ] } },
{ "type": "Feature", "properties": { "No": 45, "address": "前橋市若宮町四丁目12番24号", "lat": 36.4059628, "lng": 139.070974, "name": "前橋市立若宮小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.070974, 36.4059628 ] } },
{ "type": "Feature", "properties": { "No": 29, "address": "群馬県高崎市金古町1278-2", "lat": 36.4069828, "lng": 138.99715560000001, "name": "金古公民館" }, "geometry": { "type": "Point", "coordinates": [ 138.99715560000001, 36.4069828 ] } },
{ "type": "Feature", "properties": { "No": 28, "address": "群馬県高崎市金古町999-1", "lat": 36.407116, "lng": 138.993431, "name": "金古運動広場" }, "geometry": { "type": "Point", "coordinates": [ 138.993431, 36.407116 ] } },
{ "type": "Feature", "properties": { "No": 30, "address": "群馬県高崎市金古町1271-1", "lat": 36.4071856, "lng": 138.9993471, "name": "金古小学校" }, "geometry": { "type": "Point", "coordinates": [ 138.9993471, 36.4071856 ] } },
{ "type": "Feature", "properties": { "No": 47, "address": "前橋市岩神町四丁目4番1号", "lat": 36.4074344, "lng": 139.0564308, "name": "前橋市立岩神小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0564308, 36.4074344 ] } },
{ "type": "Feature", "properties": { "No": 123, "address": "前橋市総社町総社1583番地2", "lat": 36.4075534, "lng": 139.03958510000001, "name": "前橋市総社公民館(市民サービスセンター)" }, "geometry": { "type": "Point", "coordinates": [ 139.03958510000001, 36.4075534 ] } },
{ "type": "Feature", "properties": { "No": 18, "address": "前橋市若宮町四丁目32番4号", "lat": 36.407557, "lng": 139.06985180000001, "name": "前橋市立まえばし幼稚園" }, "geometry": { "type": "Point", "coordinates": [ 139.06985180000001, 36.407557 ] } },
{ "type": "Feature", "properties": { "No": 173, "address": "前橋市荻窪町530番地1", "lat": 36.4085976, "lng": 139.13354090000001, "name": "あいのやまの湯" }, "geometry": { "type": "Point", "coordinates": [ 139.13354090000001, 36.4085976 ] } },
{ "type": "Feature", "properties": { "No": 26, "address": "前橋市総社町総社1596番地", "lat": 36.4086227, "lng": 139.0393684, "name": "前橋市立総社保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.0393684, 36.4086227 ] } },
{ "type": "Feature", "properties": { "No": 61, "address": "前橋市総社町総社1625番地", "lat": 36.4090892, "lng": 139.0379324, "name": "前橋市立総社小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0379324, 36.4090892 ] } },
{ "type": "Feature", "properties": { "No": 95, "address": "前橋市総社町総社1762番地1", "lat": 36.4100057, "lng": 139.03497150000001, "name": "前橋市立第六中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.03497150000001, 36.4100057 ] } },
{ "type": "Feature", "properties": { "No": 243, "address": "群馬県高崎市箕郷町柏木沢209-1", "lat": 36.4106286, "lng": 138.9660744, "name": "箕郷第二保育園" }, "geometry": { "type": "Point", "coordinates": [ 138.9660744, 36.4106286 ] } },
{ "type": "Feature", "properties": { "No": 141, "address": "前橋市粕川町込皆戸526番地", "lat": 36.4108926, "lng": 139.18863160000001, "name": "前橋市粕川児童館" }, "geometry": { "type": "Point", "coordinates": [ 139.18863160000001, 36.4108926 ] } },
{ "type": "Feature", "properties": { "No": 140, "address": "前橋市下小出町二丁目15番地", "lat": 36.4110203, "lng": 139.0671074, "name": "前橋市下小出児童館" }, "geometry": { "type": "Point", "coordinates": [ 139.0671074, 36.4110203 ] } },
{ "type": "Feature", "properties": { "No": 110, "address": "前橋市粕川町西田面138番地", "lat": 36.4111906, "lng": 139.2142015, "name": "前橋市立粕川中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.2142015, 36.4111906 ] } },
{ "type": "Feature", "properties": { "No": 150, "address": "前橋市粕川町女渕567番地13", "lat": 36.4116015, "lng": 139.2107102, "name": "前橋市かすかわ児童クラブ" }, "geometry": { "type": "Point", "coordinates": [ 139.2107102, 36.4116015 ] } },
{ "type": "Feature", "properties": { "No": 38, "address": "前橋市粕川町新屋688番地1", "lat": 36.4116399, "lng": 139.19232020000001, "name": "前橋市立粕川保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.19232020000001, 36.4116399 ] } },
{ "type": "Feature", "properties": { "No": 132, "address": "前橋市粕川町西田面192番地1", "lat": 36.4117432, "lng": 139.2114851, "name": "前橋市隣保館" }, "geometry": { "type": "Point", "coordinates": [ 139.2114851, 36.4117432 ] } },
{ "type": "Feature", "properties": { "No": 85, "address": "前橋市粕川町女渕521番地2", "lat": 36.411832, "lng": 139.20913530000001, "name": "前橋市立粕川小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.20913530000001, 36.411832 ] } },
{ "type": "Feature", "properties": { "No": 130, "address": "前橋市粕川町西田面194番地4", "lat": 36.4120626, "lng": 139.2112962, "name": "前橋市粕川公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.2112962, 36.4120626 ] } },
{ "type": "Feature", "properties": { "No": 187, "address": "前橋市粕川町西田面189番地", "lat": 36.4141373, "lng": 139.2110573, "name": "前橋市粕川スポーツ施設管理事務所(管理事務所内)" }, "geometry": { "type": "Point", "coordinates": [ 139.2110573, 36.4141373 ] } },
{ "type": "Feature", "properties": { "No": 4, "address": "前橋市粕川町西田面216番地1", "lat": 36.4141512, "lng": 139.2104851, "name": "前橋市粕川支所" }, "geometry": { "type": "Point", "coordinates": [ 139.2104851, 36.4141512 ] } },
{ "type": "Feature", "properties": { "No": 62, "address": "前橋市総社町植野123番地", "lat": 36.4142692, "lng": 139.0416512, "name": "前橋市立勝山小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0416512, 36.4142692 ] } },
{ "type": "Feature", "properties": { "No": 156, "address": "前橋市粕川町前皆戸189番地1", "lat": 36.4149346, "lng": 139.2140181, "name": "前橋市かすかわ老人福祉センター" }, "geometry": { "type": "Point", "coordinates": [ 139.2140181, 36.4149346 ] } },
{ "type": "Feature", "properties": { "No": 105, "address": "前橋市上細井町2130番地", "lat": 36.4152396, "lng": 139.08326410000001, "name": "前橋市立鎌倉中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.08326410000001, 36.4152396 ] } },
{ "type": "Feature", "properties": { "No": 163, "address": "前橋市粕川町前皆戸194番地1", "lat": 36.4153428, "lng": 139.21397640000001, "name": "前橋市粕川福祉作業所" }, "geometry": { "type": "Point", "coordinates": [ 139.21397640000001, 36.4153428 ] } },
{ "type": "Feature", "properties": { "No": 69, "address": "前橋市下細井町67番地1", "lat": 36.416017, "lng": 139.07543140000001, "name": "前橋市立細井小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.07543140000001, 36.416017 ] } },
{ "type": "Feature", "properties": { "No": 113, "address": "前橋市上細井町2211番地3", "lat": 36.4162034, "lng": 139.08503880000001, "name": "前橋市立前橋高等学校" }, "geometry": { "type": "Point", "coordinates": [ 139.08503880000001, 36.4162034 ] } },
{ "type": "Feature", "properties": { "No": 35, "address": "前橋市上細井町2006番地4", "lat": 36.4165697, "lng": 139.07701180000001, "name": "前橋市立細井保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.07701180000001, 36.4165697 ] } },
{ "type": "Feature", "properties": { "No": 189, "address": "前橋市上細井町2192番地", "lat": 36.4167421, "lng": 139.08194460000001, "name": "前橋市民プール(開場期間中)" }, "geometry": { "type": "Point", "coordinates": [ 139.08194460000001, 36.4167421 ] } },
{ "type": "Feature", "properties": { "No": 80, "address": "前橋市堀越町1161番地", "lat": 36.4169915, "lng": 139.1568208, "name": "前橋市立大胡小学校・前橋市おおご児童クラブ" }, "geometry": { "type": "Point", "coordinates": [ 139.1568208, 36.4169915 ] } },
{ "type": "Feature", "properties": { "No": 73, "address": "前橋市青梨子町446番地", "lat": 36.4172931, "lng": 139.0121814, "name": "前橋市立清里小学校・前橋市きよさと児童クラブ" }, "geometry": { "type": "Point", "coordinates": [ 139.0121814, 36.4172931 ] } },
{ "type": "Feature", "properties": { "No": 128, "address": "前橋市大胡町15番地", "lat": 36.4174053, "lng": 139.1586984, "name": "前橋市大胡公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.1586984, 36.4174053 ] } },
{ "type": "Feature", "properties": { "No": 2, "address": "前橋市堀越町1115番地", "lat": 36.4177581, "lng": 139.15803460000001, "name": "前橋市大胡支所" }, "geometry": { "type": "Point", "coordinates": [ 139.15803460000001, 36.4177581 ] } },
{ "type": "Feature", "properties": { "No": 125, "address": "前橋市青梨子町339番地", "lat": 36.4179292, "lng": 139.0132702, "name": "前橋市清里公民館(市民サービスセンター)" }, "geometry": { "type": "Point", "coordinates": [ 139.0132702, 36.4179292 ] } },
{ "type": "Feature", "properties": { "No": 108, "address": "前橋市堀越町1152番地", "lat": 36.4185412, "lng": 139.1564458, "name": "前橋市立大胡中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1564458, 36.4185412 ] } },
{ "type": "Feature", "properties": { "No": 148, "address": "前橋市河原浜町739番地1", "lat": 36.4192663, "lng": 139.1649311, "name": "前橋市おおごひがし児童クラブ" }, "geometry": { "type": "Point", "coordinates": [ 139.1649311, 36.4192663 ] } },
{ "type": "Feature", "properties": { "No": 197, "address": "前橋市敷島町262番地", "lat": 36.4195324, "lng": 139.05025570000001, "name": "ばら園" }, "geometry": { "type": "Point", "coordinates": [ 139.05025570000001, 36.4195324 ] } },
{ "type": "Feature", "properties": { "No": 83, "address": "前橋市河原浜町870番地1", "lat": 36.4196662, "lng": 139.16591980000001, "name": "前橋市立大胡東小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.16591980000001, 36.4196662 ] } },
{ "type": "Feature", "properties": { "No": 19, "address": "前橋市河原浜町641番地", "lat": 36.4205854, "lng": 139.1593733, "name": "前橋市立大胡幼稚園" }, "geometry": { "type": "Point", "coordinates": [ 139.1593733, 36.4205854 ] } },
{ "type": "Feature", "properties": { "No": 29, "address": "前橋市清野町417番地", "lat": 36.4209371, "lng": 139.0119507, "name": "前橋市立清里保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.0119507, 36.4209371 ] } },
{ "type": "Feature", "properties": { "No": 52, "address": "群馬県高崎市倉渕町水沼27", "lat": 36.4209718, "lng": 138.7733275, "name": "クラインガルテン" }, "geometry": { "type": "Point", "coordinates": [ 138.7733275, 36.4209718 ] } },
{ "type": "Feature", "properties": { "No": 153, "address": "前橋市荒牧町1154番地1", "lat": 36.4217349, "lng": 139.0508027, "name": "前橋市しきしま老人福祉センター" }, "geometry": { "type": "Point", "coordinates": [ 139.0508027, 36.4217349 ] } },
{ "type": "Feature", "properties": { "No": 20, "address": "前橋市河原浜町491番地1", "lat": 36.4222325, "lng": 139.1634618, "name": "前橋市立大胡東幼稚園" }, "geometry": { "type": "Point", "coordinates": [ 139.1634618, 36.4222325 ] } },
{ "type": "Feature", "properties": { "No": 13, "address": "前橋市河原浜町480番地", "lat": 36.4233185, "lng": 139.16405610000001, "name": "大胡保健センター" }, "geometry": { "type": "Point", "coordinates": [ 139.16405610000001, 36.4233185 ] } },
{ "type": "Feature", "properties": { "No": 66, "address": "群馬県高崎市倉渕町岩氷19-1", "lat": 36.42338, "lng": 138.7767577, "name": "倉渕福祉センター" }, "geometry": { "type": "Point", "coordinates": [ 138.7767577, 36.42338 ] } },
{ "type": "Feature", "properties": { "No": 59, "address": "前橋市勝沢町719番地", "lat": 36.4234445, "lng": 139.10504180000001, "name": "前橋市立芳賀小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.10504180000001, 36.4234445 ] } },
{ "type": "Feature", "properties": { "No": 181, "address": "前橋市河原浜町478番地", "lat": 36.4236267, "lng": 139.1639811, "name": "前橋市大胡体育館" }, "geometry": { "type": "Point", "coordinates": [ 139.1639811, 36.4236267 ] } },
{ "type": "Feature", "properties": { "No": 61, "address": "群馬県高崎市倉渕町三ノ倉296-1", "lat": 36.4245108, "lng": 138.7931396, "name": "倉渕公民館" }, "geometry": { "type": "Point", "coordinates": [ 138.7931396, 36.4245108 ] } },
{ "type": "Feature", "properties": { "No": 104, "address": "前橋市荒牧町975番地", "lat": 36.4245347, "lng": 139.06062940000001, "name": "前橋市立南橘中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.06062940000001, 36.4245347 ] } },
{ "type": "Feature", "properties": { "No": 153, "address": "群馬県高崎市倉渕町三ノ倉303", "lat": 36.425319, "lng": 138.79258680000001, "name": "高崎市役所倉渕支所" }, "geometry": { "type": "Point", "coordinates": [ 138.79258680000001, 36.425319 ] } },
{ "type": "Feature", "properties": { "No": 100, "address": "前橋市鳥取町796番地", "lat": 36.4254138, "lng": 139.1099662, "name": "前橋市立芳賀中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1099662, 36.4254138 ] } },
{ "type": "Feature", "properties": { "No": 166, "address": "前橋市荻窪町677番地", "lat": 36.4255117, "lng": 139.13044690000001, "name": "荻窪清掃工場" }, "geometry": { "type": "Point", "coordinates": [ 139.13044690000001, 36.4255117 ] } },
{ "type": "Feature", "properties": { "No": 33, "address": "前橋市鳥取町821番地1", "lat": 36.4260998, "lng": 139.1079192, "name": "前橋市立芳賀保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.1079192, 36.4260998 ] } },
{ "type": "Feature", "properties": { "No": 32, "address": "前橋市荒牧町1丁目14番地3", "lat": 36.4265011, "lng": 139.0604543, "name": "前橋市立南橘保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.0604543, 36.4265011 ] } },
{ "type": "Feature", "properties": { "No": 119, "address": "前橋市鳥取町817番地", "lat": 36.4265969, "lng": 139.10813580000001, "name": "前橋市芳賀公民館(市民サービスセンター)" }, "geometry": { "type": "Point", "coordinates": [ 139.10813580000001, 36.4265969 ] } },
{ "type": "Feature", "properties": { "No": 71, "address": "前橋市荒牧町四丁目9番地2", "lat": 36.4281423, "lng": 139.0477915, "name": "前橋市立荒牧小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0477915, 36.4281423 ] } },
{ "type": "Feature", "properties": { "No": 124, "address": "前橋市日輪寺町158番地", "lat": 36.4284037, "lng": 139.0634734, "name": "前橋市南橘公民館(市民サービスセンター)" }, "geometry": { "type": "Point", "coordinates": [ 139.0634734, 36.4284037 ] } },
{ "type": "Feature", "properties": { "No": 161, "address": "前橋市堀越町607番地1", "lat": 36.4288005, "lng": 139.14621120000001, "name": "前橋市大胡福祉作業所" }, "geometry": { "type": "Point", "coordinates": [ 139.14621120000001, 36.4288005 ] } },
{ "type": "Feature", "properties": { "No": 65, "address": "群馬県高崎市倉渕町岩氷215-1", "lat": 36.4300239, "lng": 138.7848956, "name": "倉渕中学校" }, "geometry": { "type": "Point", "coordinates": [ 138.7848956, 36.4300239 ] } },
{ "type": "Feature", "properties": { "No": 70, "address": "前橋市荒牧町1丁目46番地11", "lat": 36.430642, "lng": 139.0552879, "name": "前橋市立桃川小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0552879, 36.430642 ] } },
{ "type": "Feature", "properties": { "No": 185, "address": "前橋市堀越町473番地4", "lat": 36.4328332, "lng": 139.1449975, "name": "大胡総合運動公園" }, "geometry": { "type": "Point", "coordinates": [ 139.1449975, 36.4328332 ] } },
{ "type": "Feature", "properties": { "No": 72, "address": "前橋市川原町826番地", "lat": 36.4328777, "lng": 139.0386059, "name": "前橋市立荒牧小学校・南橘中学校みやま分校" }, "geometry": { "type": "Point", "coordinates": [ 139.0386059, 36.4328777 ] } },
{ "type": "Feature", "properties": { "No": 86, "address": "前橋市粕川町月田273番地", "lat": 36.4330656, "lng": 139.2112261, "name": "前橋市立月田小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.2112261, 36.4330656 ] } },
{ "type": "Feature", "properties": { "No": 175, "address": "前橋市粕川町月田372番地1", "lat": 36.4333599, "lng": 139.2062627, "name": "前橋市粕川温泉元気ランド" }, "geometry": { "type": "Point", "coordinates": [ 139.2062627, 36.4333599 ] } },
{ "type": "Feature", "properties": { "No": 143, "address": "前橋市関根町479番地2", "lat": 36.4340331, "lng": 139.04291380000001, "name": "前橋市あらまき第二児童クラブ" }, "geometry": { "type": "Point", "coordinates": [ 139.04291380000001, 36.4340331 ] } },
{ "type": "Feature", "properties": { "No": 81, "address": "前橋市滝窪町185番地1", "lat": 36.435602, "lng": 139.1380513, "name": "前橋市立滝窪小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1380513, 36.435602 ] } },
{ "type": "Feature", "properties": { "No": 64, "address": "群馬県高崎市倉渕町岩氷610", "lat": 36.4381754, "lng": 138.77485440000001, "name": "倉渕体育館" }, "geometry": { "type": "Point", "coordinates": [ 138.77485440000001, 36.4381754 ] } },
{ "type": "Feature", "properties": { "No": 3, "address": "前橋市鼻毛石町1507番地4", "lat": 36.438514, "lng": 139.17759330000001, "name": "前橋市宮城支所" }, "geometry": { "type": "Point", "coordinates": [ 139.17759330000001, 36.438514 ] } },
{ "type": "Feature", "properties": { "No": 221, "address": "群馬県高崎市倉渕町川浦27-80", "lat": 36.4388532, "lng": 138.6865734, "name": "はまゆう山荘" }, "geometry": { "type": "Point", "coordinates": [ 138.6865734, 36.4388532 ] } },
{ "type": "Feature", "properties": { "No": 62, "address": "群馬県高崎市倉渕町岩氷724-2", "lat": 36.4388864, "lng": 138.7744127, "name": "くらぶちこども園" }, "geometry": { "type": "Point", "coordinates": [ 138.7744127, 36.4388864 ] } },
{ "type": "Feature", "properties": { "No": 149, "address": "前橋市鼻毛石町1507番地5", "lat": 36.4391528, "lng": 139.1776794, "name": "前橋市みやぎ児童クラブ" }, "geometry": { "type": "Point", "coordinates": [ 139.1776794, 36.4391528 ] } },
{ "type": "Feature", "properties": { "No": 84, "address": "前橋市鼻毛石町1507番地1", "lat": 36.4392222, "lng": 139.17840440000001, "name": "前橋市立宮城小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.17840440000001, 36.4392222 ] } },
{ "type": "Feature", "properties": { "No": 21, "address": "前橋市鼻毛石町1503番地1", "lat": 36.4397777, "lng": 139.17839330000001, "name": "前橋市立宮城幼稚園" }, "geometry": { "type": "Point", "coordinates": [ 139.17839330000001, 36.4397777 ] } },
{ "type": "Feature", "properties": { "No": 144, "address": "前橋市富士見町時沢1865番地6", "lat": 36.4402474, "lng": 139.09389780000001, "name": "前橋市ときざわ児童クラブ" }, "geometry": { "type": "Point", "coordinates": [ 139.09389780000001, 36.4402474 ] } },
{ "type": "Feature", "properties": { "No": 88, "address": "前橋市富士見町時沢3164番地1", "lat": 36.4404807, "lng": 139.0936951, "name": "前橋市立時沢小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.0936951, 36.4404807 ] } },
{ "type": "Feature", "properties": { "No": 129, "address": "前橋市鼻毛石町1711番地8", "lat": 36.4413026, "lng": 139.1785933, "name": "前橋市宮城公民館" }, "geometry": { "type": "Point", "coordinates": [ 139.1785933, 36.4413026 ] } },
{ "type": "Feature", "properties": { "No": 182, "address": "前橋市鼻毛石町1561番地", "lat": 36.4423329, "lng": 139.1762824, "name": "前橋市宮城体育館" }, "geometry": { "type": "Point", "coordinates": [ 139.1762824, 36.4423329 ] } },
{ "type": "Feature", "properties": { "No": 109, "address": "前橋市鼻毛石町1564番地1", "lat": 36.4427551, "lng": 139.17786280000001, "name": "前橋市立宮城中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.17786280000001, 36.4427551 ] } },
{ "type": "Feature", "properties": { "No": 60, "address": "前橋市嶺町1409番地2", "lat": 36.4463805, "lng": 139.11206540000001, "name": "前橋市立嶺小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.11206540000001, 36.4463805 ] } },
{ "type": "Feature", "properties": { "No": 87, "address": "前橋市富士見町原之郷1933番地1", "lat": 36.4464264, "lng": 139.06636940000001, "name": "前橋市立原小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.06636940000001, 36.4464264 ] } },
{ "type": "Feature", "properties": { "No": 186, "address": "前橋市鼻毛石町2270番地1", "lat": 36.4466685, "lng": 139.1773963, "name": "前橋市宮城総合運動場(管理棟事務所前ロビー)" }, "geometry": { "type": "Point", "coordinates": [ 139.1773963, 36.4466685 ] } },
{ "type": "Feature", "properties": { "No": 60, "address": "群馬県高崎市倉渕町権田314-1", "lat": 36.4471881, "lng": 138.77250430000001, "name": "倉渕小学校・倉渕学童クラブ" }, "geometry": { "type": "Point", "coordinates": [ 138.77250430000001, 36.4471881 ] } },
{ "type": "Feature", "properties": { "No": 162, "address": "前橋市鼻毛石町2271番地8", "lat": 36.4477351, "lng": 139.1779379, "name": "前橋市宮城福祉作業所" }, "geometry": { "type": "Point", "coordinates": [ 139.1779379, 36.4477351 ] } },
{ "type": "Feature", "properties": { "No": 230, "address": "群馬県高崎市榛名山町138-1", "lat": 36.4530054, "lng": 138.8482492, "name": "榛名歴史民俗資料館" }, "geometry": { "type": "Point", "coordinates": [ 138.8482492, 36.4530054 ] } },
{ "type": "Feature", "properties": { "No": 196, "address": "前橋市嶺町1300番地", "lat": 36.454477, "lng": 139.11987010000001, "name": "前橋市嶺公園" }, "geometry": { "type": "Point", "coordinates": [ 139.11987010000001, 36.454477 ] } },
{ "type": "Feature", "properties": { "No": 164, "address": "前橋市富士見町小沢117番地4", "lat": 36.4545259, "lng": 139.08516760000001, "name": "前橋市富士見福祉作業所" }, "geometry": { "type": "Point", "coordinates": [ 139.08516760000001, 36.4545259 ] } },
{ "type": "Feature", "properties": { "No": 12, "address": "前橋市富士見町小沢117番地2", "lat": 36.455112, "lng": 139.085462, "name": "富士見保健センター" }, "geometry": { "type": "Point", "coordinates": [ 139.085462, 36.455112 ] } },
{ "type": "Feature", "properties": { "No": 5, "address": "前橋市富士見町田島240番地", "lat": 36.4552534, "lng": 139.07599880000001, "name": "前橋市富士見支所" }, "geometry": { "type": "Point", "coordinates": [ 139.07599880000001, 36.4552534 ] } },
{ "type": "Feature", "properties": { "No": 39, "address": "前橋市富士見町小沢117番地1", "lat": 36.4553314, "lng": 139.08497030000001, "name": "前橋市立富士見保育所" }, "geometry": { "type": "Point", "coordinates": [ 139.08497030000001, 36.4553314 ] } },
{ "type": "Feature", "properties": { "No": 111, "address": "前橋市富士見町田島954番地1(来賓玄関・体育館)", "lat": 36.4561479, "lng": 139.08159280000001, "name": "前橋市立富士見中学校" }, "geometry": { "type": "Point", "coordinates": [ 139.08159280000001, 36.4561479 ] } },
{ "type": "Feature", "properties": { "No": 131, "address": "前橋市富士見町田島866番地1", "lat": 36.4592446, "lng": 139.0790317, "name": "前橋市富士見公民館・前橋市ふじみ老人福祉センター" }, "geometry": { "type": "Point", "coordinates": [ 139.0790317, 36.4592446 ] } },
{ "type": "Feature", "properties": { "No": 174, "address": "前橋市柏倉町2621番地", "lat": 36.4604724, "lng": 139.1744635, "name": "前橋市みやぎふれあいの郷" }, "geometry": { "type": "Point", "coordinates": [ 139.1744635, 36.4604724 ] } },
{ "type": "Feature", "properties": { "No": 82, "address": "前橋市東金丸町136番地1", "lat": 36.4659427, "lng": 139.1339042, "name": "前橋市立滝窪小学校金丸分校" }, "geometry": { "type": "Point", "coordinates": [ 139.1339042, 36.4659427 ] } },
{ "type": "Feature", "properties": { "No": 90, "address": "前橋市富士見町小暮2425番地63", "lat": 36.4684528, "lng": 139.1086956, "name": "前橋市立白川小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.1086956, 36.4684528 ] } },
{ "type": "Feature", "properties": { "No": 89, "address": "前橋市富士見町石井546番地1", "lat": 36.4692995, "lng": 139.09728, "name": "前橋市立石井小学校" }, "geometry": { "type": "Point", "coordinates": [ 139.09728, 36.4692995 ] } },
{ "type": "Feature", "properties": { "No": 176, "address": "前橋市富士見町石井1569番地1", "lat": 36.4693828, "lng": 139.09423860000001, "name": "前橋市富士見温泉見晴らしの湯 ふれあい館" }, "geometry": { "type": "Point", "coordinates": [ 139.09423860000001, 36.4693828 ] } },
{ "type": "Feature", "properties": { "No": 274, "address": "群馬県高崎市榛名湖町846-3", "lat": 36.4811246, "lng": 138.87330130000001, "name": "ゆうすげ元湯・老人休養ホームゆうすげ" }, "geometry": { "type": "Point", "coordinates": [ 138.87330130000001, 36.4811246 ] } },
{ "type": "Feature", "properties": { "No": 193, "address": "前橋市粕川町中之沢492番地1", "lat": 36.5067082, "lng": 139.19831350000001, "name": "おおさる山乃家(受付カウンター・管理人室)" }, "geometry": { "type": "Point", "coordinates": [ 139.19831350000001, 36.5067082 ] } },
{ "type": "Feature", "properties": { "No": 195, "address": "前橋市富士見町赤城山1番地14", "lat": 36.5439004, "lng": 139.1677675, "name": "赤城山総合観光案内所(営業期間中)" }, "geometry": { "type": "Point", "coordinates": [ 139.1677675, 36.5439004 ] } },
{ "type": "Feature", "properties": { "No": 194, "address": "前橋市富士見町赤城山1番地", "lat": 36.5441148, "lng": 139.18771, "name": "赤城山ビジターセンター" }, "geometry": { "type": "Point", "coordinates": [ 139.18771, 36.5441148 ] } },
{ "type": "Feature", "properties": { "No": 192, "address": "前橋市富士見町赤城山1番地2", "lat": 36.5527465, "lng": 139.173911, "name": "赤城少年自然の家" }, "geometry": { "type": "Point", "coordinates": [ 139.173911, 36.5527465 ] } }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment