Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
lecoler committed Feb 18, 2020
1 parent 690cb3e commit 7c5ca5c
Show file tree
Hide file tree
Showing 380 changed files with 742 additions and 58 deletions.
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
dist/
deploy_versions/
.temp/
.rn_temp/
node_modules/
.DS_Store
.idea/
client/dist/
client/deploy_versions/
client/.temp/
client/.rn_temp/
client/node_modules/
client/.DS_Store
36 changes: 0 additions & 36 deletions README.en.md

This file was deleted.

37 changes: 15 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,35 +3,28 @@
#### 介绍
echarts-map,中国地图预览,支持下钻至 省-市-区

#### 软件架构
软件架构说明


#### 安装教程
#### 运行环境

1. xxxx
2. xxxx
3. xxxx
下列只需满足 1 或 2 即可运行访问

#### 使用说明
1. 需在本地搭建http服务,访问 index.html
(可用 阿帕奇配置转发代理)
例如:http://localhost:8080/map/index.html

1. xxxx
2. xxxx
3. xxxx

#### 参与贡献
2. 简单快速方法

1. Fork 本仓库
2. 新建 Feat_xxx 分支
3. 提交代码
4. 新建 Pull Request
2.1.使用谷歌浏览器

2.2.在谷歌浏览器的快捷方式 目标处添加参数启动

#### 码云特技
2.3 -disable-web-security -user-data-dir="d:\Temp"

1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md
2. 码云官方博客 [blog.gitee.com](https://blog.gitee.com)
3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解码云上的优秀开源项目
4. [GVP](https://gitee.com/gvp) 全称是码云最有价值开源项目,是码云综合评定出的优秀开源项目
5. 码云官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help)
6. 码云封面人物是一档用来展示码云会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)
例如:
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" -disable-web-security -user-data-dir="d:\Temp"

​ 2.4.打开修改后的谷歌浏览器,再打开 index.html
(即用带参数启动的谷歌浏览器访问index.html)
28 changes: 28 additions & 0 deletions css/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
html, body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
overflow: hidden;
box-sizing: border-box;
}
body{
padding: 20px;
}

#map{
width: 90%;
height: 90%;
margin: 0 5%;
border: 1px dotted #e2e2e2;
}

#backBtn{
width: 100px;
font-size: 16px;
margin: 20px;
padding: 10px 30px;
border: 1px solid #e2e2e2;
border-radius: 10px;
text-align: center;
}
Binary file added favicon.ico
Binary file not shown.
20 changes: 20 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>地图</title>
<link href="css/index.css" rel=stylesheet>
<link rel=icon href=favicon.ico>
</head>
<body>
<div id="backBtn" onclick="back()" style="display: none">返回</div>
<div id="map"></div>

<script src="js/echarts.min.js"></script>
<script src="js/echarts-gl.min.js"></script>
<script src="js/index.js"></script>
<script>
createMap()
</script>
</body>
</html>
1 change: 1 addition & 0 deletions js/echarts-gl.min.js

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions js/echarts.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 7c5ca5c

Please sign in to comment.