Skip to content

Latest commit

 

History

History
51 lines (47 loc) · 749 Bytes

README.md

File metadata and controls

51 lines (47 loc) · 749 Bytes

graduate-map

Graduation destination map. 为云南师大附中开发的毕业去向地图(中国大学蹭饭网)

细节备忘

输入信息格式

使用一个JSON来存储信息,格式如下:

{
  "list": [
    [
      "张三",
      "北京",
      "北京大学"
    ],
    [
      "李四",
      "北京",
      "清华大学"
    ]
  ],
  "location": {
    "北京": [
      39.910924,
      116.413387
    ],
    "北京大学": [
      39.998877,
      116.316833
    ],
    "清华大学": [
      40.009645,
      116.333374
    ]
  }
}

map-university组件data格式

{
  name: "北京理工大学",
  location: {
	lng: 116.322726,
	lat: 39.966659
  },
  list: ["flw", "fdd"]
}