Skip to content

Instantly share code, notes, and snippets.

@deton
Last active August 31, 2025 12:10
Show Gist options
  • Save deton/0df0540d196ba881de20b14cfb12e153 to your computer and use it in GitHub Desktop.
Save deton/0df0540d196ba881de20b14cfb12e153 to your computer and use it in GitHub Desktop.
地域メッシュ南西地点を中心とする指定半径の円を表示するためのGeoJSON生成例

GeoJSONのPointを指定半径(メートル単位)の円で表示

目的

  • GeoJSONのPointを指定半径(例:500m)の円で表示したい。
  • このためだけのツールを作るより、GeoJSONファイルを指定して表示するサイトにしたい。

調査

  • https://geojson.io では、PointはMarkerで表示される。
    • (draw toolで円を作るとPolygonが生成される)
  • https://kepler.gl では半径指定はpixel単位?
  • LeafletのL.Circleを使えばメートル単位で半径指定可能。
  • deck.glのGeoJsonLayerのpointRadiusUnitsはデフォルトでmeters。
  • foliumのTimestampedGeoJsonでは、{{"properties": {"icon": "circle","iconstyle":{"radius":10}}},"geometry":{"type":"Point",...}}は、L.CircleMarkerで表示される。半径はpixel単位。

対処

  • foliumのTimestampedGeoJsonをベースに、メートル単位での半径指定用プロパティ"radiusUnit":"meter"を追加: {{"properties": {"icon": "circle","iconstyle":{"radius":500,"radiusUnit":"meter"}}},"geometry":{"type":"Point",...}}
  • https://deton.github.io/HeatMapWithTime/MarkerStyleWithTime.html に、"radiusUnit": "meter"の場合はL.Circleを使って円を表示する処理を追加。

他の案

  • Pointを円相当のポリゴンに変換するツール。
    • 今回は表示したいだけだったので不採用。

使用例

地域メッシュを生成

https://github.com/MIERUNE/japan-mesh-tool

poetry run python src/japanmesh/main.py 3 -e 142.2,44.0 142.3,44.1 -d ./

参考: geojsonl to geojson

jq -s '{type:"FeatureCollection",features:.}' mesh_3.geojsonl > mesh_3.geojson

地域メッシュ南西地点を中心とする指定半径の円を表示するためのGeoJSON生成例

jq -c '{type,properties:{code:.properties.code,icon:"circle",iconstyle:{radius:500,radiusUnit:"meter"},popup:.properties.code|tostring},geometry:{type:"Point",coordinates:.geometry.coordinates[0][0]}}' mesh_3.geojsonl \
| jq -s '{type:"FeatureCollection",features:.}' > mesh_3circle.geojson

GeoJSONのPointを指定半径の円で表示するのに使えるサイト

Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"code": 66420106,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420106"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2,
44.0
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420107,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420107"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2125,
44.0
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420108,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420108"
},
"geometry": {
"type": "Point",
"coordinates": [
142.225,
44.0
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420109,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420109"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2375,
44.0
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420200,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420200"
},
"geometry": {
"type": "Point",
"coordinates": [
142.25,
44.0
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420201,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420201"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2625,
44.0
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420202,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420202"
},
"geometry": {
"type": "Point",
"coordinates": [
142.275,
44.0
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420203,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420203"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2875,
44.0
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420116,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420116"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2,
44.00833333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420117,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420117"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2125,
44.00833333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420118,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420118"
},
"geometry": {
"type": "Point",
"coordinates": [
142.225,
44.00833333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420119,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420119"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2375,
44.00833333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420210,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420210"
},
"geometry": {
"type": "Point",
"coordinates": [
142.25,
44.00833333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420211,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420211"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2625,
44.00833333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420212,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420212"
},
"geometry": {
"type": "Point",
"coordinates": [
142.275,
44.00833333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420213,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420213"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2875,
44.00833333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420126,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420126"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2,
44.016666666666666
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420127,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420127"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2125,
44.016666666666666
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420128,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420128"
},
"geometry": {
"type": "Point",
"coordinates": [
142.225,
44.016666666666666
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420129,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420129"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2375,
44.016666666666666
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420220,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420220"
},
"geometry": {
"type": "Point",
"coordinates": [
142.25,
44.016666666666666
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420221,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420221"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2625,
44.016666666666666
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420222,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420222"
},
"geometry": {
"type": "Point",
"coordinates": [
142.275,
44.016666666666666
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420223,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420223"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2875,
44.016666666666666
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420136,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420136"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2,
44.025
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420137,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420137"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2125,
44.025
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420138,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420138"
},
"geometry": {
"type": "Point",
"coordinates": [
142.225,
44.025
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420139,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420139"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2375,
44.025
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420230,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420230"
},
"geometry": {
"type": "Point",
"coordinates": [
142.25,
44.025
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420231,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420231"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2625,
44.025
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420232,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420232"
},
"geometry": {
"type": "Point",
"coordinates": [
142.275,
44.025
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420233,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420233"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2875,
44.025
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420146,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420146"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2,
44.03333333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420147,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420147"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2125,
44.03333333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420148,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420148"
},
"geometry": {
"type": "Point",
"coordinates": [
142.225,
44.03333333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420149,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420149"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2375,
44.03333333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420240,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420240"
},
"geometry": {
"type": "Point",
"coordinates": [
142.25,
44.03333333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420241,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420241"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2625,
44.03333333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420242,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420242"
},
"geometry": {
"type": "Point",
"coordinates": [
142.275,
44.03333333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420243,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420243"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2875,
44.03333333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420156,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420156"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2,
44.04166666666667
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420157,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420157"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2125,
44.04166666666667
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420158,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420158"
},
"geometry": {
"type": "Point",
"coordinates": [
142.225,
44.04166666666667
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420159,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420159"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2375,
44.04166666666667
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420250,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420250"
},
"geometry": {
"type": "Point",
"coordinates": [
142.25,
44.04166666666667
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420251,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420251"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2625,
44.04166666666667
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420252,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420252"
},
"geometry": {
"type": "Point",
"coordinates": [
142.275,
44.04166666666667
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420253,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420253"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2875,
44.04166666666667
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420166,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420166"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2,
44.05
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420167,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420167"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2125,
44.05
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420168,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420168"
},
"geometry": {
"type": "Point",
"coordinates": [
142.225,
44.05
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420169,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420169"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2375,
44.05
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420260,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420260"
},
"geometry": {
"type": "Point",
"coordinates": [
142.25,
44.05
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420261,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420261"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2625,
44.05
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420262,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420262"
},
"geometry": {
"type": "Point",
"coordinates": [
142.275,
44.05
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420263,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420263"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2875,
44.05
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420176,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420176"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2,
44.05833333333334
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420177,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420177"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2125,
44.05833333333334
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420178,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420178"
},
"geometry": {
"type": "Point",
"coordinates": [
142.225,
44.05833333333334
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420179,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420179"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2375,
44.05833333333334
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420270,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420270"
},
"geometry": {
"type": "Point",
"coordinates": [
142.25,
44.05833333333334
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420271,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420271"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2625,
44.05833333333334
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420272,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420272"
},
"geometry": {
"type": "Point",
"coordinates": [
142.275,
44.05833333333334
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420273,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420273"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2875,
44.05833333333334
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420186,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420186"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2,
44.06666666666666
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420187,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420187"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2125,
44.06666666666666
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420188,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420188"
},
"geometry": {
"type": "Point",
"coordinates": [
142.225,
44.06666666666666
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420189,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420189"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2375,
44.06666666666666
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420280,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420280"
},
"geometry": {
"type": "Point",
"coordinates": [
142.25,
44.06666666666666
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420281,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420281"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2625,
44.06666666666666
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420282,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420282"
},
"geometry": {
"type": "Point",
"coordinates": [
142.275,
44.06666666666666
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420283,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420283"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2875,
44.06666666666666
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420196,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420196"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2,
44.075
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420197,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420197"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2125,
44.075
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420198,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420198"
},
"geometry": {
"type": "Point",
"coordinates": [
142.225,
44.075
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420199,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420199"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2375,
44.075
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420290,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420290"
},
"geometry": {
"type": "Point",
"coordinates": [
142.25,
44.075
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420291,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420291"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2625,
44.075
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420292,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420292"
},
"geometry": {
"type": "Point",
"coordinates": [
142.275,
44.075
]
}
},
{
"type": "Feature",
"properties": {
"code": 66420293,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66420293"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2875,
44.075
]
}
},
{
"type": "Feature",
"properties": {
"code": 66421106,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66421106"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2,
44.08333333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66421107,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66421107"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2125,
44.08333333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66421108,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66421108"
},
"geometry": {
"type": "Point",
"coordinates": [
142.225,
44.08333333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66421109,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66421109"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2375,
44.08333333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66421200,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66421200"
},
"geometry": {
"type": "Point",
"coordinates": [
142.25,
44.08333333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66421201,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66421201"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2625,
44.08333333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66421202,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66421202"
},
"geometry": {
"type": "Point",
"coordinates": [
142.275,
44.08333333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66421203,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66421203"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2875,
44.08333333333333
]
}
},
{
"type": "Feature",
"properties": {
"code": 66421116,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66421116"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2,
44.09166666666667
]
}
},
{
"type": "Feature",
"properties": {
"code": 66421117,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66421117"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2125,
44.09166666666667
]
}
},
{
"type": "Feature",
"properties": {
"code": 66421118,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66421118"
},
"geometry": {
"type": "Point",
"coordinates": [
142.225,
44.09166666666667
]
}
},
{
"type": "Feature",
"properties": {
"code": 66421119,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66421119"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2375,
44.09166666666667
]
}
},
{
"type": "Feature",
"properties": {
"code": 66421210,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66421210"
},
"geometry": {
"type": "Point",
"coordinates": [
142.25,
44.09166666666667
]
}
},
{
"type": "Feature",
"properties": {
"code": 66421211,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66421211"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2625,
44.09166666666667
]
}
},
{
"type": "Feature",
"properties": {
"code": 66421212,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66421212"
},
"geometry": {
"type": "Point",
"coordinates": [
142.275,
44.09166666666667
]
}
},
{
"type": "Feature",
"properties": {
"code": 66421213,
"icon": "circle",
"iconstyle": {
"radius": 500,
"radiusUnit": "meter"
},
"popup": "66421213"
},
"geometry": {
"type": "Point",
"coordinates": [
142.2875,
44.09166666666667
]
}
}
]
}
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment