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": "<img src='https://upload.wikimedia.org/wikipedia/commons/thumb/3/3e/MtFuji_FujiCity.jpg/320px-MtFuji_FujiCity.jpg' width='150'><br />富士山は、日本有数の観光地です。" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [138.731388, 35.360624] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "title": "東京タワー", | |
| "description": "東京タワーは、東京の主要なランドマークです。" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [139.745422, 35.658513] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "title": "沖縄県立博物館", | |
| "description": "沖縄県立博物館は、沖縄の文化や歴史に関する展示が行われています。" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [127.675536, 26.212401] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "title": "大阪城", | |
| "description": "大阪城は、大阪の主要な観光地です。" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [135.519631, 34.686462] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "title": "北海道立美術館", | |
| "description": "北海道立美術館は、北海道の芸術や文化に関する展示が行われています。" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [141.344975, 43.068292] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "title": "京都御所", | |
| "description": "京都御所は、京都の主要な観光地です。" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [135.756956, 35.019552] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "title": "八王子市立美術館", | |
| "description": "八王子市立美術館は、八王子市の芸術や文化に関する展示が行われています。" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [139.334168, 35.654695] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "title": "神戸ハーバーランド", | |
| "description": "神戸ハーバーランドは、神戸の主要な観光地です。" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [135.183228, 34.691366] | |
| } | |
| }, | |
| { | |
| "type": "Feature", | |
| "properties": { | |
| "title": "秋葉原電気街", | |
| "description": "秋葉原電気街は、東京の主要な観光地です。" | |
| }, | |
| "geometry": { | |
| "type": "Point", | |
| "coordinates": [139.774539, 35.700665] | |
| } | |
| }, | |
| { | |
| "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