Last active
January 30, 2023 08:09
-
-
Save champierre/ce82699e6b6bb207a92491e42fb03abb to your computer and use it in GitHub Desktop.
観光マップ用サンプルGeoJSONファイル
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "type": "FeatureCollection", | |
| "features": [ | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "title": "沖縄県立博物館", | |
| "description": "沖縄県立博物館は、沖縄の文化や歴史に関する展示が行われています。" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [127.675536, 26.212401] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "title": "八王子市立美術館", | |
| "description": "八王子市立美術館は、八王子市の芸術や文化に関する展示が行われています。" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [139.334168, 35.654695] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "title": "博多市美術館", | |
| "description": "博多市美術館は、博多市の芸術や文化に関する展示が行われています。" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [130.410035, 33.591078] | |
| } | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment