From 571f7bb6539eef89f825b14fa8b6537fc0fa39e7 Mon Sep 17 00:00:00 2001 From: sw_pc Date: Wed, 22 Nov 2023 09:58:54 +0800 Subject: [PATCH] LJWt --- leaflet/common/data.js | 60 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/leaflet/common/data.js b/leaflet/common/data.js index 228c506..3a6a661 100644 --- a/leaflet/common/data.js +++ b/leaflet/common/data.js @@ -76,4 +76,64 @@ export default { } ] }, + geoHospitalSchool: { + type: 'FeatureCollection', + features: [ + { + type: 'Feature', + properties: { + NAME: 'A医院', + TYPE: '医院' + }, + geometry: { + type: 'Point', + coordinates: [116.22196197509766, 39.99527080014614] + } + }, + { + type: 'Feature', + properties: { + NAME: 'B医院', + TYPE: '医院' + }, + geometry: { + type: 'Point', + coordinates: [116.53816223144531, 39.9034155951341] + } + }, + { + type: 'Feature', + properties: { + NAME: 'C学校', + TYPE: '学校' + }, + geometry: { + type: 'Point', + coordinates: [116.40151977539062, 39.7631584037253] + } + }, + { + type: 'Feature', + properties: { + NAME: 'D医院', + TYPE: '医院' + }, + geometry: { + type: 'Point', + coordinates: [116.4276123046875, 39.969753220824714] + } + }, + { + type: 'Feature', + properties: { + NAME: 'E学校', + TYPE: '学校' + }, + geometry: { + type: 'Point', + coordinates: [116.28273010253905, 39.832795514765444] + } + } + ] + } } \ No newline at end of file -- GitLab