修改页面整体

This commit is contained in:
chengdandan 2022-08-01 09:03:45 +08:00
parent ae6b63f8fe
commit 4f3151984c
131 changed files with 6531 additions and 863 deletions

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,16 @@
{
"companyName": "DefaultCompany",
"productName": "CityCompany",
"productVersion": "0.1",
"dataUrl": "city-build.data.unityweb",
"wasmCodeUrl": "city-build.wasm.code.unityweb",
"wasmFrameworkUrl": "city-build.wasm.framework.unityweb",
"graphicsAPI": ["WebGL 2.0","WebGL 1.0"],
"webglContextAttributes": {"preserveDrawingBuffer": false},
"splashScreenStyle": "Dark",
"backgroundColor": "#231F20",
"cacheControl": {"default": "must-revalidate"},
"developmentBuild": false,
"multithreading": false,
"unityVersion": "2019.4.36f1c1"
}

View File

@ -0,0 +1,24 @@
function UnityProgress(unityInstance, progress) {
if (!unityInstance.Module)
return;
if (!unityInstance.logo) {
unityInstance.logo = document.createElement("div");
unityInstance.logo.className = "logo " + unityInstance.Module.splashScreenStyle;
unityInstance.container.appendChild(unityInstance.logo);
}
if (!unityInstance.progress) {
unityInstance.progress = document.createElement("div");
unityInstance.progress.className = "progress " + unityInstance.Module.splashScreenStyle;
unityInstance.progress.empty = document.createElement("div");
unityInstance.progress.empty.className = "empty";
unityInstance.progress.appendChild(unityInstance.progress.empty);
unityInstance.progress.full = document.createElement("div");
unityInstance.progress.full.className = "full";
unityInstance.progress.appendChild(unityInstance.progress.full);
unityInstance.container.appendChild(unityInstance.progress);
}
unityInstance.progress.full.style.width = (100 * progress) + "%";
unityInstance.progress.empty.style.width = (100 * (1 - progress)) + "%";
if (progress == 1)
unityInstance.logo.style.display = unityInstance.progress.style.display = "none";
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,30 @@
html,body{
width: 100%;
height: 100%;
margin: 0px;
overflow: hidden;
}
#unityContainer{
width: 100%;
height: 100%;
margin: 0px;
}
.webgl-content * {border: 0; margin: 0; padding: 0}
.webgl-content {position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}
.webgl-content .logo, .progress {position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}
.webgl-content .logo {background: url('progressLogo.Light.png') no-repeat center / contain; width: 154px; height: 130px;}
.webgl-content .progress {height: 18px; width: 141px; margin-top: 90px;}
.webgl-content .progress .empty {background: url('progressEmpty.Light.png') no-repeat right / cover; float: right; width: 100%; height: 100%; display: inline-block;}
.webgl-content .progress .full {background: url('progressFull.Light.png') no-repeat left / cover; float: left; width: 0%; height: 100%; display: inline-block;}
.webgl-content .logo.Dark {background-image: url('progressLogo.Dark.png');}
.webgl-content .progress.Dark .empty {background-image: url('progressEmpty.Dark.png');}
.webgl-content .progress.Dark .full {background-image: url('progressFull.Dark.png');}
.webgl-content .footer {margin-top: 5px; height: 38px; line-height: 38px; font-family: Helvetica, Verdana, Arial, sans-serif; font-size: 18px; display: none;}
.webgl-content .footer .webgl-logo, .title, .fullscreen {height: 100%; display: inline-block; background: transparent center no-repeat;}
.webgl-content .footer .webgl-logo {background-image: url('webgl-logo.png'); width: 204px; float: left;}
.webgl-content .footer .title {margin-right: 10px; float: right;}
.webgl-content .footer .fullscreen {background-image: url('fullscreen.png'); width: 38px; float: right;}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- <title>Unity WebGL Player | ShengDaPing</title> -->
<link rel="shortcut icon" href="TemplateData/favicon.ico">
<link rel="stylesheet" href="TemplateData/style.css">
<script src="TemplateData/UnityProgress.js"></script>
<script src="Build/UnityLoader.js"></script>
<script>
var unityInstance = UnityLoader.instantiate("unityContainer", "Build/city-build.json", {onProgress: UnityProgress});
</script>
</head>
<body>
<div class="webgl-content" style="width:100%;height: 100%;">
<div id="unityContainer"></div>
<div class="footer">
<div class="webgl-logo"></div>
<div class="fullscreen" onclick="unityInstance.SetFullscreen(1)"></div>
<div class="title">ShengDaPing</div>
</div>
</div>
</body>
</html>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,16 @@
{
"companyName": "DefaultCompany",
"productName": "CityCompany",
"productVersion": "0.1",
"dataUrl": "city-double.data.unityweb",
"wasmCodeUrl": "city-double.wasm.code.unityweb",
"wasmFrameworkUrl": "city-double.wasm.framework.unityweb",
"graphicsAPI": ["WebGL 2.0","WebGL 1.0"],
"webglContextAttributes": {"preserveDrawingBuffer": false},
"splashScreenStyle": "Dark",
"backgroundColor": "#231F20",
"cacheControl": {"default": "must-revalidate"},
"developmentBuild": false,
"multithreading": false,
"unityVersion": "2019.4.36f1c1"
}

View File

@ -0,0 +1,24 @@
function UnityProgress(unityInstance, progress) {
if (!unityInstance.Module)
return;
if (!unityInstance.logo) {
unityInstance.logo = document.createElement("div");
unityInstance.logo.className = "logo " + unityInstance.Module.splashScreenStyle;
unityInstance.container.appendChild(unityInstance.logo);
}
if (!unityInstance.progress) {
unityInstance.progress = document.createElement("div");
unityInstance.progress.className = "progress " + unityInstance.Module.splashScreenStyle;
unityInstance.progress.empty = document.createElement("div");
unityInstance.progress.empty.className = "empty";
unityInstance.progress.appendChild(unityInstance.progress.empty);
unityInstance.progress.full = document.createElement("div");
unityInstance.progress.full.className = "full";
unityInstance.progress.appendChild(unityInstance.progress.full);
unityInstance.container.appendChild(unityInstance.progress);
}
unityInstance.progress.full.style.width = (100 * progress) + "%";
unityInstance.progress.empty.style.width = (100 * (1 - progress)) + "%";
if (progress == 1)
unityInstance.logo.style.display = unityInstance.progress.style.display = "none";
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,30 @@
html,body{
width: 100%;
height: 100%;
margin: 0px;
overflow: hidden;
}
#unityContainer{
width: 100%;
height: 100%;
margin: 0px;
}
.webgl-content * {border: 0; margin: 0; padding: 0}
.webgl-content {position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}
.webgl-content .logo, .progress {position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}
.webgl-content .logo {background: url('progressLogo.Light.png') no-repeat center / contain; width: 154px; height: 130px;}
.webgl-content .progress {height: 18px; width: 141px; margin-top: 90px;}
.webgl-content .progress .empty {background: url('progressEmpty.Light.png') no-repeat right / cover; float: right; width: 100%; height: 100%; display: inline-block;}
.webgl-content .progress .full {background: url('progressFull.Light.png') no-repeat left / cover; float: left; width: 0%; height: 100%; display: inline-block;}
.webgl-content .logo.Dark {background-image: url('progressLogo.Dark.png');}
.webgl-content .progress.Dark .empty {background-image: url('progressEmpty.Dark.png');}
.webgl-content .progress.Dark .full {background-image: url('progressFull.Dark.png');}
.webgl-content .footer {margin-top: 5px; height: 38px; line-height: 38px; font-family: Helvetica, Verdana, Arial, sans-serif; font-size: 18px;display: none;}
.webgl-content .footer .webgl-logo, .title, .fullscreen {height: 100%; display: inline-block; background: transparent center no-repeat;}
.webgl-content .footer .webgl-logo {background-image: url('webgl-logo.png'); width: 204px; float: left;}
.webgl-content .footer .title {margin-right: 10px; float: right;}
.webgl-content .footer .fullscreen {background-image: url('fullscreen.png'); width: 38px; float: right;}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,48 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Unity WebGL Player | ShengDaPing</title>
<link rel="shortcut icon" href="TemplateData/favicon.ico">
<link rel="stylesheet" href="TemplateData/style.css">
<script src="TemplateData/UnityProgress.js"></script>
<script src="Build/UnityLoader.js"></script>
<script>
var unityInstance = UnityLoader.instantiate("unityContainer", "Build/city-double.json", {onProgress: UnityProgress});
function home() {
window.history.go(-1);
}
</script>
</head>
<style>
.back{
bottom: 20px;
right: 50px;
width: 38px;
height: 38px;
}
.home{
background: #ffffff;
position: absolute;
bottom: 20px;
right: 50px;
width: 38px;
height: 38px;
border-radius:5px
}
</style>
<body>
<div class="webgl-content" style="width:100%;height: 100%;">
<div id="unityContainer"></div>
<div class="footer">
<div class="webgl-logo"></div>
<div class="fullscreen" onclick="unityInstance.SetFullscreen(1)"></div>
<div class="title">ShengDaPing</div>
</div>
<div class="home">
<div class="back" onclick="home()" style="cursor: pointer"></div>
</div>
</div>
</body>
</html>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,16 @@
{
"companyName": "DefaultCompany",
"productName": "CityCompany",
"productVersion": "0.1",
"dataUrl": "city-north.data.unityweb",
"wasmCodeUrl": "city-north.wasm.code.unityweb",
"wasmFrameworkUrl": "city-north.wasm.framework.unityweb",
"graphicsAPI": ["WebGL 2.0","WebGL 1.0"],
"webglContextAttributes": {"preserveDrawingBuffer": false},
"splashScreenStyle": "Dark",
"backgroundColor": "#231F20",
"cacheControl": {"default": "must-revalidate"},
"developmentBuild": false,
"multithreading": false,
"unityVersion": "2019.4.36f1c1"
}

View File

@ -0,0 +1,24 @@
function UnityProgress(unityInstance, progress) {
if (!unityInstance.Module)
return;
if (!unityInstance.logo) {
unityInstance.logo = document.createElement("div");
unityInstance.logo.className = "logo " + unityInstance.Module.splashScreenStyle;
unityInstance.container.appendChild(unityInstance.logo);
}
if (!unityInstance.progress) {
unityInstance.progress = document.createElement("div");
unityInstance.progress.className = "progress " + unityInstance.Module.splashScreenStyle;
unityInstance.progress.empty = document.createElement("div");
unityInstance.progress.empty.className = "empty";
unityInstance.progress.appendChild(unityInstance.progress.empty);
unityInstance.progress.full = document.createElement("div");
unityInstance.progress.full.className = "full";
unityInstance.progress.appendChild(unityInstance.progress.full);
unityInstance.container.appendChild(unityInstance.progress);
}
unityInstance.progress.full.style.width = (100 * progress) + "%";
unityInstance.progress.empty.style.width = (100 * (1 - progress)) + "%";
if (progress == 1)
unityInstance.logo.style.display = unityInstance.progress.style.display = "none";
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,30 @@
html,body{
width: 100%;
height: 100%;
margin: 0px;
overflow: hidden;
}
#unityContainer{
width: 100%;
height: 100%;
margin: 0px;
}
.webgl-content * {border: 0; margin: 0; padding: 0}
.webgl-content {position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}
.webgl-content .logo, .progress {position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}
.webgl-content .logo {background: url('progressLogo.Light.png') no-repeat center / contain; width: 154px; height: 130px;}
.webgl-content .progress {height: 18px; width: 141px; margin-top: 90px;}
.webgl-content .progress .empty {background: url('progressEmpty.Light.png') no-repeat right / cover; float: right; width: 100%; height: 100%; display: inline-block;}
.webgl-content .progress .full {background: url('progressFull.Light.png') no-repeat left / cover; float: left; width: 0%; height: 100%; display: inline-block;}
.webgl-content .logo.Dark {background-image: url('progressLogo.Dark.png');}
.webgl-content .progress.Dark .empty {background-image: url('progressEmpty.Dark.png');}
.webgl-content .progress.Dark .full {background-image: url('progressFull.Dark.png');}
.webgl-content .footer {margin-top: 5px; height: 38px; line-height: 38px; font-family: Helvetica, Verdana, Arial, sans-serif; font-size: 18px;display: none;}
.webgl-content .footer .webgl-logo, .title, .fullscreen {height: 100%; display: inline-block; background: transparent center no-repeat;}
.webgl-content .footer .webgl-logo {background-image: url('webgl-logo.png'); width: 204px; float: left;}
.webgl-content .footer .title {margin-right: 10px; float: right;}
.webgl-content .footer .fullscreen {background-image: url('fullscreen.png'); width: 38px; float: right;}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,48 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Unity WebGL Player | ShengDaPing</title>
<link rel="shortcut icon" href="TemplateData/favicon.ico">
<link rel="stylesheet" href="TemplateData/style.css">
<script src="TemplateData/UnityProgress.js"></script>
<script src="Build/UnityLoader.js"></script>
<script>
var unityInstance = UnityLoader.instantiate("unityContainer", "Build/city-north.json", {onProgress: UnityProgress});
function home() {
window.history.go(-1);
}
</script>
</head>
<style>
.back{
bottom: 20px;
right: 50px;
width: 38px;
height: 38px;
}
.home{
background: #ffffff;
position: absolute;
bottom: 20px;
right: 50px;
width: 38px;
height: 38px;
border-radius:5px
}
</style>
<body>
<div class="webgl-content" style="width:100%;height: 100%;">
<div id="unityContainer"></div>
<div class="footer">
<div class="webgl-logo"></div>
<div class="fullscreen" onclick="unityInstance.SetFullscreen(1)"></div>
<div class="title">ShengDaPing</div>
</div>
<div class="home">
<div class="back" onclick="home()" style="cursor: pointer"></div>
</div>
</div>
</body>
</html>

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -0,0 +1,16 @@
{
"companyName": "DefaultCompany",
"productName": "CityCompany",
"productVersion": "0.1",
"dataUrl": "city-rain.data.unityweb",
"wasmCodeUrl": "city-rain.wasm.code.unityweb",
"wasmFrameworkUrl": "city-rain.wasm.framework.unityweb",
"graphicsAPI": ["WebGL 2.0","WebGL 1.0"],
"webglContextAttributes": {"preserveDrawingBuffer": false},
"splashScreenStyle": "Dark",
"backgroundColor": "#231F20",
"cacheControl": {"default": "must-revalidate"},
"developmentBuild": false,
"multithreading": false,
"unityVersion": "2019.4.36f1c1"
}

View File

@ -0,0 +1,24 @@
function UnityProgress(unityInstance, progress) {
if (!unityInstance.Module)
return;
if (!unityInstance.logo) {
unityInstance.logo = document.createElement("div");
unityInstance.logo.className = "logo " + unityInstance.Module.splashScreenStyle;
unityInstance.container.appendChild(unityInstance.logo);
}
if (!unityInstance.progress) {
unityInstance.progress = document.createElement("div");
unityInstance.progress.className = "progress " + unityInstance.Module.splashScreenStyle;
unityInstance.progress.empty = document.createElement("div");
unityInstance.progress.empty.className = "empty";
unityInstance.progress.appendChild(unityInstance.progress.empty);
unityInstance.progress.full = document.createElement("div");
unityInstance.progress.full.className = "full";
unityInstance.progress.appendChild(unityInstance.progress.full);
unityInstance.container.appendChild(unityInstance.progress);
}
unityInstance.progress.full.style.width = (100 * progress) + "%";
unityInstance.progress.empty.style.width = (100 * (1 - progress)) + "%";
if (progress == 1)
unityInstance.logo.style.display = unityInstance.progress.style.display = "none";
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,30 @@
html,body{
width: 100%;
height: 100%;
margin: 0px;
overflow: hidden;
}
#unityContainer{
width: 100%;
height: 100%;
margin: 0px;
}
.webgl-content * {border: 0; margin: 0; padding: 0}
.webgl-content {position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}
.webgl-content .logo, .progress {position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}
.webgl-content .logo {background: url('progressLogo.Light.png') no-repeat center / contain; width: 154px; height: 130px;}
.webgl-content .progress {height: 18px; width: 141px; margin-top: 90px;}
.webgl-content .progress .empty {background: url('progressEmpty.Light.png') no-repeat right / cover; float: right; width: 100%; height: 100%; display: inline-block;}
.webgl-content .progress .full {background: url('progressFull.Light.png') no-repeat left / cover; float: left; width: 0%; height: 100%; display: inline-block;}
.webgl-content .logo.Dark {background-image: url('progressLogo.Dark.png');}
.webgl-content .progress.Dark .empty {background-image: url('progressEmpty.Dark.png');}
.webgl-content .progress.Dark .full {background-image: url('progressFull.Dark.png');}
.webgl-content .footer {margin-top: 5px; height: 38px; line-height: 38px; font-family: Helvetica, Verdana, Arial, sans-serif; font-size: 18px;display: none;}
.webgl-content .footer .webgl-logo, .title, .fullscreen {height: 100%; display: inline-block; background: transparent center no-repeat;}
.webgl-content .footer .webgl-logo {background-image: url('webgl-logo.png'); width: 204px; float: left;}
.webgl-content .footer .title {margin-right: 10px; float: right;}
.webgl-content .footer .fullscreen {background-image: url('fullscreen.png'); width: 38px; float: right;}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Unity WebGL Player | ShengDaPing</title>
<link rel="shortcut icon" href="TemplateData/favicon.ico">
<link rel="stylesheet" href="TemplateData/style.css">
<script src="TemplateData/UnityProgress.js"></script>
<script src="Build/UnityLoader.js"></script>
<script>
var unityInstance = UnityLoader.instantiate("unityContainer", "Build/city-rain.json", {onProgress: UnityProgress});
function home() {
window.history.go(-1);
}
</script>
</head>
<style>
.back{
bottom: 20px;
right: 50px;
width: 38px;
height: 38px;
}
</style>
<body>
<div class="webgl-content" style="width:100%;height: 100%;">
<div id="unityContainer"></div>
<div class="footer">
<div class="webgl-logo"></div>
<div class="fullscreen" onclick="unityInstance.SetFullscreen(1)"></div>
<div class="title">ShengDaPing</div>
</div>
</div>
</body>
</html>

98
public/json/fczData.json Normal file
View File

@ -0,0 +1,98 @@
[
[
{
"tudi": "南京市鼓楼区定淮门石头城115号",
"jd": "城北基地",
"fczh": "鼓变字第316774号",
"fwsyqr": "江苏省电力公司南京供电公司",
"zl": "石头城115号",
"fwcb": "全民单位房产",
"qh": "597155-II-1",
"zh": "",
"fh": "",
"jg": "钢混",
"fwzcs": "13层",
"szcs": "-1-12",
"jzmj": "13931.43平方米",
"cqly": "自建"
},
{
"tudi": "南京市鼓楼区定淮门石头城115号",
"jd": "城北基地",
"fczh": "鼓变字第316772号",
"fwsyqr": "江苏省电力公司南京供电公司",
"zl": "石头城115号",
"fwcb": "全民单位房产",
"qh": "597155-III-1",
"zh": "",
"fh": "",
"jg": "混合",
"fwzcs": "2层",
"szcs": "1层",
"jzmj": "282.01平方米",
"cqly": "买受"
},
{
"tudi": "南京市鼓楼区定淮门石头城115号",
"jd": "城北基地",
"fczh": "鼓变字第316773号",
"fwsyqr": "江苏省电力公司南京供电公司",
"zl": "石头城115号",
"fwcb": "全民单位房产",
"qh": "597155-2",
"zh": "3/4/5/13",
"fh": "",
"jg": "砖木/砖木/砖木/混合/混合",
"fwzcs": "1层/1层/1层/2层/6层",
"szcs": "1层/1层/1层/1-2层/1-6层",
"jzmj": "726.45平方米/113.24平方米/61.07平方米/373.88平方米/1910.32平方米",
"cqly": "买受,自建"
}
],
{
"tudi": "南京市鼓楼区定淮门石头城115号",
"jd": "城北基地",
"fczh": "鼓变字第316774号",
"fwsyqr": "江苏省电力公司南京供电公司",
"zl": "石头城115号",
"fwcb": "全民单位房产",
"qh": "597155-II-1",
"zh": "",
"fh": "",
"jg": "钢混",
"fwzcs": "13层",
"szcs": "-1-12",
"jzmj": "13931.43平方米",
"cqly": "自建"
},
{
"tudi": "南京市建邺区奥体大街1号",
"jd": "公司大楼",
"fczh": "宁房权证建初字第421579号",
"fwsyqr": "江苏省电力公司",
"zl": "奥体大街1号",
"fwcb": "",
"qh": "14201001004",
"zh": "",
"fh": "",
"jg": "钢混",
"fwzcs": "21层",
"szcs": "1-21层",
"jzmj": "56879.53",
"cqly": "自建"
}
]

390
public/json/jdData.json Normal file
View File

@ -0,0 +1,390 @@
[
{
"tudi": "南京市鼓楼区和燕路2号",
"jd": "栖霞基地",
"bdczh": "苏(2018)宁鼓不动产权第0008891号",
"qlr": "国网江苏省电力有限公司南京供电公司",
"gyqk": "",
"zl": "鼓楼区和燕路2号",
"bdcdyh": "320106013003GB00246F00010001",
"qllx": "国有建设用地使用权/房屋(建筑物)所有权",
"qlxz": "划拨/其它",
"yt": "机关团体用地/办公",
"mj": "宗地面积2819.41平方米/建筑面积9026.8平方米",
"syqx": "",
"fwjg": "钢筋混凝土结构",
"fwzcs": "13层",
"szcs": "-1-12",
"qqh": "684200-III-1",
"ly": "自建"
},
{
"tudi": "南京市秦淮区火瓦巷51号",
"jd": "城南基地",
"bdczh": "苏(2022)宁秦不动产权第0004958号",
"qlr": "国网江苏省电力有限公司南京供电分公司",
"gyqk": "",
"zl": "秦淮区火瓦巷51号",
"bdcdyh": "320104007009GB00053F00010001,320104007009GB00053F00020001",
"qllx": "国有建设用地使用权/房屋(建筑物)所有权",
"qlxz": "划拨/其它",
"yt": "商务金融用地/办公,工业",
"mj": "2441.31平方米/6752.44平方米",
"syqx": "",
"fwjg": "混合结构,混合结构",
"fwzcs": "7层,4层",
"szcs": "1-7层,1-4层",
"qqh": "214450-32,214450-32",
"ly": "自建"
},
{
"tudi": "南京市雨花台区雨花南路32号",
"jd": "雨花基地",
"bdczh": "苏(2019)宁雨不动产权第0012644号",
"qlr": "国网江苏省电力有限公司南京供电分公司",
"gyqk": "",
"zl": "雨花台区雨花南路32号、邓府山10号",
"bdcdyh": "320114002010GB00226F99990001",
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
"qlxz": "划拨/其它",
"yt": "公共设施用地/办公,变电站,普通仓库,门卫",
"mj": "宗地面积21506.36平方米/建筑面积22622.82平方米",
"syqx": "",
"fwjg": "混合结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/混合结构/钢筋混凝土结构",
"fwzcs": "3层/3层/3层/3层/2层/1层/11层",
"szcs": "1-3/1-3/1-3/1-3/1-2/1层/-1-10",
"qqh": "905350-3等",
"ly": "自建"
},
{
"tudi": "南京市鼓楼区中山北路217号",
"jd": "龙吟广场",
"bdczh": "苏(2022)宁鼓不动产权第0002013号",
"gyqk": "",
"zl": "鼓楼区中山北路217号1402室",
"bdcdyh": "320114002010GB00226F99990001、320106001015GB00036F00010056",
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
"qlxz": "让出/其它",
"yt": "商务金融用地/经营",
"mj": "宗地面积8838.88平方米/建筑面积249.32平方米",
"syqx": "2048年11月17日止",
"fwjg": "钢筋混凝土结构",
"fwzcs": "33层",
"szcs": "14层",
"qqh": "523292-I-110",
"ly": "买受"
},
[
{
"tudi": "南京市鼓楼区中山北路217号",
"jd": "龙吟广场",
"bdczh": "苏(2022)宁鼓不动产权第0002013号",
"gyqk": "",
"zl": "鼓楼区中山北路217号1402室",
"bdcdyh": "320114002010GB00226F99990001、320106001015GB00036F00010056",
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
"qlxz": "让出/其它",
"yt": "商务金融用地/经营",
"mj": "宗地面积8838.88平方米/建筑面积249.32平方米",
"syqx": "2048年11月17日止",
"fwjg": "钢筋混凝土结构",
"fwzcs": "33层",
"szcs": "14层",
"qqh": "523292-I-110",
"ly": "买受"
},
{
"tudi": "南京市鼓楼区中山北路217号",
"jd": "龙吟广场",
"bdczh": "苏(2022)宁鼓不动产权第0002016号",
"gyqk": "",
"zl": "鼓楼区中山北路217号1403室",
"bdcdyh": "320106001015GB00036F00010056",
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
"qlxz": "让出/其它",
"yt": "商务金融用地/经营",
"mj": "宗地面积8838.88平方米/建筑面积249.24平方米",
"syqx": "2048年11月17日止",
"fwjg": "钢筋混凝土结构",
"fwzcs": "33层",
"szcs": "14层",
"qqh": "523292-I-111",
"ly": "买受"
},
{
"tudi": "南京市鼓楼区中山北路217号",
"jd": "龙吟广场",
"bdczh": "苏(2022)宁鼓不动产权第0002049号",
"gyqk": "",
"zl": "鼓楼区中山北路217号1404室",
"bdcdyh": "320106001015GB00036F00010057",
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
"qlxz": "让出/其它",
"yt": "商务金融用地/经营",
"mj": "宗地面积8838.88平方米/建筑面积19.52平方米",
"syqx": "2048年11月17日止",
"fwjg": "钢筋混凝土结构",
"fwzcs": "33层",
"szcs": "14层",
"qqh": "523292-I-112",
"ly": "买受"
},
{
"tudi": "南京市鼓楼区中山北路217号",
"jd": "龙吟广场",
"bdczh": "苏(2022)宁鼓不动产权第0002054号",
"gyqk": "",
"zl": "鼓楼区中山北路217号1405室",
"bdcdyh": "320106001015GB00036F00010058",
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
"qlxz": "让出/其它",
"yt": "商务金融用地/经营",
"mj": "宗地面积8838.88平方米/建筑面积385.63平方米",
"syqx": "2048年11月17日止",
"fwjg": "钢筋混凝土结构",
"fwzcs": "33层",
"szcs": "14层",
"qqh": "523292-I-113",
"ly": "买受"
},
{
"tudi": "南京市鼓楼区中山北路217号",
"jd": "龙吟广场",
"bdczh": "苏(2022)宁鼓不动产权第0002060号",
"gyqk": "",
"zl": "鼓楼区中山北路217号1406室",
"bdcdyh": "320106001015GB00036F00010059",
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
"qlxz": "让出/其它",
"yt": "商务金融用地/经营",
"mj": "宗地面积8838.88平方米/建筑面积259.25平方米",
"syqx": "2048年11月17日止",
"fwjg": "钢筋混凝土结构",
"fwzcs": "33层",
"szcs": "14层",
"qqh": "523292-I-114",
"ly": "买受"
},
{
"tudi": "南京市鼓楼区中山北路217号",
"jd": "龙吟广场",
"bdczh": "苏(2022)宁鼓不动产权第0002058号",
"gyqk": "",
"zl": "鼓楼区中山北路217号1407室",
"bdcdyh": "320106001015GB00036F00010060",
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
"qlxz": "让出/其它",
"yt": "商务金融用地/经营",
"mj": "宗地面积8838.88平方米/建筑面积358.15平方米",
"syqx": "2048年11月17日止",
"fwjg": "钢筋混凝土结构",
"fwzcs": "33层",
"szcs": "14层",
"qqh": "523292-I-115",
"ly": "买受"
},
{
"tudi": "南京市鼓楼区中山北路217号",
"jd": "龙吟广场",
"bdczh": "苏(2022)宁鼓不动产权第0002057号",
"gyqk": "",
"zl": "鼓楼区中山北路217号1408室",
"bdcdyh": "320106001015GB00036F00010061",
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
"qlxz": "让出/其它",
"yt": "商务金融用地/经营",
"mj": "宗地面积8838.88平方米/建筑面积159.95平方米",
"syqx": "2048年11月17日止",
"fwjg": "钢筋混凝土结构",
"fwzcs": "33层",
"szcs": "14层",
"qqh": "523292-I-116",
"ly": "买受"
},
{
"tudi": "南京市鼓楼区中山北路217号",
"jd": "龙吟广场",
"bdczh": "苏(2022)宁鼓不动产权第0002055号",
"gyqk": "",
"zl": "鼓楼区中山北路217号1409室",
"bdcdyh": "320106001015GB00036F00010062",
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
"qlxz": "让出/其它",
"yt": "商务金融用地/经营",
"mj": "宗地面积8838.88平方米/建筑面积160.11平方米",
"syqx": "2048年11月17日止",
"fwjg": "钢筋混凝土结构",
"fwzcs": "33层",
"szcs": "14层",
"qqh": "523292-I-117",
"ly": "买受"
},
{
"tudi": "南京市鼓楼区中山北路217号",
"jd": "龙吟广场",
"bdczh": "苏(2022)宁鼓不动产权第0002052号",
"gyqk": "",
"zl": "鼓楼区中山北路217号1410室",
"bdcdyh": "320106001015GB00036F00010063",
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
"qlxz": "让出/其它",
"yt": "商务金融用地/经营",
"mj": "宗地面积8838.88平方米/建筑面积157.30平方米",
"syqx": "2048年11月17日止",
"fwjg": "钢筋混凝土结构",
"fwzcs": "33层",
"szcs": "14层",
"qqh": "523292-I-118",
"ly": "买受"
},
{
"tudi": "南京市鼓楼区中山北路217号",
"jd": "龙吟广场",
"bdczh": "苏(2022)宁鼓不动产权第0002051号",
"gyqk": "",
"zl": "鼓楼区中山北路217号1411室",
"bdcdyh": "320106001015GB00036F00010064",
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
"qlxz": "让出/其它",
"yt": "商务金融用地/经营",
"mj": "宗地面积8838.88平方米/建筑面积92平方米",
"syqx": "2048年11月17日止",
"fwjg": "钢筋混凝土结构",
"fwzcs": "33层",
"szcs": "14层",
"qqh": "523292-I-119",
"ly": "买受"
},
{
"tudi": "南京市鼓楼区中山北路217号",
"jd": "龙吟广场",
"bdczh": "苏(2022)宁鼓不动产权第0002050号",
"gyqk": "",
"zl": "鼓楼区中山北路217号1412室",
"bdcdyh": "320106001015GB00036F00010065",
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
"qlxz": "让出/其它",
"yt": "商务金融用地/经营",
"mj": "宗地面积8838.88平方米/建筑面积201.34平方米",
"syqx": "2048年11月17日止",
"fwjg": "钢筋混凝土结构",
"fwzcs": "33层",
"szcs": "14层",
"qqh": "523292-I-120",
"ly": "买受"
},
{
"tudi": "南京市鼓楼区中山北路217号",
"jd": "龙吟广场",
"bdczh": "苏(2022)宁鼓不动产权第0002053号",
"gyqk": "",
"zl": "鼓楼区中山北路217号1413室",
"bdcdyh": "320106001015GB00036F00010066",
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
"qlxz": "让出/其它",
"yt": "商务金融用地/经营",
"mj": "宗地面积8838.88平方米/建筑面积11.07平方米",
"syqx": "2048年11月17日止",
"fwjg": "钢筋混凝土结构",
"fwzcs": "33层",
"szcs": "14层",
"qqh": "523292-I-121",
"ly": "买受"
}
],
{
"tudi": "南京市鼓楼区峨嵋路21号",
"jd": "健康中心(安仁街变)",
"bdczh": "苏(2018)宁鼓不动产权第0008891号",
"qlr": "江苏省电力公司南京供电公司",
"gyqk": "",
"zl": "峨嵋路",
"bdcdyh": "",
"qllx": "",
"qlxz": "",
"yt": "办公",
"mj": "宗地面积4110.77平方米/建筑面积4885.32平方米",
"syqx": "",
"fwjg": "混钢",
"fwzcs": "8层",
"szcs": "1-8层",
"qqh": "",
"ly": "自建"
},
{
"tudi": "南京市鼓楼区龙池庵66号",
"jd": "苏电宾馆",
"bdczh": "苏(2022)宁鼓不动产权第0002178号",
"qlr": "国网江苏省电力有限公司南京供电分公司",
"gyqk": "",
"zl": "鼓楼区龙池庵66号",
"bdcdyh": "320106005001GB00127F00010001",
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
"qlxz": "划拨/其他",
"yt": "其他商服用地/教育(教学)",
"mj": "宗地面积:5599.09平方米/建筑面积6138.53平方米",
"syqx": "",
"fwjg": "钢筋混凝土结构",
"fwzcs": "7层",
"szcs": "-1-6层",
"qqh": "501040-V-1",
"ly": "自建"
},
{
"tudi": "南京市玄武区中山路250号",
"jd": "老卫生所",
"bdczh": "苏2018宁玄不动产权第0009754",
"qlr": "国网江苏省电力有限公司南京供电公司",
"gyqk": "",
"zl": "玄武区中山路250号",
"bdcdyh": "320102003003GB00009F00010001",
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
"qlxz": "划拨/其他",
"yt": "医卫慈善用地/医疗卫生",
"mj": "宗地面积:620.30平方米/建筑面积1993.25平方米",
"syqx": "",
"fwjg": "混合结构",
"fwzcs": "5层",
"szcs": "1-5层",
"qqh": "108137-5",
"ly": "自建"
},
{
"tudi": "南京市江宁区天印大道1398号",
"jd": "江宁新办公楼基地",
"bdczh": "苏2017宁江不动产权第0037561号",
"qlr": "江苏省电力公司南京供电公司",
"gyqk": "",
"zl": "江宁区天印大道1389号",
"bdcdyh": "320115001016GB00052F00010017,320115001016GB00052F00020001,320115001016GB00052F00030001",
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
"qlxz": "出让/其他",
"yt": "工业用地/办公室/后勤服务用房/传达室",
"mj": "宗地面积:33003.45平方米/建筑面积8546.65平方米",
"syqx": "2002年01月28日起2052年01月27日止",
"fwjg": "钢筋混凝土结构/钢筋混凝土结构",
"fwzcs": "6层/2层/1层",
"szcs": "1层/2层/1层",
"qqh": "11245010-IV-2",
"ly": "其他"
},
{
"tudi": "南京市高淳区北岭路23号",
"jd": "高淳新办公楼基地",
"bdczh": "苏(2018)宁高不动产权第0013434号",
"qlr": "国网江苏省电力有限公司南京市高淳区供电分公司",
"gyqk": "",
"zl": "淳溪镇北岭路23号1幢等",
"bdcdyh": "320118100013GB00027F00010001,320118100013GB00027F00020001,320118100013GB00027F00030001,320118100013GB00027F00040001,320118100013GB00027F00050001,320118100013GB00027F00060001,320118100013GB00027F00070001",
"qllx": "国有建设用地使用权/房屋(构筑物)所有权",
"qlxz": "划拨/其他",
"yt": "公共设施用地/传达室,办公楼,配电房",
"mj": "宗地面积:24967.60平方米/建筑面积9251.51平方米",
"syqx": "",
"fwjg": "钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构/钢筋混凝土结构",
"fwzcs": "1层/2层/5层/1层/2层/3层/1层",
"szcs": "1层/1-2层/1-5层/1层/1-2层/1-3层/1层",
"qqh": "13124010-037",
"ly": "自建"
}
]

101
public/json/tdData.json Normal file
View File

@ -0,0 +1,101 @@
[
{
"tudi": "南京市鼓楼区定淮门石头城115号",
"jd": "城北基地",
"tdzh": "宁鼓国200709329号",
"tdsyqr": "江苏省电力公司南京供电公司",
"zl": "鼓楼区石头城路115号",
"dh": "060010150023",
"syqlx": "出让",
"th": "",
"dlyt": "工业",
"syqmj": "11219.8平方米",
"zzrq": "2045年03月26"
},
{
"tudi": "南京市江宁区天元中路19号",
"jd": "峰电大厦",
"tdzh": "宁江国用(2012)第13655号",
"tdsyqr": "江苏省电力公司南京供电公司",
"zl": "江宁科学园天元中路",
"dh": "212070150061",
"syqlx": "划拨",
"th": "34.25-00.25",
"dlyt": "公共设施用地",
"syqmj": "6263.40平方米",
"zzrq": ""
},
{
"tudi": "南京市六合区雄州镇园林西路8巷13号",
"jd": "六合园林路基地",
"tdzh": "宁六国用2012第05310号",
"tdsyqr": "江苏省电力公司南京供电公司",
"zl": "六合区雄州镇园林西路8巷13号",
"dh": "231000100121",
"syqlx": "划拨",
"th": "",
"dlyt": "公共设施用地",
"syqmj": "3518.7平方米",
"zzrq": ""
},
{
"tudi": "南京市六合区雄州镇方州路北侧",
"jd": "六合方州路基地",
"tdzh": "宁六国用2012第01590号",
"tdsyqr": "江苏省电力公司南京供电公司",
"zl": "六合区雄州镇方州路北侧",
"dh": "23100900174",
"syqlx": "划拨",
"th": "",
"dlyt": "公共设施用地",
"syqmj": "26354.9平方米",
"zzrq": ""
},
{
"tudi": "南京市浦口区泰西路8号",
"jd": "泰西路基地",
"tdzh": "宁六国用2012第01590号",
"tdsyqr": "江苏省电力公司南京供电公司",
"zl": "浦口区奉西路8号",
"dh": "111020310037",
"syqlx": "划拨",
"th": "58.25-87",
"dlyt": "公共设施用地",
"syqmj": "5903.8平方米",
"zzrq": ""
},
{
"tudi": "南京市建邺区奥体大街1号",
"jd": "公司大楼",
"tdzh": "宁雨国用2006第00923号",
"tdsyqr": "国网江苏电力公司",
"zl": "建邺区奥体大街1号",
"dh": "320105002014GB00033",
"syqlx": "出让",
"th": "41.00-90.75",
"dlyt": "科教用地(科技研发)",
"syqmj": "37272.58平方米",
"zzrq": "2056年2月5号"
},
{
"tudi": "南京市江宁区上元大街598号",
"jd": "江宁老办公楼基地",
"tdzh": "宁江国用(2012)第13759号",
"tdsyqr": "江苏省电力公司南京供电公司",
"zl": "江宁区东山街道上元大街598号",
"dh": "211000180032",
"syqlx": "划拨",
"th": "37.00-00.75",
"dlyt": "机关团体用地",
"syqmj": "5145.90平方米",
"zzrq": ""
}
]

View File

@ -0,0 +1,79 @@
[
{"depart":"健康中心","floor":"1楼","room":"","name":"CT1","square":""}
,{"depart":"健康中心","floor":"1楼","room":"","name":"CT2","square":""}
,{"depart":"健康中心","floor":"1楼","room":"","name":"保安室","square":""}
,{"depart":"健康中心","floor":"2楼","room":"","name":"抽血室","square":""}
,{"depart":"健康中心","floor":"2楼","room":"","name":"尿检室","square":""}
,{"depart":"健康中心","floor":"2楼","room":"201.0","name":"血压","square":""}
,{"depart":"健康中心","floor":"2楼","room":"203.0","name":"超声室(一)","square":""}
,{"depart":"健康中心","floor":"2楼","room":"205.0","name":"超声室(二)","square":""}
,{"depart":"健康中心","floor":"2楼","room":"206.0","name":"呼气试验","square":""}
,{"depart":"健康中心","floor":"2楼","room":"207.0","name":"超声室(三)","square":""}
,{"depart":"健康中心","floor":"2楼","room":"208.0","name":"人体成分骨密度","square":""}
,{"depart":"健康中心","floor":"2楼","room":"209.0","name":"超声室(四)","square":""}
,{"depart":"健康中心","floor":"2楼","room":"210.0","name":"动脉硬化","square":""}
,{"depart":"健康中心","floor":"2楼","room":"211.0","name":"超声室(五)","square":""}
,{"depart":"健康中心","floor":"2楼","room":"212.0","name":"中西医专家咨询","square":""}
,{"depart":"健康中心","floor":"2楼","room":"213.0","name":"超声室(六)","square":""}
,{"depart":"健康中心","floor":"2楼","room":"215.0","name":"超声室(七)","square":""}
,{"depart":"健康中心","floor":"2楼","room":"216.0","name":"经颅多普勒","square":""}
,{"depart":"健康中心","floor":"2楼","room":"218.0","name":"男更衣室","square":""}
,{"depart":"健康中心","floor":"2楼","room":"220.0","name":"女更衣室","square":""}
,{"depart":"健康中心","floor":"2楼","room":"222.0","name":"健康扫描仪","square":""}
,{"depart":"健康中心","floor":"2楼","room":"","name":"仓库","square":""}
,{"depart":"健康中心","floor":"3楼","room":"301.0","name":"内科(一)","square":""}
,{"depart":"健康中心","floor":"3楼","room":"302.0","name":"眼科","square":""}
,{"depart":"健康中心","floor":"3楼","room":"303.0","name":"内科(二)","square":""}
,{"depart":"健康中心","floor":"3楼","room":"305.0","name":"心电图(一)","square":""}
,{"depart":"健康中心","floor":"3楼","room":"306.0","name":"外科(男)","square":""}
,{"depart":"健康中心","floor":"3楼","room":"307.0","name":"心电图(二)","square":""}
,{"depart":"健康中心","floor":"3楼","room":"308.0","name":"耳鼻喉科","square":""}
,{"depart":"健康中心","floor":"3楼","room":"309.0","name":"乳腺手诊","square":""}
,{"depart":"健康中心","floor":"3楼","room":"310.0","name":"口腔室","square":""}
,{"depart":"健康中心","floor":"3楼","room":"311.0","name":"办公室","square":""}
,{"depart":"健康中心","floor":"3楼","room":"312.0","name":"办公室","square":""}
,{"depart":"健康中心","floor":"3楼","room":"313.0","name":"妇科","square":""}
,{"depart":"健康中心","floor":"3楼","room":"315.0","name":"妇科超声","square":""}
,{"depart":"健康中心","floor":"3楼","room":"316.0","name":"男更衣室","square":""}
,{"depart":"健康中心","floor":"3楼","room":"318.0","name":"女更衣室","square":""}
,{"depart":"健康中心","floor":"3楼","room":"320.0","name":"主检室","square":""}
,{"depart":"健康中心","floor":"4楼","room":"401.0","name":"办公室","square":""}
,{"depart":"健康中心","floor":"4楼","room":"402.0","name":"耗材库","square":""}
,{"depart":"健康中心","floor":"4楼","room":"405.0","name":"西药库","square":""}
,{"depart":"健康中心","floor":"4楼","room":"406.0","name":"中药库","square":""}
,{"depart":"健康中心","floor":"4楼","room":"408.0","name":"机房","square":""}
,{"depart":"","floor":"","room":"","name":"检验区","square":""}
,{"depart":"健康中心","floor":"4楼","room":"410.0","name":"办公室","square":""}
,{"depart":"健康中心","floor":"5楼","room":"","name":"挂号收费","square":""}
,{"depart":"健康中心","floor":"5楼","room":"","name":"中药房","square":""}
,{"depart":"健康中心","floor":"5楼","room":"","name":"西药房","square":""}
,{"depart":"健康中心","floor":"5楼","room":"503.0","name":"内科","square":""}
,{"depart":"健康中心","floor":"5楼","room":"505.0","name":"外科","square":""}
,{"depart":"健康中心","floor":"5楼","room":"507.0","name":"中医科","square":""}
,{"depart":"健康中心","floor":"5楼","room":"508.0","name":"观察室","square":""}
,{"depart":"健康中心","floor":"5楼","room":"509.0","name":"专家门诊","square":""}
,{"depart":"健康中心","floor":"5楼","room":"510.0","name":"被服室","square":""}
,{"depart":"健康中心","floor":"5楼","room":"511.0","name":"专家门诊","square":""}
,{"depart":"健康中心","floor":"5楼","room":"512.0","name":"中药加工间","square":""}
,{"depart":"健康中心","floor":"5楼","room":"513.0","name":"理疗室","square":""}
,{"depart":"健康中心","floor":"6楼","room":"601.0","name":"体检反馈","square":""}
,{"depart":"健康中心","floor":"6楼","room":"602.0","name":"办公室(一)","square":""}
,{"depart":"健康中心","floor":"6楼","room":"603.0","name":"办公室(二)","square":""}
,{"depart":"健康中心","floor":"6楼","room":"604.0","name":"办公室(三)","square":""}
,{"depart":"","floor":"","room":"606.0","name":"办公室(四)","square":""}
,{"depart":"健康中心","floor":"6楼","room":"608.0","name":"备品室","square":""}
,{"depart":"健康中心","floor":"6楼","room":"","name":"食堂","square":""}
,{"depart":"健康中心","floor":"7楼","room":"701.0","name":"文化活动室","square":""}
,{"depart":"健康中心","floor":"7楼","room":"702.0","name":"接待室","square":""}
,{"depart":"健康中心","floor":"7楼","room":"703.0","name":"办公室(二)","square":""}
,{"depart":"健康中心","floor":"7楼","room":"705.0","name":"办公室(三)","square":""}
,{"depart":"健康中心","floor":"7楼","room":"706.0","name":"会议室","square":""}
,{"depart":"健康中心","floor":"7楼","room":"707.0","name":"办公室(四)","square":""}
,{"depart":"健康中心","floor":"7楼","room":"708.0","name":"会议室","square":""}
,{"depart":"健康中心","floor":"7楼","room":"709.0","name":"办公室(五)","square":""}
,{"depart":"健康中心","floor":"7楼","room":"710.0","name":"备品室","square":""}
,{"depart":"健康中心","floor":"7楼","room":"711.0","name":"办公室(六)","square":""}
,{"depart":"健康中心","floor":"7楼","room":"713.0","name":"办公室(七)","square":""}
,{"depart":"健康中心","floor":"7楼","room":"715.0","name":"办公室(八)","square":""}
,{"depart":"健康中心","floor":"7楼","room":"717.0","name":"办公室(九)","square":""}
]

View File

@ -0,0 +1,293 @@
[
{"depart":"智能化控制室","floor":"主楼一楼","room":"101.0","name":"楼宇中控室、消防控制室","square":0}
,{"depart":"华群汽车","floor":"主楼一楼","room":"102.0","name":"驾驶五班","square":0}
,{"depart":"华群汽车","floor":"主楼一楼","room":"103.0","name":"值班室","square":0}
,{"depart":"华群汽车","floor":"主楼一楼","room":"104.0","name":"机关分部经理室","square":0}
,{"depart":"华群汽车","floor":"主楼一楼","room":"105.0","name":"驾驶四班","square":0}
,{"depart":"华群汽车","floor":"主楼一楼","room":"106.0","name":"车辆调度室","square":0}
,{"depart":"华群汽车","floor":"主楼一楼","room":"107.0","name":"驾驶三班","square":0}
,{"depart":"华群汽车","floor":"主楼一楼","room":"108.0","name":"服务员休息室","square":0}
,{"depart":"华群汽车","floor":"主楼一楼","room":"109.0","name":"驾驶二班","square":0}
,{"depart":"华群汽车","floor":"主楼一楼","room":"110.0","name":"华群汽车","square":0}
,{"depart":"华群汽车","floor":"主楼一楼","room":"111.0","name":"驾驶一班","square":0}
,{"depart":"华群汽车","floor":"主楼一楼","room":"113.0","name":"机关分部办公室","square":0}
,{"depart":"华群汽车","floor":"主楼一楼","room":"115.0","name":"车队值班室","square":0}
,{"depart":"健康服务中心","floor":"主楼二楼","room":"201.0","name":"医务室与母婴室","square":0}
,{"depart":"华群物业","floor":"主楼二楼","room":"202.0","name":"综合服务中心","square":0}
,{"depart":"华群汽车","floor":"主楼二楼","room":"203.0","name":"车队办公室","square":0}
,{"depart":"华群物业","floor":"主楼二楼","room":"204.0","name":"综合服务中心","square":0}
,{"depart":"英大服务站","floor":"主楼二楼","room":"205.0","name":"办公室","square":0}
,{"depart":"总值班室","floor":"主楼二楼","room":"206.0","name":"总值班室","square":0}
,{"depart":"公安办","floor":"主楼二楼","room":"207.0","name":"公安办","square":0}
,{"depart":"接待室","floor":"主楼二楼","room":"208.0","name":"接待室","square":0}
,{"depart":"会议中心","floor":"主楼二楼","room":"209.0","name":"会议室","square":0}
,{"depart":"文印室","floor":"主楼二楼","room":"210.0","name":"文印室","square":0}
,{"depart":"华群物业","floor":"主楼二楼","room":"211.0","name":"无门牌","square":0}
,{"depart":"会议中心","floor":"主楼二楼","room":"212.0","name":"会议室","square":0}
,{"depart":"华群物业","floor":"主楼二楼","room":"213.0","name":"物业卫生器具间","square":0}
,{"depart":"华群物业","floor":"东裙楼二楼","room":"201.0","name":"中会议室","square":0}
,{"depart":"华群物业","floor":"东裙楼二楼","room":"202.0","name":"文印室","square":0}
,{"depart":"华群物业","floor":"东裙楼二楼","room":"203.0","name":"金管家工作室","square":0}
,{"depart":"华群物业","floor":"东裙楼二楼","room":"204.0","name":"综合室(物资)","square":0}
,{"depart":"华群物业","floor":"东裙楼二楼","room":"205.0","name":"经理室书记室","square":0}
,{"depart":"华群物业","floor":"东裙楼二楼","room":"206.0","name":"综合部(编辑)","square":0}
,{"depart":"华群物业","floor":"东裙楼二楼","room":"207.0","name":"洽谈室","square":0}
,{"depart":"华群物业","floor":"东裙楼二楼","room":"208.0","name":"会议室","square":0}
,{"depart":"华群物业","floor":"东裙楼二楼","room":"209.0","name":"副经理室","square":0}
,{"depart":"华群物业","floor":"东裙楼二楼","room":"210.0","name":"房产办","square":0}
,{"depart":"华群物业","floor":"东裙楼二楼","room":"211.0","name":"协理员室","square":0}
,{"depart":"华群物业","floor":"东裙楼二楼","room":"213.0","name":"综合部","square":0}
,{"depart":"华群物业","floor":"东裙楼二楼","room":"215.0","name":"物业安保部","square":0}
,{"depart":"华群物业","floor":"东裙楼二楼","room":"217.0","name":"经营部物资中心","square":0}
,{"depart":"华群物业","floor":"东裙楼二楼","room":"219.0","name":"工程部(合同管理)综合部(劳资)","square":0}
,{"depart":"会议中心","floor":"西裙楼二楼","room":"201.0","name":"电视电话 会议室","square":0}
,{"depart":"会议中心","floor":"西裙楼二楼","room":"202.0","name":"小会议室","square":0}
,{"depart":"会议中心","floor":"西裙楼二楼","room":"203.0","name":"大会议室贵宾厅","square":0}
,{"depart":"会议中心","floor":"西裙楼二楼","room":"204.0","name":"小会议室","square":0}
,{"depart":"会议中心","floor":"西裙楼二楼","room":"205.0","name":"无门牌","square":0}
,{"depart":"会议中心","floor":"西裙楼二楼","room":"206.0","name":"小会议室","square":0}
,{"depart":"会议中心","floor":"西裙楼二楼","room":"207.0","name":"","square":0}
,{"depart":"会议中心","floor":"西裙楼二楼","room":"208.0","name":"小会议室","square":0}
,{"depart":"会议中心","floor":"西裙楼二楼","room":"214.0","name":"会议准备室工作间","square":0}
,{"depart":"信通公司","floor":"主楼三楼","room":"301.0","name":"仪器仪表器具室","square":0}
,{"depart":"信通公司","floor":"主楼三楼","room":"302.0","name":"通信网管操作室","square":0}
,{"depart":"信通公司","floor":"主楼三楼","room":"303.0","name":"无门牌","square":0}
,{"depart":"信通公司","floor":"主楼三楼","room":"304.0","name":"信通运检一班信通公司","square":0}
,{"depart":"信通公司","floor":"主楼三楼","room":"305.0","name":"运行值班室信通公司通信","square":0}
,{"depart":"信通公司","floor":"主楼三楼","room":"306.0","name":"信通运检一班信通公司","square":0}
,{"depart":"信通公司","floor":"主楼三楼","room":"307.0","name":"信通运检一班信通公司","square":0}
,{"depart":"党委党建部","floor":"主楼三楼","room":"308.0","name":"宁聚工作室","square":0}
,{"depart":"信通公司","floor":"主楼三楼","room":"309.0","name":"休息室","square":0}
,{"depart":"党委党建部","floor":"主楼三楼","room":"310.0","name":"资料室","square":0}
,{"depart":"党委党建部","floor":"主楼三楼","room":"311.0","name":"党委党建部","square":0}
,{"depart":"党委党建部","floor":"主楼三楼","room":"312.0","name":"职工服务中心","square":0}
,{"depart":"工会","floor":"主楼三楼","room":"315.0","name":"工会副主席室","square":0}
,{"depart":"工会","floor":"主楼三楼","room":"316.0","name":"工会办公室","square":0}
,{"depart":"工会","floor":"主楼三楼","room":"317.0","name":"图书阅览室","square":0}
,{"depart":"工会","floor":"主楼三楼","room":"318.0","name":"库房","square":0}
,{"depart":"工会","floor":"主楼三楼","room":"319.0","name":"减压吧","square":0}
,{"depart":"调度、信通","floor":"东裙楼三楼","room":"301.0","name":"网路设备区PC服务器区","square":0}
,{"depart":"调度、信通","floor":"东裙楼三楼","room":"302.0","name":"备品备件室","square":0}
,{"depart":"调度、信通","floor":"东裙楼三楼","room":"303.0","name":"主机存储区","square":0}
,{"depart":"调度、信通","floor":"东裙楼三楼","room":"304.0","name":"无门牌","square":0}
,{"depart":"调度、信通","floor":"东裙楼三楼","room":"305.0","name":"自动化机房","square":0}
,{"depart":"调度、信通","floor":"东裙楼三楼","room":"306.0","name":"通信配线、接入设备机房","square":0}
,{"depart":"调度、信通","floor":"东裙楼三楼","room":"307.0","name":"通信机房","square":0}
,{"depart":"调度、信通","floor":"东裙楼三楼","room":"308.0","name":"通信电源室","square":0}
,{"depart":"工会","floor":"西裙楼三楼","room":"301.0","name":"体操室","square":0}
,{"depart":"工会","floor":"西裙楼三楼","room":"302.0","name":"棋牌室","square":0}
,{"depart":"工会","floor":"西裙楼三楼","room":"303.0","name":"乒乓球室","square":0}
,{"depart":"工会","floor":"西裙楼三楼","room":"304.0","name":"健身室","square":0}
,{"depart":"工会","floor":"西裙楼三楼","room":"305.0","name":"斯诺克","square":0}
,{"depart":"工会","floor":"西裙楼三楼","room":"306.0","name":"健身房","square":0}
,{"depart":"工会","floor":"西裙楼三楼","room":"308.0","name":"暖通机房","square":0}
,{"depart":"工会","floor":"西裙楼三楼","room":"309.0","name":"无门牌","square":0}
,{"depart":"工会","floor":"西裙楼三楼","room":"310.0","name":"篆刻书画室","square":0}
,{"depart":"供电指挥中心","floor":"主楼四楼","room":"401.0","name":"休息室","square":0}
,{"depart":"供电指挥中心","floor":"主楼四楼","room":"402.0","name":"配餐室","square":0}
,{"depart":"供电指挥中心","floor":"主楼四楼","room":"403.0","name":"休息室","square":0}
,{"depart":"供电指挥中心","floor":"主楼四楼","room":"404.0","name":"办公室","square":0}
,{"depart":"供电指挥中心","floor":"主楼四楼","room":"405.0","name":"采集运行一班","square":0}
,{"depart":"供电指挥中心","floor":"主楼四楼","room":"406.0","name":"地区调度班","square":0}
,{"depart":"供电指挥中心","floor":"主楼四楼","room":"407.0","name":"办公室","square":0}
,{"depart":"供电指挥中心","floor":"主楼四楼","room":"409.0","name":"采集运行一班","square":0}
,{"depart":"供电指挥中心","floor":"主楼四楼","room":"411.0","name":"会议室","square":0}
,{"depart":"供电指挥中心","floor":"主楼四楼","room":"413.0","name":"调度控制室","square":0}
,{"depart":"供电指挥中心","floor":"主楼四楼","room":"415.0","name":"地区电网调控大厅","square":0}
,{"depart":"办公室","floor":"主楼五楼","room":"501.0","name":"档案三库","square":0}
,{"depart":"办公室","floor":"主楼五楼","room":"502.0","name":"档案二库","square":0}
,{"depart":"办公室","floor":"主楼五楼","room":"503.0","name":"业务技术用房","square":0}
,{"depart":"办公室","floor":"主楼五楼","room":"504.0","name":"档案一库","square":0}
,{"depart":"办公室","floor":"主楼五楼","room":"505.0","name":"档案室","square":0}
,{"depart":"办公室","floor":"主楼五楼","room":"506.0","name":"档案四库","square":0}
,{"depart":"办公室","floor":"主楼五楼","room":"507.0","name":"档案四库","square":0}
,{"depart":"办公室","floor":"主楼五楼","room":"508.0","name":"档案室","square":0}
,{"depart":"办公室","floor":"主楼五楼","room":"509.0","name":"阅览室","square":0}
,{"depart":"办公室","floor":"主楼五楼","room":"510.0","name":"档案室","square":0}
,{"depart":"办公室","floor":"主楼五楼","room":"511.0","name":"档案五库","square":0}
,{"depart":"办公室","floor":"主楼五楼","room":"512.0","name":"档案室","square":0}
,{"depart":"办公室","floor":"主楼五楼","room":"513.0","name":"档案六库","square":0}
,{"depart":"综合管理室","floor":"主楼六楼","room":"601.0","name":"综合服务中心综合管理室","square":0}
,{"depart":"共用","floor":"主楼六楼","room":"602.0","name":"会议室","square":0}
,{"depart":"综合管理室","floor":"主楼六楼","room":"603.0","name":"综合管理室主任室 综合服务中心","square":0}
,{"depart":"共用","floor":"主楼六楼","room":"604.0","name":"会议室","square":0}
,{"depart":"综合管理室","floor":"主楼六楼","room":"605.0","name":"综合管理室 综合服务中心","square":0}
,{"depart":"信通公司","floor":"主楼六楼","room":"606.0","name":"创新工作室","square":0}
,{"depart":"信通公司","floor":"主楼六楼","room":"607.0","name":"信通运检二班","square":0}
,{"depart":"信通公司","floor":"主楼六楼","room":"608.0","name":"会议室","square":0}
,{"depart":"信通公司","floor":"主楼六楼","room":"609.0","name":"信通运检二班","square":0}
,{"depart":"信通公司","floor":"主楼六楼","room":"610.0","name":"资料室","square":0}
,{"depart":"信通公司","floor":"主楼六楼","room":"611.0","name":"信通运检二班","square":0}
,{"depart":"信通公司","floor":"主楼六楼","room":"612.0","name":"党员活动室","square":0}
,{"depart":"信通公司","floor":"主楼六楼","room":"613.0","name":"信通公司网控室 信通公司综合室","square":0}
,{"depart":"信通公司","floor":"主楼六楼","room":"614.0","name":"耗材库房","square":0}
,{"depart":"信通公司","floor":"主楼六楼","room":"615.0","name":"备用","square":0}
,{"depart":"信通公司","floor":"主楼六楼","room":"617.0","name":"朱红专家工作室","square":0}
,{"depart":"信通公司","floor":"主楼六楼","room":"619.0","name":"通信公司办公室","square":0}
,{"depart":"备用","floor":"主楼六楼","room":"1615.0","name":"备用","square":0}
,{"depart":"备用","floor":"主楼六楼","room":"1617.0","name":"主任室物资部(物资供应中心)","square":0}
,{"depart":"备用","floor":"主楼六楼","room":"1619.0","name":"主任室物资部(物资供应中心)","square":0}
,{"depart":"运维检修部","floor":"主楼七楼","room":"701.0","name":"运维检修部","square":0}
,{"depart":"运维检修部","floor":"主楼七楼","room":"702.0","name":"备用","square":0}
,{"depart":"运维检修部","floor":"主楼七楼","room":"703.0","name":"主任室3张中层桌","square":0}
,{"depart":"运维检修部","floor":"主楼七楼","room":"704.0","name":"会议室","square":0}
,{"depart":"运维检修部","floor":"主楼七楼","room":"705.0","name":"副主任室","square":0}
,{"depart":"运维检修部","floor":"主楼七楼","room":"706.0","name":"备用","square":0}
,{"depart":"运维检修部","floor":"主楼七楼","room":"707.0","name":"运维检修部","square":0}
,{"depart":"运维检修部","floor":"主楼七楼","room":"708.0","name":"863办公室","square":0}
,{"depart":"运维检修部","floor":"主楼七楼","room":"709.0","name":"运维检修部","square":0}
,{"depart":"运维检修部","floor":"主楼七楼","room":"710.0","name":"运维检修部","square":0}
,{"depart":"审计部","floor":"主楼七楼","room":"711.0","name":"审计部","square":0}
,{"depart":"审计部","floor":"主楼七楼","room":"712.0","name":"资料室","square":0}
,{"depart":"审计部","floor":"主楼七楼","room":"713.0","name":"审计部","square":0}
,{"depart":"审计部","floor":"主楼七楼","room":"714.0","name":"专用审计室","square":0}
,{"depart":"审计部","floor":"主楼七楼","room":"715.0","name":"主任、副主任室","square":0}
,{"depart":"审计部","floor":"主楼七楼","room":"717.0","name":"审计部","square":0}
,{"depart":"审计部","floor":"主楼七楼","room":"719.0","name":"审计部","square":0}
,{"depart":"审计部","floor":"主楼七楼","room":"721.0","name":"专用审计室","square":0}
,{"depart":"审计部","floor":"主楼七楼","room":"723.0","name":"审计部","square":0}
,{"depart":"建设部","floor":"主楼八楼","room":"801.0","name":"建设部","square":0}
,{"depart":"建设部","floor":"主楼八楼","room":"802.0","name":"会议室","square":0}
,{"depart":"建设部","floor":"主楼八楼","room":"803.0","name":"建设部","square":0}
,{"depart":"建设部","floor":"主楼八楼","room":"804.0","name":"资料室","square":0}
,{"depart":"建设部","floor":"主楼八楼","room":"805.0","name":"主任室","square":0}
,{"depart":"建设部","floor":"主楼八楼","room":"806.0","name":"资料室","square":0}
,{"depart":"建设部","floor":"主楼八楼","room":"807.0","name":"备用","square":0}
,{"depart":"建设部","floor":"主楼八楼","room":"808.0","name":"创新工作室、高飞劳模","square":0}
,{"depart":"建设部","floor":"主楼八楼","room":"809.0","name":"建设部","square":0}
,{"depart":"项目管理中心","floor":"主楼八楼","room":"811.0","name":"项目管理中心","square":0}
,{"depart":"项目管理中心","floor":"主楼八楼","room":"813.0","name":"项目管理中心","square":0}
,{"depart":"项目管理中心","floor":"主楼八楼","room":"815.0","name":"项目管理中心","square":0}
,{"depart":"项目管理中心","floor":"主楼八楼","room":"817.0","name":"项目管理中心","square":0}
,{"depart":"项目管理中心","floor":"主楼八楼","room":"819.0","name":"运营监测(控)中心","square":0}
,{"depart":"财务部","floor":"主楼九楼","room":"901.0","name":"会议室","square":0}
,{"depart":"财务部","floor":"主楼九楼","room":"902.0","name":"会议室","square":0}
,{"depart":"财务部","floor":"主楼九楼","room":"903.0","name":"财务部","square":0}
,{"depart":"财务部","floor":"主楼九楼","room":"904.0","name":"资料室","square":0}
,{"depart":"财务部","floor":"主楼九楼","room":"905.0","name":"财务部","square":0}
,{"depart":"财务部","floor":"主楼九楼","room":"907.0","name":"财务部","square":0}
,{"depart":"财务部","floor":"主楼九楼","room":"909.0","name":"会议室","square":0}
,{"depart":"财务部","floor":"主楼九楼","room":"911.0","name":"财务部","square":0}
,{"depart":"财务部","floor":"主楼九楼","room":"913.0","name":"财务部","square":0}
,{"depart":"财务部","floor":"主楼九楼","room":"915.0","name":"财务部主任室","square":0}
,{"depart":"财务部","floor":"主楼九楼","room":"917.0","name":"备用","square":0}
,{"depart":"财务部","floor":"主楼九楼","room":"919.0","name":"备用","square":0}
,{"depart":"审计部","floor":"主楼十楼","room":"1001.0","name":"审理室","square":0}
,{"depart":"纪委","floor":"主楼十楼","room":"1002.0","name":"纪委学习室","square":0}
,{"depart":"纪委","floor":"主楼十楼","room":"1003.0","name":"谈话室","square":0}
,{"depart":"纪委","floor":"主楼十楼","room":"1005.0","name":"纪委主任室","square":0}
,{"depart":"纪委","floor":"主楼十楼","room":"1007.0","name":"备用","square":0}
,{"depart":"纪委","floor":"主楼十楼","room":"1008.0","name":"巡查组(一)","square":0}
,{"depart":"纪委","floor":"主楼十楼","room":"1009.0","name":"纪委办公室","square":0}
,{"depart":"纪委","floor":"主楼十楼","room":"1010.0","name":"巡查组(二)","square":0}
,{"depart":"经济技术研究所","floor":"主楼十楼","room":"1011.0","name":"经济技术研究所","square":0}
,{"depart":"物资部","floor":"主楼十楼","room":"1012.0","name":"零碳研究中心","square":0}
,{"depart":"发展策划部","floor":"主楼十楼","room":"1013.0","name":"发展策划部","square":0}
,{"depart":"发展策划部","floor":"主楼十楼","room":"1015.0","name":"发展策划部副主任室","square":0}
,{"depart":"发展策划部","floor":"主楼十楼","room":"1017.0","name":"发展策划部","square":0}
,{"depart":"发展策划部","floor":"主楼十楼","room":"1019.0","name":"发展策划部","square":0}
,{"depart":"发展策划部","floor":"主楼十楼","room":"1021.0","name":"发展策划部主任室","square":0}
,{"depart":"发展策划部","floor":"主楼十楼","room":"1023.0","name":"会议室","square":0}
,{"depart":"纪委","floor":"主楼十楼","room":"1006+1004","name":"1004 纪委工作室 1006 会议室","square":0}
,{"depart":"党委党建部","floor":"主楼十一楼","room":"1110.0","name":"党委党建部主任","square":0}
,{"depart":"人资部","floor":"主楼十二楼","room":"1201.0","name":"无门牌","square":0}
,{"depart":"人资部","floor":"主楼十二楼","room":"1202.0","name":"无门牌","square":0}
,{"depart":"办公室","floor":"主楼十二楼","room":"1203.0","name":"办公室","square":0}
,{"depart":"人资部","floor":"主楼十二楼","room":"1204.0","name":"无门牌","square":0}
,{"depart":"办公室","floor":"主楼十二楼","room":"1205.0","name":"办公室","square":0}
,{"depart":"人资部","floor":"主楼十二楼","room":"1206.0","name":"会议室","square":0}
,{"depart":"人资部","floor":"主楼十二楼","room":"1207.0","name":"巡回指挥组工作点","square":0}
,{"depart":"人资部","floor":"主楼十二楼","room":"1208.0","name":"资料室","square":0}
,{"depart":"人资部","floor":"主楼十二楼","room":"1209.0","name":"人资部","square":0}
,{"depart":"人资部","floor":"主楼十二楼","room":"1210.0","name":"阅档室","square":0}
,{"depart":"人资部","floor":"主楼十二楼","room":"1211.0","name":"人资部","square":0}
,{"depart":"人资部","floor":"主楼十二楼","room":"1212.0","name":"人事库房","square":0}
,{"depart":"人力资源服务室","floor":"主楼十二楼","room":"1213.0","name":"人资部","square":0}
,{"depart":"人力资源服务室","floor":"主楼十二楼","room":"1215.0","name":"人资部主任室","square":0}
,{"depart":"人力资源服务室","floor":"主楼十二楼","room":"1217.0","name":"人资部副主任室","square":0}
,{"depart":"人力资源服务室","floor":"主楼十二楼","room":"1219.0","name":"人资部","square":0}
,{"depart":"人力资源服务室","floor":"主楼十二楼","room":"1221.0","name":"人资部","square":0}
,{"depart":"江苏思极公司","floor":"主楼十五楼","room":"1501.0","name":"无门牌","square":0}
,{"depart":"江苏思极公司","floor":"主楼十五楼","room":"1502.0","name":"无门牌","square":0}
,{"depart":"江苏思极公司","floor":"主楼十五楼","room":"1503.0","name":"办公室","square":0}
,{"depart":"科技互联网部","floor":"主楼十五楼","room":"1504.0","name":"会议室","square":0}
,{"depart":"江苏思极公司","floor":"主楼十五楼","room":"1505.0","name":"办公室","square":0}
,{"depart":"安质部","floor":"主楼十五楼","room":"1506.0","name":"办公室","square":0}
,{"depart":"科技互联网部","floor":"主楼十五楼","room":"1507.0","name":"科技互联网部","square":0}
,{"depart":"安质部","floor":"主楼十五楼","room":"1508.0","name":"督察组","square":0}
,{"depart":"科技互联网部","floor":"主楼十五楼","room":"1509.0","name":"主任室科技互联网部","square":0}
,{"depart":"安质部","floor":"主楼十五楼","room":"1510.0","name":"安监部办公室","square":0}
,{"depart":"科技互联网部","floor":"主楼十五楼","room":"1511.0","name":"科技互联网部","square":0}
,{"depart":"安质部","floor":"主楼十五楼","room":"1512.0","name":"值班室","square":0}
,{"depart":"安质部","floor":"主楼十五楼","room":"1513.0","name":"安监部","square":0}
,{"depart":"安质部","floor":"主楼十五楼","room":"1515.0","name":"安监部","square":0}
,{"depart":"安质部","floor":"主楼十五楼","room":"1517.0","name":"会议室","square":0}
,{"depart":"安质部","floor":"主楼十五楼","room":"1519.0","name":"安监部","square":0}
,{"depart":"华群物业","floor":"主楼十五楼","room":"1521.0","name":"物业管理处","square":0}
,{"depart":"华群物业","floor":"主楼十五楼","room":"1523.0","name":"直属分部(工程)办公室","square":0}
,{"depart":"党委党建部","floor":"主楼十六楼","room":"1601.0","name":"副主任室 党委宣传部","square":0}
,{"depart":"办公室","floor":"主楼十六楼","room":"1602.0","name":"保密要害部位标准化示范区","square":0}
,{"depart":"综合管理室","floor":"主楼十六楼","room":"1603.0","name":"无门牌","square":0}
,{"depart":"办公室","floor":"主楼十六楼","room":"1605.0","name":"无门牌","square":0}
,{"depart":"办公室","floor":"主楼十六楼","room":"1607.0","name":"无门牌","square":0}
,{"depart":"办公室","floor":"主楼十六楼","room":"1608.0","name":"保密培训测评室","square":0}
,{"depart":"融媒体工作室","floor":"主楼十六楼","room":"1610.0","name":"无门牌","square":0}
,{"depart":"党委党建部","floor":"主楼十六楼","room":"1612.0","name":"无门牌","square":0}
,{"depart":"党委党建部","floor":"主楼十六楼","room":"1612.0","name":"无门牌","square":0}
,{"depart":"办公室","floor":"主楼十六楼","room":"1613.0","name":"无门牌","square":0}
,{"depart":"融媒体工作室","floor":"主楼十六楼","room":"1623.0","name":"融媒体工作室","square":0}
,{"depart":"办公室","floor":"主楼十六楼","room":"1604+1606","name":"保密宣传室项目研究工作室","square":0}
,{"depart":"办公室","floor":"主楼十六楼","room":"1609+1611","name":"保密宣教基地","square":0}
,{"depart":"办公室","floor":"主楼十七楼","room":"1702.0","name":"办公室","square":0}
,{"depart":"党委党建部","floor":"主楼十八楼","room":"1812.0","name":"值班室","square":0}
,{"depart":"原电动汽车公司","floor":"主楼二十楼","room":"2001.0","name":"无门牌","square":0}
,{"depart":"电动汽车公司","floor":"主楼二十楼","room":"2003.0","name":"无门牌","square":0}
,{"depart":"能源服务公司","floor":"主楼二十楼","room":"2004.0","name":"会议室","square":0}
,{"depart":"能源服务公司","floor":"主楼二十楼","room":"2005.0","name":"无门牌","square":0}
,{"depart":"能源服务公司","floor":"主楼二十楼","room":"2006.0","name":"值班室","square":0}
,{"depart":"能源服务公司","floor":"主楼二十楼","room":"2007.0","name":"筹建办","square":0}
,{"depart":"能源服务公司","floor":"主楼二十楼","room":"2008.0","name":"值班室","square":0}
,{"depart":"能源服务公司","floor":"主楼二十楼","room":"2009.0","name":"无门牌","square":0}
,{"depart":"党委党建部","floor":"主楼十八楼","room":"1821.0","name":"无门牌","square":0}
,{"depart":"调度控制中心","floor":"主楼十九楼","room":"1901.0","name":"监控验收调试室","square":0}
,{"depart":"调度控制中心","floor":"主楼十九楼","room":"1902.0","name":"DTS学员室","square":0}
,{"depart":"调度控制中心","floor":"主楼十九楼","room":"1903.0","name":"供电服务指挥中心","square":0}
,{"depart":"调度控制中心","floor":"主楼十九楼","room":"1904.0","name":"DTS教员室","square":0}
,{"depart":"调度控制中心","floor":"主楼十九楼","room":"1905.0","name":"方式计划室","square":0}
,{"depart":"调度控制中心","floor":"主楼十九楼","room":"1906.0","name":"会议室","square":0}
,{"depart":"调度控制中心","floor":"主楼十九楼","room":"1907.0","name":"方式计划室","square":0}
,{"depart":"调度控制中心","floor":"主楼十九楼","room":"1908.0","name":"张明劳模创新工作室","square":0}
,{"depart":"调度控制中心","floor":"主楼十九楼","room":"1909.0","name":"调度二次室","square":0}
,{"depart":"调度控制中心","floor":"主楼十九楼","room":"1910.0","name":"会议室","square":0}
,{"depart":"调度控制中心","floor":"主楼十九楼","room":"1911.0","name":"综合室","square":0}
,{"depart":"调度控制中心","floor":"主楼十九楼","room":"1913.0","name":"供电服务指挥中心","square":0}
,{"depart":"调度控制中心","floor":"主楼十九楼","room":"1915.0","name":"书记室","square":0}
,{"depart":"调度控制中心","floor":"主楼十九楼","room":"1917.0","name":"接待室","square":0}
,{"depart":"调度控制中心","floor":"主楼十九楼","room":"1919.0","name":"主任室","square":0}
,{"depart":"调度控制中心","floor":"主楼十九楼","room":"1921.0","name":"供电服务指挥中心","square":0}
,{"depart":"调度控制中心","floor":"主楼二十楼","room":"2010.0","name":"安全管理指挥中心 应急指挥中心","square":0}
,{"depart":"调度控制中心","floor":"主楼二十楼","room":"2011.0","name":"自动化运维班","square":0}
,{"depart":"调度控制中心","floor":"主楼二十楼","room":"2012.0","name":"自动化运维班","square":0}
,{"depart":"调度控制中心","floor":"主楼二十楼","room":"2013.0","name":"自动化运维班","square":0}
,{"depart":"调度控制中心","floor":"主楼二十楼","room":"2015.0","name":"调度自动化运行维护室","square":0}
,{"depart":"调度控制中心","floor":"主楼二十楼","room":"2017.0","name":"自动化运维班","square":0}
,{"depart":"调度控制中心","floor":"主楼二十楼","room":"2019.0","name":"配网抢修指挥班长室","square":0}
,{"depart":"调度控制中心","floor":"主楼二十楼","room":"2021.0","name":"资料室","square":0}
,{"depart":"调度控制中心","floor":"主楼二十楼","room":"2023.0","name":"职工小家党员活动室","square":0}
,{"depart":"调度控制中心","floor":"主楼二十楼","room":"2025.0","name":"调度自动化开发室","square":0}
,{"depart":"调度控制中心","floor":"主楼二十一楼","room":"2101.0","name":"供电服务指挥中心","square":0}
,{"depart":"调度控制中心","floor":"主楼二十一楼","room":"2102.0","name":"地区电网调控大厅","square":0}
,{"depart":"调度控制中心","floor":"主楼二十一楼","room":"2104.0","name":"配网调控大厅","square":0}
,{"depart":"调度控制中心","floor":"主楼二十一楼","room":"2105.0","name":"配网调控班","square":0}
,{"depart":"调度控制中心","floor":"主楼二十一楼","room":"2106.0","name":"运营检测(控)中心","square":0}
,{"depart":"调度控制中心","floor":"主楼二十一楼","room":"2107.0","name":"配网调控班","square":0}
,{"depart":"调度控制中心","floor":"主楼二十一楼","room":"2109.0","name":"无门牌","square":0}
,{"depart":"调度控制中心","floor":"主楼二十二楼","room":"2201.0","name":"就餐室","square":0}
,{"depart":"调度控制中心","floor":"主楼二十二楼","room":"2202.0","name":"休息室","square":0}
,{"depart":"调度控制中心","floor":"主楼二十二楼","room":"2203.0","name":"休息室","square":0}
,{"depart":"调度控制中心","floor":"主楼二十二楼","room":"2204.0","name":"休息室","square":0}
,{"depart":"调度控制中心","floor":"主楼二十二楼","room":"2205.0","name":"休息室","square":0}
,{"depart":"调度控制中心","floor":"主楼二十二楼","room":"2206.0","name":"气罐间","square":0}
,{"depart":"调度控制中心","floor":"主楼二十二楼","room":"2207.0","name":"休息室","square":0}
,{"depart":"调度控制中心","floor":"主楼二十二楼","room":"2208.0","name":"负控设备间","square":0}
]

View File

@ -0,0 +1,166 @@
[
{"depart":"","floor":"一号楼一楼","room":"101.0","name":"档案室","square":"60.0"}
,{"depart":"","floor":"一号楼一楼","room":"102.0","name":"营业一班办公室","square":"120.0"}
,{"depart":"营销计量室","floor":"一号楼一楼","room":"103.0","name":"低压客户经理三班仓库","square":"40.0"}
,{"depart":"物业","floor":"一号楼一楼","room":"104.0","name":"消控室","square":"32.0"}
,{"depart":"营销计量室","floor":"一号楼一楼","room":"105.0","name":"低压客户经理三班网格化管理分组","square":"40.0"}
,{"depart":"","floor":"一号楼一楼","room":"106.0","name":"低压客户经理三班会议室","square":"55.0"}
,{"depart":"配电运检室","floor":"一号楼一楼","room":"107.0","name":"配电值班生活间","square":"19.0"}
,{"depart":"营销计量室","floor":"一号楼一楼","room":"108.0","name":"低压客户经理三班办公室","square":"103.0"}
,{"depart":"营销市场室","floor":"一号楼二楼","room":"201.0","name":"市场室客户经理三班","square":"41.0"}
,{"depart":"营销营电室","floor":"一号楼二楼","room":"202.0","name":"办公室","square":"63.0"}
,{"depart":"营销市场室","floor":"一号楼二楼","room":"203.0","name":"市场室客户经理三班","square":"150.0"}
,{"depart":"营销营电室","floor":"一号楼二楼","room":"204.0","name":"档案室","square":"75.0"}
,{"depart":"营销部计量室","floor":"一号楼二楼","room":"205.0","name":"低压客户经理三班计量改造组","square":"38.0"}
,{"depart":"","floor":"一号楼二楼","room":"206.0","name":"低压客户经理三班网格化管理分组","square":"75.0"}
,{"depart":"车队","floor":"一号楼二楼","room":"207.0","name":"驾驶二班","square":"19.0"}
,{"depart":"","floor":"一号楼二楼","room":"208.0","name":"驾驶员更衣室","square":"40.0"}
,{"depart":"","floor":"一号楼二楼","room":"209.0","name":"车队文员办公室","square":"19.0"}
,{"depart":"","floor":"一号楼二楼","room":"210.0","name":"驾驶一班","square":"31.0"}
,{"depart":"","floor":"一号楼二楼","room":"211.0","name":"车队调度室","square":"19.0"}
,{"depart":"","floor":"一号楼二楼","room":"212.0","name":"驾驶四班","square":"31.0"}
,{"depart":"","floor":"一号楼二楼","room":"213.0","name":"班长办公室","square":"19.0"}
,{"depart":"","floor":"一号楼二楼","room":"214.0","name":"驾驶三班","square":"31.0"}
,{"depart":"","floor":"一号楼二楼","room":"215.0","name":"安全员办公室","square":"19.0"}
,{"depart":"","floor":"一号楼二楼","room":"216.0","name":"值班室","square":"31.0"}
,{"depart":"变电检修室","floor":"一号楼三楼","room":"301.0","name":"220千伏变电二次检修二班班组","square":"41.0"}
,{"depart":"","floor":"一号楼三楼","room":"302.0","name":"220千伏变电二次检修一班班组","square":"63.0"}
,{"depart":"","floor":"一号楼三楼","room":"303.0","name":"220千伏变电检修一班班组","square":"75.0"}
,{"depart":"","floor":"一号楼三楼","room":"304.0","name":"220千伏变电二次检修一班班组","square":"75.0"}
,{"depart":"","floor":"一号楼三楼","room":"305.0","name":"220千伏变电检修二班班组","square":"75.0"}
,{"depart":"","floor":"一号楼三楼","room":"306.0","name":"220千伏变电二次检修二班班组","square":"75.0"}
,{"depart":"信通","floor":"一号楼三楼","room":"307.0","name":"通信机房","square":"38.0"}
,{"depart":"","floor":"一号楼三楼","room":"308.0","name":"信通库房","square":"16.0"}
,{"depart":"变电检修室","floor":"一号楼三楼","room":"309.0","name":"电力调度控制中心和变电检修室共用备品备件库","square":"96.0"}
,{"depart":"健康服务中心","floor":"一号楼三楼","room":"310.0","name":"医务室","square":"87.0"}
,{"depart":"变电检修室","floor":"一号楼三楼","room":"312.0","name":"专业工作室","square":"63.0"}
,{"depart":"","floor":"一号楼四楼","room":"401.0","name":"检修库房(后勤办公用品)","square":"41.0"}
,{"depart":"","floor":"一号楼四楼","room":"402.0","name":"变电检修一班(资料室)","square":"31.0"}
,{"depart":"","floor":"一号楼四楼","room":"403.0","name":"220千伏变电检修一班资料室","square":"37.0"}
,{"depart":"","floor":"一号楼四楼","room":"404.0","name":"变电二次检修一班(资料室)","square":"31.0"}
,{"depart":"","floor":"一号楼四楼","room":"405.0","name":"220千伏变电二次检修一班资料室","square":"37.0"}
,{"depart":"","floor":"一号楼四楼","room":"406.0","name":"变电检修一班(班组)","square":"75.0"}
,{"depart":"","floor":"一号楼四楼","room":"407.0","name":"220千伏变电检修二班资料室","square":"37.0"}
,{"depart":"","floor":"一号楼四楼","room":"408.0","name":"变电二次检修一班(班组)","square":"75.0"}
,{"depart":"","floor":"一号楼四楼","room":"409.0","name":"220千伏变电二次检修二班资料室","square":"37.0"}
,{"depart":"","floor":"一号楼四楼","room":"410.0","name":"检修库房2后勤办公用品","square":"40.0"}
,{"depart":"","floor":"一号楼四楼","room":"411.0","name":"220千伏变电二次检修一班、二班资料室","square":"38.0"}
,{"depart":"物业","floor":"一号楼四楼","room":"412.0","name":"物业办公室","square":"31.0"}
,{"depart":"物业/车队","floor":"一号楼四楼","room":"413.0","name":"后勤会议室","square":"25.0"}
,{"depart":"物业","floor":"一号楼四楼","room":"414.0","name":"物业办公室","square":"31.0"}
,{"depart":"物业","floor":"一号楼四楼","room":"416.0","name":"物业办公室","square":"31.0"}
,{"depart":"车队","floor":"一号楼四楼","room":"417.0","name":"车队办公室","square":"19.0"}
,{"depart":"物业","floor":"一号楼四楼","room":"418.0","name":"物业办公室","square":"31.0"}
,{"depart":"车队","floor":"一号楼四楼","room":"419.0","name":"车队办公室","square":"19.0"}
,{"depart":"","floor":"一号楼四楼","room":"421.0","name":"车队办公室","square":"19.0"}
,{"depart":"","floor":"一号楼五楼","room":"501.0","name":"配电运检五班报修值班宿舍","square":"20.0"}
,{"depart":"配电运检室","floor":"一号楼五楼","room":"502.0","name":"配电运检五班办公室","square":"63.0"}
,{"depart":"","floor":"一号楼五楼","room":"503.0","name":"配电运检五班报修值班宿舍","square":"20.0"}
,{"depart":"变电检修室","floor":"一号楼五楼","room":"504.0","name":"220千伏电气试验班班组","square":"75.0"}
,{"depart":"配电运检室","floor":"一号楼五楼","room":"505.0","name":"配电运检五班办公室","square":"75.0"}
,{"depart":"变电检修室","floor":"一号楼五楼","room":"506.0","name":"电气试验一班(班组)","square":"75.0"}
,{"depart":"","floor":"一号楼五楼","room":"507.0","name":"220千伏电气试验班资料室","square":"37.0"}
,{"depart":"配电运检室","floor":"一号楼五楼","room":"508.0","name":"配电运检五班库房","square":"40.0"}
,{"depart":"变电检修室","floor":"一号楼五楼","room":"509.0","name":"电气试验一班(资料室)","square":"37.0"}
,{"depart":"配电运检室","floor":"一号楼五楼","room":"510.0","name":"配电优质服务工作站办公室","square":"31.0"}
,{"depart":"变电检修室","floor":"一号楼五楼","room":"511.0","name":"项目组(专职办公室)","square":"38.0"}
,{"depart":"配电运检室","floor":"一号楼五楼","room":"512.0","name":"配电优质服务工作站办公室","square":"31.0"}
,{"depart":"变电检修室","floor":"一号楼五楼","room":"513.0","name":"变电检修室信息库房","square":"19.0"}
,{"depart":"配电运检室","floor":"一号楼五楼","room":"514.0","name":"配电优质服务工作站办公室","square":"31.0"}
,{"depart":"","floor":"一号楼五楼","room":"516.0","name":"配电优质服务工作站库房","square":"31.0"}
,{"depart":"变电运维室","floor":"一号楼五楼辅楼","room":"无","name":"集控站机房","square":"96.0"}
,{"depart":"","floor":"一号楼六楼主楼","room":"无","name":"集控站监控大厅","square":"150.0"}
,{"depart":"","floor":"一号楼六楼主楼","room":"无","name":"集控站办公室","square":"38.0"}
,{"depart":"","floor":"一号楼六楼主楼","room":"无","name":"集控站宿舍","square":"20.0"}
,{"depart":"","floor":"一号楼六楼主楼","room":"无","name":"集控站宿舍","square":"20.0"}
,{"depart":"输电运检室","floor":"一号楼六楼主楼","room":"无","name":"输电智能监控中心","square":"213.0"}
,{"depart":"","floor":"一号楼六楼辅楼","room":"610.0","name":"会议室","square":"86.0"}
,{"depart":"","floor":"一号楼六楼辅楼","room":"无","name":"党员活动室","square":"80.0"}
,{"depart":"","floor":"一号楼六楼辅楼","room":"615.0","name":"专职办公室","square":"19.0"}
,{"depart":"","floor":"一号楼六楼辅楼","room":"617.0","name":"档案室","square":"38.0"}
,{"depart":"","floor":"一号楼六楼辅楼","room":"无","name":"档案室","square":"38.0"}
,{"depart":"","floor":"一号楼七楼","room":"701.0","name":"会议室","square":"30.0"}
,{"depart":"","floor":"一号楼七楼","room":"702.0","name":"主任、书记室","square":"23.0"}
,{"depart":"","floor":"一号楼七楼","room":"703.0","name":"专职办公室","square":"11.0"}
,{"depart":"","floor":"一号楼七楼","room":"704.0","name":"副主任室","square":"23.0"}
,{"depart":"","floor":"一号楼七楼","room":"705.0","name":"专职办公室","square":"75.0"}
,{"depart":"市公司","floor":"一号楼七楼","room":"706.0","name":"档案室","square":"75.0"}
,{"depart":"输电运检室","floor":"一号楼七楼","room":"707.0","name":"专职办公室","square":"75.0"}
,{"depart":"市公司","floor":"一号楼七楼","room":"708.0","name":"档案室","square":"75.0"}
,{"depart":"信通","floor":"一号楼七楼","room":"709.0","name":"通信机房","square":"38.0"}
,{"depart":"输电运检室","floor":"一号楼八楼","room":"801.0","name":"输电运检二班更衣室","square":"20.0"}
,{"depart":"","floor":"一号楼八楼","room":"802.0","name":"输电运检六班更衣室","square":"31.0"}
,{"depart":"","floor":"一号楼八楼","room":"803.0","name":"输电带电班更衣室","square":"20.0"}
,{"depart":"","floor":"一号楼八楼","room":"804.0","name":"输电运检一班更衣室","square":"31.0"}
,{"depart":"","floor":"一号楼八楼","room":"805.0","name":"输电带电作业班","square":"75.0"}
,{"depart":"","floor":"一号楼八楼","room":"806.0","name":"输电运检六班","square":"75.0"}
,{"depart":"","floor":"一号楼八楼","room":"807.0","name":"输电运检二班","square":"75.0"}
,{"depart":"","floor":"一号楼八楼","room":"808.0","name":"输电运检一班","square":"75.0"}
,{"depart":"","floor":"一号楼八楼","room":"809.0","name":"无人机工作室","square":"38.0"}
,{"depart":"变电检修室","floor":"一号楼九楼","room":"901.0","name":"陈恒祥技师工作室","square":"41.0"}
,{"depart":"","floor":"一号楼九楼","room":"902.0","name":"变电二次检修二班(资料室)","square":"31.0"}
,{"depart":"","floor":"一号楼九楼","room":"903.0","name":"备用","square":"85.0"}
,{"depart":"","floor":"一号楼九楼","room":"904.0","name":"变电检修二班(资料室)","square":"31.0"}
,{"depart":"","floor":"一号楼九楼","room":"905.0","name":"变电检修二班(班组)","square":"85.0"}
,{"depart":"","floor":"一号楼九楼","room":"906.0","name":"项目组(资料室)","square":"85.0"}
,{"depart":"","floor":"一号楼九楼","room":"907.0","name":"远程运维中心","square":"38.0"}
,{"depart":"","floor":"一号楼九楼","room":"908.0","name":"变电二次检修二班(班组)","square":"85.0"}
,{"depart":"","floor":"一号楼十楼","room":"1001.0","name":"设备组(专职办公室)","square":"41.0"}
,{"depart":"","floor":"一号楼十楼","room":"1002.0","name":"党员活动室","square":"63.0"}
,{"depart":"","floor":"一号楼十楼","room":"1003.0","name":"项目组、设备组(专职办公室)","square":"85.0"}
,{"depart":"","floor":"一号楼十楼","room":"1004.0","name":"安全组(专职办公室)","square":"85.0"}
,{"depart":"","floor":"一号楼十楼","room":"1005.0","name":"计划组(专职办公室)","square":"85.0"}
,{"depart":"","floor":"一号楼十楼","room":"1006.0","name":"计划组(专职办公室)","square":"85.0"}
,{"depart":"","floor":"一号楼十楼","room":"1007.0","name":"综合组(计算机等信息库房)","square":"38.0"}
,{"depart":"","floor":"一号楼十一楼","room":"1101.0","name":"会议室","square":"28.0"}
,{"depart":"","floor":"一号楼十一楼","room":"1102.0","name":"主任办公室","square":"24.0"}
,{"depart":"","floor":"一号楼十一楼","room":"1103.0","name":"电视电话会议室","square":"112.0"}
,{"depart":"","floor":"一号楼十一楼","room":"1104.0","name":"书记办公室","square":"24.0"}
,{"depart":"","floor":"一号楼十一楼","room":"1105.0","name":"综合组(专职办公室)","square":"112.0"}
,{"depart":"","floor":"一号楼十一楼","room":"1106.0","name":"副主任办公室","square":"24.0"}
,{"depart":"","floor":"一号楼十一楼","room":"1107.0","name":"职工服务站","square":"19.0"}
,{"depart":"","floor":"一号楼十一楼","room":"1108.0","name":"副主任办公室","square":"24.0"}
,{"depart":"","floor":"一号楼十一楼","room":"1110.0","name":"值班室","square":"32.0"}
,{"depart":"","floor":"一号楼十一楼","room":"1112.0","name":"综合组(专职办公室)","square":"32.0"}
,{"depart":"工会","floor":"一号楼十二楼","room":"无","name":"职工健身服务站","square":"248.0"}
,{"depart":"","floor":"一号楼十二楼","room":"无","name":"母婴服务站","square":"10.0"}
,{"depart":"","floor":"一号楼十二楼","room":"无","name":"职工图书服务站","square":"19.0"}
,{"depart":"","floor":"一号楼十二楼","room":"1201.0","name":"器材健身房","square":"28.0"}
,{"depart":"","floor":"一号楼十二楼","room":"1202.0","name":"瑜伽室","square":"63.0"}
,{"depart":"变电运维室","floor":"二号楼一楼","room":"101.0","name":"培训室","square":"54.0"}
,{"depart":"","floor":"二号楼一楼","room":"102.0","name":"活动室","square":"45.0"}
,{"depart":"","floor":"二号楼一楼","room":"103.0","name":"资料室","square":"27.0"}
,{"depart":"","floor":"二号楼二楼","room":"202.0","name":"专职办公室","square":"12.0"}
,{"depart":"","floor":"二号楼二楼","room":"203.0","name":"专职办公室","square":"27.0"}
,{"depart":"","floor":"二号楼二楼","room":"206.0","name":"会议室","square":"27.0"}
,{"depart":"","floor":"二号楼三楼","room":"301.0","name":"专职办公室","square":"27.0"}
,{"depart":"","floor":"二号楼三楼","room":"302.0","name":"机房","square":"12.0"}
,{"depart":"","floor":"二号楼三楼","room":"303.0","name":"专职办公室","square":"24.0"}
,{"depart":"","floor":"二号楼三楼","room":"304.0","name":"专职办公室","square":"12.0"}
,{"depart":"","floor":"二号楼三楼","room":"305.0","name":"专职办公室","square":"24.0"}
,{"depart":"","floor":"二号楼三楼","room":"306.0","name":"专职办公室","square":"27.0"}
,{"depart":"","floor":"二号楼三楼","room":"307.0","name":"专职办公室","square":"27.0"}
,{"depart":"","floor":"二号楼四楼","room":"401.0","name":"专职办公室","square":"27.0"}
,{"depart":"","floor":"二号楼四楼","room":"402.0","name":"专职办公室","square":"12.0"}
,{"depart":"","floor":"二号楼四楼","room":"403.0","name":"会议室","square":"24.0"}
,{"depart":"","floor":"二号楼四楼","room":"404.0","name":"专职办公室","square":"12.0"}
,{"depart":"","floor":"二号楼四楼","room":"405.0","name":"专职办公室","square":"24.0"}
,{"depart":"","floor":"二号楼四楼","room":"406.0","name":"专职办公室","square":"27.0"}
,{"depart":"","floor":"二号楼四楼","room":"407.0","name":"专职办公室","square":"27.0"}
,{"depart":"","floor":"二号楼五楼","room":"501.0","name":"副主任室","square":"22.0"}
,{"depart":"","floor":"二号楼五楼","room":"502.0","name":"专职办公室","square":"12.0"}
,{"depart":"","floor":"二号楼五楼","room":"503.0","name":"主任、副主任室","square":"17.0"}
,{"depart":"","floor":"二号楼五楼","room":"504.0","name":"副主任室","square":"12.0"}
,{"depart":"","floor":"二号楼五楼","room":"505.0","name":"备用","square":"24.0"}
,{"depart":"","floor":"二号楼五楼","room":"506.0","name":"专职办公室","square":"27.0"}
,{"depart":"","floor":"二号楼五楼","room":"507.0","name":"党员活动室","square":"27.0"}
,{"depart":"","floor":"二号楼六楼","room":"601.0","name":"会议室","square":"97.0"}
,{"depart":"","floor":"二号楼六楼","room":"602.0","name":"备品室","square":"38.0"}
,{"depart":"","floor":"二号楼六楼","room":"603.0","name":"官金兴技师工作室","square":"35.0"}
,{"depart":"","floor":"二号楼六楼","room":"604.0","name":"音响室","square":"12.0"}
,{"depart":"车队","floor":"三号楼二楼","room":"无","name":"24小时值班室","square":"30.0"}
,{"depart":"","floor":"三号楼二楼","room":"无","name":"驾驶五班办公室","square":"25.0"}
,{"depart":"","floor":"三号楼二楼","room":"无","name":"值班室","square":"12.0"}
,{"depart":"","floor":"三号楼二楼","room":"无","name":"驾驶五班办公室","square":"16.0"}
,{"depart":"","floor":"三号楼二楼","room":"无","name":"驾驶五班办公室","square":"28.0"}
]

View File

@ -0,0 +1,105 @@
[
{"depart":"营电室","floor":"1.0","room":"101.0","name":"营业厅","square":"280.0"}
,{"depart":"营电室","floor":"1.0","room":"102.0","name":"营业厅班VIP室","square":"86.0"}
,{"depart":"营电室","floor":"1.0","room":"103.0","name":"电费票据仓库","square":"96.0"}
,{"depart":"营电室","floor":"2.0","room":"201.0","name":"电费核算一班","square":"150.0"}
,{"depart":"营电室","floor":"2.0","room":"202.0","name":"电费核算一班仓库","square":"100.0"}
,{"depart":"营电室","floor":"2.0","room":"203.0","name":"电费核算一班","square":"30.0"}
,{"depart":"营电室","floor":"2.0","room":"204.0","name":"电费核算一班","square":"30.0"}
,{"depart":"营电室","floor":"2.0","room":"205.0","name":"仓库","square":"20.0"}
,{"depart":"低压运检班","floor":"3.0","room":"301.0","name":"低压办公室","square":"12.0"}
,{"depart":"营电室","floor":"3.0","room":"302.0","name":"营电室","square":"60.0"}
,{"depart":"信通机房","floor":"3.0","room":"303.0","name":"信通机房","square":"100.0"}
,{"depart":"低压运检班","floor":"3.0","room":"304.0","name":"低压运检班","square":"40.0"}
,{"depart":"低压运检班","floor":"3.0","room":"305.0","name":"低压运检班办公室","square":"200.0"}
,{"depart":"营电室","floor":"4.0","room":"401.0","name":"电费财务班","square":"12.0"}
,{"depart":"营电室","floor":"4.0","room":"402.404","name":"健身房","square":"60.0"}
,{"depart":"营电室","floor":"4.0","room":"403.0","name":"电费财务班","square":"30.0"}
,{"depart":"营电室","floor":"4.0","room":"405.0","name":"电费财务班","square":"30.0"}
,{"depart":"营电室","floor":"4.0","room":"406.0","name":"电费财务班","square":"30.0"}
,{"depart":"营电室","floor":"4.0","room":"407.0","name":"电费财务班","square":"30.0"}
,{"depart":"营电室","floor":"4.0","room":"408.0","name":"电费财务班","square":"15.0"}
,{"depart":"营电室","floor":"4.0","room":"409.0","name":"电费财务班","square":"48.0"}
,{"depart":"营电室","floor":"4.0","room":"410.0","name":"电费财务班","square":"48.0"}
,{"depart":"营电室","floor":"4.0","room":"411.0","name":"电费财务班仓库","square":"64.0"}
,{"depart":"营电室","floor":"5.0","room":"501.0","name":"党建室资料室","square":"12.0"}
,{"depart":"营电室","floor":"5.0","room":"502.0","name":"党建活动室","square":"100.0"}
,{"depart":"营电室","floor":"5.0","room":"503.0","name":"核算二班","square":"40.0"}
,{"depart":"营电室","floor":"5.0","room":"504.0","name":"核算二班/一班","square":"200.0"}
,{"depart":"营电室","floor":"5.0","room":"505.0","name":"核算一班","square":"20.0"}
,{"depart":"营电室","floor":"6.0","room":"601.0","name":"办公室","square":"12.0"}
,{"depart":"营电室","floor":"6.0","room":"602.0","name":"办公室","square":"100.0"}
,{"depart":"营电室","floor":"6.0","room":"603.0","name":"办公室","square":"50.0"}
,{"depart":"营电室","floor":"6.0","room":"604.0","name":"会议室","square":"100.0"}
,{"depart":"营电室","floor":"6.0","room":"605.0","name":"仓库","square":"40.0"}
,{"depart":"营电室","floor":"6.0","room":"606.0","name":"副主任室","square":"8.0"}
,{"depart":"营电室","floor":"6.0","room":"607.0","name":"书记室","square":"8.0"}
,{"depart":"营电室","floor":"6.0","room":"608.0","name":"主任室","square":"8.0"}
,{"depart":"营电室","floor":"6.0","room":"609.0","name":"副主任室","square":"8.0"}
,{"depart":"营电室","floor":"6.0","room":"610.0","name":"专职办","square":"20.0"}
,{"depart":"营电室","floor":"7.0","room":"701.0","name":"大会议室","square":"240.0"}
,{"depart":"物业班组","floor":"7.0","room":"702.0","name":"保洁休息室","square":"15.0"}
,{"depart":"物业班组","floor":"7.0","room":"703.0","name":"保洁休息室","square":"15.0"}
,{"depart":"物业班组","floor":"7.0","room":"704.0","name":"物业仓库","square":"30.0"}
,{"depart":"物业班组","floor":"7.0","room":"705.0","name":"物业办公室","square":"12.0"}
,{"depart":"营电室","floor":"7.0","room":"706.0","name":"营电室仓库","square":"40.0"}
,{"depart":"配电运检室","floor":"辅楼4楼","room":"401.0","name":"库房","square":"30.0"}
,{"depart":"配电运检室","floor":"辅楼4楼","room":"402.0","name":"办公室","square":"30.0"}
,{"depart":"配电运检室","floor":"辅楼4楼","room":"403.0","name":"库房","square":"24.0"}
,{"depart":"配电运检室","floor":"辅楼4楼","room":"404.0","name":"宿舍","square":"20.0"}
,{"depart":"配电运检室","floor":"辅楼4楼","room":"405.0","name":"会议室","square":"24.0"}
,{"depart":"配电运检室","floor":"辅楼4楼","room":"406.0","name":"办公室","square":"40.0"}
,{"depart":"配电运检室","floor":"辅楼4楼","room":"407.0","name":"办公室","square":"20.0"}
,{"depart":"配电运检室","floor":"辅楼4楼","room":"408.0","name":"办公室","square":"24.0"}
,{"depart":"配电运检室","floor":"辅楼4楼","room":"409.0","name":"宿舍","square":"20.0"}
,{"depart":"配电运检室","floor":"辅楼4楼","room":"410.0","name":"宿舍","square":"24.0"}
,{"depart":"配电运检室","floor":"辅楼4楼","room":"411.0","name":"宿舍","square":"20.0"}
,{"depart":"配电运检室","floor":"辅楼4楼","room":"412.0","name":"宿舍","square":"24.0"}
,{"depart":"配电运检室","floor":"辅楼4楼","room":"413.0","name":"宿舍","square":"20.0"}
,{"depart":"配电运检室","floor":"辅楼4楼","room":"414.0","name":"宿舍","square":"24.0"}
,{"depart":"营电室","floor":"辅楼4楼","room":"415.0","name":"库房","square":"20.0"}
,{"depart":"营电室","floor":"辅楼4楼","room":"416.0","name":"办公室","square":"24.0"}
,{"depart":"汽车公司驾驶班","floor":"辅楼3F","room":"301.0","name":"会议室","square":"32.0"}
,{"depart":"汽车公司驾驶班","floor":"辅楼3F","room":"302.0","name":"驾驶班调度室","square":"24.0"}
,{"depart":"汽车公司驾驶班","floor":"辅楼3F","room":"303.0","name":"副经理室","square":"24.0"}
,{"depart":"汽车公司驾驶班","floor":"辅楼3F","room":"304.0","name":"车队值班室","square":"40.0"}
,{"depart":"汽车公司驾驶班","floor":"辅楼3F","room":"305.0","name":"车队办公室","square":"48.0"}
,{"depart":"汽车公司驾驶班","floor":"辅楼3F","room":"306.0","name":"驾驶一班","square":"20.0"}
,{"depart":"汽车公司驾驶班","floor":"辅楼3F","room":"307.0","name":"驾驶二班","square":"24.0"}
,{"depart":"汽车公司驾驶班","floor":"辅楼3F","room":"308.0","name":"驾驶三班","square":"20.0"}
,{"depart":"汽车公司驾驶班","floor":"辅楼3F","room":"309.0","name":"驾驶三班","square":"24.0"}
,{"depart":"汽车公司驾驶班","floor":"辅楼3F","room":"310.0","name":"驾驶四班","square":"20.0"}
,{"depart":"汽车公司驾驶班","floor":"辅楼3F","room":"311.0","name":"驾驶四班","square":"24.0"}
,{"depart":"汽车公司驾驶班","floor":"辅楼3F","room":"312.0","name":"休息室","square":"20.0"}
,{"depart":"营电室","floor":"辅楼3F","room":"313.0","name":"办公室","square":"24.0"}
,{"depart":"营电室","floor":"辅楼3F","room":"314.0","name":"办公室","square":"20.0"}
,{"depart":"营电室","floor":"辅楼3F","room":"315.0","name":"办公室","square":"24.0"}
,{"depart":"营电室","floor":"辅楼2F","room":"201.0","name":"办公室","square":"32.0"}
,{"depart":"营电室","floor":"辅楼2F","room":"202.0","name":"办公室","square":"24.0"}
,{"depart":"营电室","floor":"辅楼2F","room":"203.0","name":"办公室","square":"24.0"}
,{"depart":"营电室","floor":"辅楼2F","room":"204.0","name":"办公室","square":"40.0"}
,{"depart":"营电室","floor":"辅楼2F","room":"205.0","name":"办公室","square":"24.0"}
,{"depart":"营电室","floor":"辅楼2F","room":"206.0","name":"办公室","square":"24.0"}
,{"depart":"营电室","floor":"辅楼2F","room":"207.0","name":"办公室","square":"24.0"}
,{"depart":"营电室","floor":"辅楼2F","room":"208.0","name":"办公室","square":"24.0"}
,{"depart":"营电室","floor":"辅楼2F","room":"209.0","name":"办公室","square":"24.0"}
,{"depart":"营电室","floor":"辅楼2F","room":"210.0","name":"办公室","square":"20.0"}
,{"depart":"营电室","floor":"辅楼2F","room":"211.0","name":"办公室","square":"24.0"}
,{"depart":"营电室","floor":"辅楼2F","room":"212.0","name":"办公室","square":"24.0"}
,{"depart":"营电室","floor":"辅楼2F","room":"213.0","name":"办公室","square":"24.0"}
,{"depart":"营电室","floor":"辅楼2F","room":"214.0","name":"办公室","square":"24.0"}
,{"depart":"营电室","floor":"辅楼2F","room":"215.0","name":"办公室","square":"32.0"}
,{"depart":"食堂","floor":"辅楼1F","room":"辅-1","name":"配菜间","square":"45.0"}
,{"depart":"食堂","floor":"辅楼1F","room":"辅-1","name":"操作间","square":"50.0"}
,{"depart":"食堂","floor":"辅楼1F","room":"辅-1","name":"用餐间","square":"200.0"}
,{"depart":"食堂","floor":"辅楼1F","room":"辅-1","name":"洗碗间","square":"50.0"}
,{"depart":"食堂","floor":"辅楼1F","room":"辅-1","name":"面点间","square":"50.0"}
,{"depart":"食堂","floor":"辅楼1F","room":"辅-1","name":"火房","square":"80.0"}
,{"depart":"食堂","floor":"辅楼1F","room":"辅-1","name":"办公室","square":"15.0"}
,{"depart":"食堂","floor":"辅楼1F","room":"辅-1","name":"大库房","square":"30.0"}
,{"depart":"食堂","floor":"辅楼1F","room":"辅-1","name":"小库房","square":"20.0"}
,{"depart":"食堂","floor":"辅楼1F","room":"辅-1","name":"更衣室","square":"15.0"}
,{"depart":"物业班组","floor":"辅楼1F","room":"辅-1","name":"配电房","square":"30.0"}
,{"depart":"物业班组","floor":"辅楼1F","room":"辅-1","name":"应急仓库","square":"30.0"}
,{"depart":"配电运检室","floor":"辅楼1楼","room":"无门号","name":"工器具房","square":"30.0"}
]

View File

@ -0,0 +1,123 @@
[
{"depart":"栖霞物业","floor":"12.0","room":"1201.0","name":"仓库","square":0}
,{"depart":"栖霞物业","floor":"12.0","room":"1202.0","name":"配电运行班","square":0}
,{"depart":"栖霞物业","floor":"12.0","room":"1203.0","name":"物业经理室","square":0}
,{"depart":"栖霞物业","floor":"12.0","room":"1204.0","name":"物业办公室","square":0}
,{"depart":"车队","floor":"12.0","room":"1205.0","name":"设备机房","square":0}
,{"depart":"车队","floor":"12.0","room":"1206.0","name":"车辆高度室","square":0}
,{"depart":"车队","floor":"12.0","room":"1207.0","name":"车队经理室","square":0}
,{"depart":"车队","floor":"12.0","room":"1209.0","name":"驾驶班","square":0}
,{"depart":"栖霞物业","floor":"12.0","room":"1210.0","name":"物业仓库","square":0}
,{"depart":"车队","floor":"12.0","room":"1211.0","name":"安全学习室","square":0}
,{"depart":"设计院","floor":"11.0","room":"1101.0","name":"多功能厅","square":0}
,{"depart":"设计院","floor":"11.0","room":"1102.0","name":"电视电话室","square":0}
,{"depart":"配电抢修班","floor":"11.0","room":"1103.0","name":"配电抢修班","square":0}
,{"depart":"配电抢修班","floor":"11.0","room":"1104.0","name":"配电抢修班","square":0}
,{"depart":"配电抢修班","floor":"11.0","room":"1105.0","name":"设备机房","square":0}
,{"depart":"配电抢修班","floor":"11.0","room":"1106.0","name":"抢修班休息室","square":0}
,{"depart":"配电抢修班","floor":"11.0","room":"1107.0","name":"抢修班休息室","square":0}
,{"depart":"信通公司","floor":"10.0","room":"1001.0","name":"信通实训室","square":0}
,{"depart":"信通公司","floor":"10.0","room":"1002.0","name":"防疫隔离室","square":0}
,{"depart":"信通公司","floor":"10.0","room":"1003.0","name":"应急值班休息室","square":0}
,{"depart":"信通公司","floor":"10.0","room":"1004.0","name":"公共设备室","square":0}
,{"depart":"","floor":"10.0","room":"1005.0","name":"无","square":0}
,{"depart":"","floor":"10.0","room":"1006.0","name":"无","square":0}
,{"depart":"信通公司","floor":"10.0","room":"1008.0","name":"无线专网运维室","square":0}
,{"depart":"信通公司","floor":"10.0","room":"1009.0","name":"5186服务中心","square":0}
,{"depart":"信通公司","floor":"10.0","room":"1010.0","name":"5186前台接待","square":0}
,{"depart":"苏逸公司","floor":"9.0","room":"901.0","name":"小会议室","square":0}
,{"depart":"苏逸公司","floor":"9.0","room":"902.0","name":"综合事务部","square":0}
,{"depart":"苏逸公司","floor":"9.0","room":"903.0","name":"公司领导","square":0}
,{"depart":"苏逸公司","floor":"9.0","room":"904.0","name":"接待室","square":0}
,{"depart":"苏逸公司","floor":"9.0","room":"905.0","name":"公共设备室","square":0}
,{"depart":"苏逸公司","floor":"9.0","room":"906.0","name":"会议室","square":0}
,{"depart":"苏逸公司","floor":"9.0","room":"907.0","name":"设备机房","square":0}
,{"depart":"苏逸公司","floor":"9.0","room":"908.0","name":"智能运维班","square":0}
,{"depart":"苏逸公司","floor":"9.0","room":"909.0","name":"智能运维班","square":0}
,{"depart":"苏逸公司","floor":"9.0","room":"910.0","name":"业务室","square":0}
,{"depart":"苏逸公司","floor":"9.0","room":"911.0","name":"业务室","square":0}
,{"depart":"苏逸公司","floor":"9.0","room":"912.0","name":"市场室","square":0}
,{"depart":"苏逸公司","floor":"9.0","room":"913.0","name":"市场室","square":0}
,{"depart":"配电部","floor":"8.0","room":"801.0","name":"打印室","square":0}
,{"depart":"配电部","floor":"8.0","room":"802.0","name":"培训室","square":0}
,{"depart":"配电部","floor":"8.0","room":"803.0","name":"茶水间","square":0}
,{"depart":"配电部","floor":"8.0","room":"804.0","name":"配电四室","square":0}
,{"depart":"配电部","floor":"8.0","room":"805.0","name":"设备机房","square":0}
,{"depart":"配电部","floor":"8.0","room":"806.0","name":"配电三室","square":0}
,{"depart":"配电部","floor":"8.0","room":"807.0","name":"配电一室","square":0}
,{"depart":"配电部","floor":"8.0","room":"808.0","name":"配电二室","square":0}
,{"depart":"计量部","floor":"7.0","room":"702.0","name":"低压客户一班","square":0}
,{"depart":"计量部","floor":"7.0","room":"703.0","name":"设备室","square":0}
,{"depart":"计量部","floor":"7.0","room":"704.0","name":"会议室","square":0}
,{"depart":"计量部","floor":"7.0","room":"705.0","name":"经理室","square":0}
,{"depart":"计量部","floor":"7.0","room":"706.0","name":"经理室","square":0}
,{"depart":"计量部","floor":"7.0","room":"707.0","name":"经理室","square":0}
,{"depart":"计量部","floor":"7.0","room":"708.0","name":"经理室","square":0}
,{"depart":"营销部","floor":"6.0","room":"601.0","name":"系统室","square":0}
,{"depart":"营销部","floor":"6.0","room":"602.0","name":"配电室(一)","square":0}
,{"depart":"营销部","floor":"6.0","room":"603.0","name":"茶水间","square":0}
,{"depart":"营销部","floor":"6.0","room":"604.0","name":"会议室","square":0}
,{"depart":"营销部","floor":"6.0","room":"605.0","name":"工具间","square":0}
,{"depart":"营销部","floor":"6.0","room":"606.0","name":"设备室","square":0}
,{"depart":"营销部","floor":"6.0","room":"607.0","name":"营业及电费营业三班","square":0}
,{"depart":"营销部","floor":"6.0","room":"608.0","name":"营业及电费营业三班","square":0}
,{"depart":"设计院","floor":"5.0","room":"机房","name":"","square":0}
,{"depart":"设计院","floor":"5.0","room":"配电房","name":"","square":0}
,{"depart":"设计院","floor":"4.0","room":"401.0","name":"三维设计中心","square":0}
,{"depart":"设计院","floor":"4.0","room":"402.0","name":"党员活动室","square":0}
,{"depart":"营销部","floor":"4.0","room":"403.0","name":"营销档案室","square":0}
,{"depart":"设计院","floor":"4.0","room":"404.0","name":"设备室","square":0}
,{"depart":"设计院","floor":"4.0","room":"405.0","name":"创新工作室","square":0}
,{"depart":"设计院","floor":"3.0","room":"301.0","name":"副总经理室","square":0}
,{"depart":"设计院","floor":"3.0","room":"302.0","name":"党总支书记室","square":0}
,{"depart":"设计院","floor":"3.0","room":"303.0","name":"总经理室","square":0}
,{"depart":"设计院","floor":"3.0","room":"304.0","name":"会议室","square":0}
,{"depart":"设计院","floor":"3.0","room":"305.0","name":"副总经理室","square":0}
,{"depart":"设计院","floor":"3.0","room":"306.0","name":"副总经理室","square":0}
,{"depart":"设计院","floor":"3.0","room":"307.0","name":"室客室","square":0}
,{"depart":"设计院","floor":"3.0","room":"308.0","name":"茶水间","square":0}
,{"depart":"设计院","floor":"3.0","room":"309.0","name":"会议室","square":0}
,{"depart":"设计院","floor":"3.0","room":"310.0","name":"设备室","square":0}
,{"depart":"设计院","floor":"3.0","room":"311.0","name":"文印室","square":0}
,{"depart":"设计院","floor":"3.0","room":"312.0","name":"变电二次室","square":0}
,{"depart":"设计院","floor":"3.0","room":"313.0","name":"土建室","square":0}
,{"depart":"设计院","floor":"3.0","room":"314.0","name":"变电一次室","square":0}
,{"depart":"设计院","floor":"3.0","room":"315.0","name":"会议室","square":0}
,{"depart":"设计院","floor":"3.0","room":"316.0","name":"综合室","square":0}
,{"depart":"设计院","floor":"3.0","room":"317.0","name":"接待室","square":0}
,{"depart":"设计院","floor":"3.0","room":"318.0","name":"综合室(二)","square":0}
,{"depart":"设计院","floor":"3.0","room":"319.0","name":"协理员室","square":0}
,{"depart":"设计院","floor":"3.0","room":"320.0","name":"综合设计室","square":0}
,{"depart":"栖霞物业","floor":"3.0","room":"321.0","name":"洗衣室","square":0}
,{"depart":"设计院","floor":"3.0","room":"322.0","name":"乒乓球室","square":0}
,{"depart":"设计院","floor":"3.0","room":"323.0","name":"健身器材室","square":0}
,{"depart":"设计院","floor":"3.0","room":"324.0","name":"瑜伽室","square":0}
,{"depart":"设计院","floor":"3.0","room":"325.0","name":"设备室","square":0}
,{"depart":"设计院","floor":"3.0","room":"326.0","name":"乒乓球室","square":0}
,{"depart":"设计院","floor":"3.0","room":"327.0","name":"医务室","square":0}
,{"depart":"设计院","floor":"3.0","room":"328.0","name":"母婴室","square":0}
,{"depart":"设计院","floor":"2.0","room":"201.0","name":"技经室","square":0}
,{"depart":"设计院","floor":"2.0","room":"202.0","name":"茶水间","square":0}
,{"depart":"设计院","floor":"2.0","room":"203.0","name":"会议室","square":0}
,{"depart":"设计院","floor":"2.0","room":"204.0","name":"设备室","square":0}
,{"depart":"设计院","floor":"2.0","room":"205.0","name":"文印室","square":0}
,{"depart":"设计院","floor":"2.0","room":"206.0","name":"线路室","square":0}
,{"depart":"设计院","floor":"2.0","room":"207.0","name":"经营设计室","square":0}
,{"depart":"设计院","floor":"2.0","room":"208.0","name":"会议室","square":0}
,{"depart":"设计院","floor":"2.0","room":"209.0","name":"工具间","square":0}
,{"depart":"设计院","floor":"2.0","room":"210.0","name":"配电室(三)","square":0}
,{"depart":"设计院","floor":"2.0","room":"211.0","name":"技术质量室","square":0}
,{"depart":"栖霞物业部","floor":"2.0","room":"","name":"餐厅","square":0}
,{"depart":"栖霞物业部","floor":"1.0","room":"1001.0","name":"监控室","square":0}
,{"depart":"栖霞物业部","floor":"1.0","room":"101.0","name":"消防控制室","square":0}
,{"depart":"设计院","floor":"1.0","room":"102.0","name":"经营设计室","square":0}
,{"depart":"设计院","floor":"1.0","room":"103.0","name":"茶水间","square":0}
,{"depart":"设计院","floor":"1.0","room":"104.0","name":"废旧暂放室","square":0}
,{"depart":"设计院","floor":"1.0","room":"105.0","name":"业务洽谈室","square":0}
,{"depart":"设计院","floor":"1.0","room":"106.0","name":"图书资料室","square":0}
,{"depart":"设计院","floor":"1.0","room":"107.0","name":"印制工作间","square":0}
,{"depart":"设计院","floor":"1.0","room":"108.0","name":"综合室(三)","square":0}
,{"depart":"设计院","floor":"1.0","room":"109.0","name":"设备室","square":0}
,{"depart":"设计院","floor":"1.0","room":"110.0","name":"档案室","square":0}
,{"depart":"营业营销部","floor":"1.0","room":"无房号","name":"电费营业办公室","square":0}
]

View File

@ -0,0 +1,39 @@
[
{"depart":"1.0","floor":"20.0","room":"1.0","name":"101.0","square":0}
,{"depart":"2.0","floor":"","room":"1.0","name":"102.0","square":0}
,{"depart":"3.0","floor":"","room":"1.0","name":"103.0","square":0}
,{"depart":"4.0","floor":"","room":"1.0","name":"104.0","square":0}
,{"depart":"5.0","floor":"","room":"1.0","name":"","square":0}
,{"depart":"6.0","floor":"","room":"1.0","name":"","square":0}
,{"depart":"7.0","floor":"","room":"2.0","name":"201.0","square":0}
,{"depart":"8.0","floor":"","room":"2.0","name":"202.0","square":0}
,{"depart":"9.0","floor":"","room":"2.0","name":"203.0","square":0}
,{"depart":"10.0","floor":"","room":"2.0","name":"204.0","square":0}
,{"depart":"11.0","floor":"","room":"2.0","name":"205.0","square":0}
,{"depart":"12.0","floor":"","room":"2.0","name":"209.0","square":0}
,{"depart":"13.0","floor":"","room":"2.0","name":"210.0","square":0}
,{"depart":"14.0","floor":"","room":"3.0","name":"301.0","square":0}
,{"depart":"15.0","floor":"","room":"3.0","name":"302.0","square":0}
,{"depart":"16.0","floor":"","room":"3.0","name":"303.0","square":0}
,{"depart":"17.0","floor":"","room":"3.0","name":"304.0","square":0}
,{"depart":"18.0","floor":"","room":"3.0","name":"305.0","square":0}
,{"depart":"19.0","floor":"","room":"3.0","name":"306.0","square":0}
,{"depart":"20.0","floor":"","room":"3.0","name":"307.0","square":0}
,{"depart":"21.0","floor":"","room":"3.0","name":"308.0","square":0}
,{"depart":"22.0","floor":"","room":"3.0","name":"309.0","square":0}
,{"depart":"23.0","floor":"","room":"3.0","name":"310.0","square":0}
,{"depart":"24.0","floor":"","room":"3.0","name":"311.0","square":0}
,{"depart":"25.0","floor":"","room":"4.0","name":"401.0","square":0}
,{"depart":"26.0","floor":"","room":"4.0","name":"402.0","square":0}
,{"depart":"27.0","floor":"","room":"4.0","name":"403.0","square":0}
,{"depart":"28.0","floor":"","room":"4.0","name":"404.0","square":0}
,{"depart":"29.0","floor":"","room":"4.0","name":"405.0","square":0}
,{"depart":"30.0","floor":"","room":"4.0","name":"406.0","square":0}
,{"depart":"31.0","floor":"","room":"4.0","name":"407.0","square":0}
,{"depart":"32.0","floor":"","room":"5.0","name":"501.0","square":0}
,{"depart":"33.0","floor":"","room":"5.0","name":"503.0","square":0}
,{"depart":"34.0","floor":"","room":"5.0","name":"507.0","square":0}
,{"depart":"35.0","floor":"","room":"5.0","name":"509.0","square":0}
,{"depart":"36.0","floor":"","room":"5.0","name":"","square":0}
,{"depart":"37.0","floor":"","room":"5.0","name":"","square":0}
]

View File

@ -0,0 +1,163 @@
[
{"depart":"市场室","floor":"主楼辅2层","room":"201.0","name":"市场室","square":0}
,{"depart":"","floor":"","room":"202.0","name":"市场室","square":0}
,{"depart":"","floor":"","room":"203.0","name":"市场室","square":0}
,{"depart":"","floor":"","room":"204.0","name":"市场室","square":0}
,{"depart":"","floor":"","room":"205.0","name":"市场室","square":0}
,{"depart":"","floor":"","room":"206.0","name":"市场室","square":0}
,{"depart":"","floor":"","room":"207.0","name":"市场室","square":0}
,{"depart":"","floor":"","room":"208.0","name":"仓库","square":0}
,{"depart":"","floor":"","room":"209.0","name":"仓库","square":0}
,{"depart":"","floor":"","room":"210.0","name":"市场二班仓库","square":0}
,{"depart":"","floor":"","room":"211.0","name":"洽谈室","square":0}
,{"depart":"","floor":"","room":"212.0","name":"市场拓展班、智能用电班","square":0}
,{"depart":"","floor":"","room":"213.0","name":"专职办","square":0}
,{"depart":"","floor":"","room":"215.0","name":"市场及大客户副经理室","square":0}
,{"depart":"","floor":"","room":"217.0","name":"仓库","square":0}
,{"depart":"配电运检室","floor":"主楼辅3层","room":"301.0","name":"保洁休息室","square":0}
,{"depart":"","floor":"","room":"302.0","name":"配电抢修淋浴室","square":0}
,{"depart":"","floor":"","room":"303.0","name":"配电抢修餐厅","square":0}
,{"depart":"","floor":"","room":"304.0","name":"配电抢修宿舍","square":0}
,{"depart":"","floor":"","room":"305.0","name":"配电抢修宿舍","square":0}
,{"depart":"","floor":"","room":"306.0","name":"配电抢修宿舍","square":0}
,{"depart":"","floor":"","room":"307.0","name":"配电抢修宿舍","square":0}
,{"depart":"","floor":"","room":"308.0","name":"配电抢修更衣室","square":0}
,{"depart":"","floor":"","room":"309.0","name":"配电抢修二班","square":0}
,{"depart":"","floor":"","room":"310.0","name":"配电抢修班","square":0}
,{"depart":"","floor":"","room":"311.0","name":"配电抢修宿舍","square":0}
,{"depart":"","floor":"","room":"313.0","name":"配电抢修宿舍","square":0}
,{"depart":"","floor":"","room":"315.0","name":"配电抢修宿舍","square":0}
,{"depart":"","floor":"","room":"317.0","name":"配电抢修宿舍","square":0}
,{"depart":"","floor":"","room":"319.0","name":"配电抢修宿舍","square":0}
,{"depart":"","floor":"","room":"321.0","name":"仓库","square":0}
,{"depart":"汽车公司","floor":"主楼辅4层","room":"401.0","name":"值班室","square":0}
,{"depart":"","floor":"","room":"402.0","name":"车管办公室","square":0}
,{"depart":"","floor":"","room":"403.0","name":"车管经理室","square":0}
,{"depart":"","floor":"","room":"404.0","name":"驾驶4班","square":0}
,{"depart":"","floor":"","room":"405.0","name":"车辆调度室","square":0}
,{"depart":"","floor":"","room":"407.0","name":"会议室","square":0}
,{"depart":"","floor":"","room":"409.0","name":"驾驶一班","square":0}
,{"depart":"","floor":"","room":"410.0","name":"营业五组","square":0}
,{"depart":"","floor":"","room":"411.0","name":"驾驶一班","square":0}
,{"depart":"","floor":"","room":"412.0","name":"营业五组","square":0}
,{"depart":"","floor":"","room":"413.0","name":"驾驶二班","square":0}
,{"depart":"","floor":"","room":"415.0","name":"驾驶二班","square":0}
,{"depart":"","floor":"","room":"417.0","name":"驾驶三班","square":0}
,{"depart":"","floor":"","room":"419.0","name":"驾驶三班","square":0}
,{"depart":"","floor":"","room":"421.0","name":"仓库","square":0}
,{"depart":"市场室","floor":"主楼2层","room":"201.0","name":"综合管控中心","square":0}
,{"depart":"","floor":"","room":"202.0","name":"亲情宁电供电服务展示厅","square":0}
,{"depart":"","floor":"","room":"204.0","name":"亲情宁电供电服务展示厅","square":0}
,{"depart":"","floor":"","room":"205.0","name":"陈堃劳模室","square":0}
,{"depart":"","floor":"","room":"206.0","name":"市场专职办","square":0}
,{"depart":"","floor":"","room":"207.0","name":"客户经理室","square":0}
,{"depart":"","floor":"","room":"208.0","name":"市场专职办","square":0}
,{"depart":"","floor":"","room":"209、211","name":"电视电话会议室","square":0}
,{"depart":"","floor":"","room":"213、215","name":"机房","square":0}
,{"depart":"市场室","floor":"主楼3层","room":"301.0","name":"采集运行一班","square":0}
,{"depart":"","floor":"","room":"302.0","name":"资料室","square":0}
,{"depart":"","floor":"","room":"303.0","name":"采集运行一班","square":0}
,{"depart":"","floor":"","room":"304.0","name":"营业与电费部专职办","square":0}
,{"depart":"","floor":"","room":"305.0","name":"营业与电费部专职办","square":0}
,{"depart":"","floor":"","room":"306.0","name":"营电及电费专职办","square":0}
,{"depart":"","floor":"","room":"307.0","name":"高压用检二班","square":0}
,{"depart":"","floor":"","room":"308.0","name":"营电及电费专职办","square":0}
,{"depart":"","floor":"","room":"309.0","name":"资料室","square":0}
,{"depart":"","floor":"","room":"310.0","name":"营电及电费专职办","square":0}
,{"depart":"","floor":"","room":"312.0","name":"会议室","square":0}
,{"depart":"市场室","floor":"主楼4层","room":"401.0","name":"营销部专职办","square":0}
,{"depart":"","floor":"","room":"402.0","name":"备用","square":0}
,{"depart":"","floor":"","room":"403.0","name":"资料室","square":0}
,{"depart":"","floor":"","room":"404.0","name":"资料室","square":0}
,{"depart":"","floor":"","room":"405.0","name":"营销部专职办","square":0}
,{"depart":"","floor":"","room":"406.0","name":"协理员室","square":0}
,{"depart":"","floor":"","room":"407.0","name":"资料室","square":0}
,{"depart":"","floor":"","room":"408.0","name":"稽查资料室","square":0}
,{"depart":"","floor":"","room":"409.0","name":"营销部专职办","square":0}
,{"depart":"","floor":"","room":"410.0","name":"仓库","square":0}
,{"depart":"","floor":"","room":"411.0","name":"资料室","square":0}
,{"depart":"","floor":"","room":"412.0","name":"协理员室","square":0}
,{"depart":"","floor":"","room":"413.0","name":"营销部专职办","square":0}
,{"depart":"","floor":"","room":"414.0","name":"会议室","square":0}
,{"depart":"营销部","floor":"主楼5层","room":"501.0","name":"会议室","square":0}
,{"depart":"","floor":"","room":"502.0","name":"营销部专职办","square":0}
,{"depart":"","floor":"","room":"503.0","name":"营销部专职办","square":0}
,{"depart":"","floor":"","room":"505.0","name":"营销部专职办","square":0}
,{"depart":"","floor":"","room":"506.0","name":"会议室","square":0}
,{"depart":"","floor":"","room":"507.0","name":"营销部专职办","square":0}
,{"depart":"","floor":"","room":"509.0","name":"主任室","square":0}
,{"depart":"","floor":"","room":"511.0","name":"主任室","square":0}
,{"depart":"","floor":"","room":"513.0","name":"主任室","square":0}
,{"depart":"","floor":"","room":"515.0","name":"书记","square":0}
,{"depart":"","floor":"","room":"517.0","name":"营销部专职办","square":0}
,{"depart":"三新公司","floor":"主楼6层","room":"601.0","name":"会议室","square":0}
,{"depart":"","floor":"","room":"602.0","name":"库房","square":0}
,{"depart":"","floor":"","room":"603.0","name":"副总经理办公室","square":0}
,{"depart":"","floor":"","room":"604.0","name":"专职办公室","square":0}
,{"depart":"","floor":"","room":"605.0","name":"总经理办公室","square":0}
,{"depart":"","floor":"","room":"606.0","name":"专职办公室","square":0}
,{"depart":"","floor":"","room":"607.0","name":"专职办公室","square":0}
,{"depart":"","floor":"","room":"608.0","name":"专职办公室","square":0}
,{"depart":"","floor":"","room":"609.0","name":"专职办公室","square":0}
,{"depart":"","floor":"","room":"610.0","name":"专职办公室","square":0}
,{"depart":"","floor":"","room":"611.0","name":"专职办公室","square":0}
,{"depart":"","floor":"","room":"612.0","name":"专职办公室","square":0}
,{"depart":"","floor":"","room":"613.0","name":"党建室","square":0}
,{"depart":"","floor":"","room":"614.0","name":"专职办公室","square":0}
,{"depart":"","floor":"","room":"615.0","name":"书记办公室","square":0}
,{"depart":"","floor":"","room":"617.0","name":"管控中心","square":0}
,{"depart":"","floor":"","room":"619.0","name":"专职办公室","square":0}
,{"depart":"新能源","floor":"主楼7层","room":"701.0","name":"备用","square":0}
,{"depart":"","floor":"","room":"703.0","name":"新能源","square":0}
,{"depart":"","floor":"","room":"705.0","name":"新能源","square":0}
,{"depart":"","floor":"","room":"707.0","name":"新能源","square":0}
,{"depart":"","floor":"","room":"709.0","name":"新能源","square":0}
,{"depart":"","floor":"","room":"711.0","name":"物业办公室","square":0}
,{"depart":"","floor":"","room":"704.0","name":"会议室","square":0}
,{"depart":"","floor":"","room":"706.0","name":"会议室","square":0}
,{"depart":"计量室","floor":"主楼8层","room":"801.0","name":"专职办公室","square":0}
,{"depart":"","floor":"","room":"802.0","name":"仓库","square":0}
,{"depart":"","floor":"","room":"803.0","name":"计量部副主任室","square":0}
,{"depart":"","floor":"","room":"804.0","name":"计量部副主任室","square":0}
,{"depart":"","floor":"","room":"805.0","name":"计量党支部书记室","square":0}
,{"depart":"","floor":"","room":"806.0","name":"创新工作室","square":0}
,{"depart":"","floor":"","room":"807.0","name":"计量专职办","square":0}
,{"depart":"","floor":"","room":"808.0","name":"资料室","square":0}
,{"depart":"","floor":"","room":"809.0","name":"机房","square":0}
,{"depart":"","floor":"","room":"810.0","name":"会议室","square":0}
,{"depart":"","floor":"","room":"811.0","name":"计量室主任室","square":0}
,{"depart":"","floor":"","room":"813.0","name":"计量室副主任室","square":0}
,{"depart":"计量室","floor":"主楼9层","room":"901.0","name":"采集运维","square":0}
,{"depart":"","floor":"","room":"902.0","name":"采集运维","square":0}
,{"depart":"","floor":"","room":"903.0","name":"检测检测","square":0}
,{"depart":"","floor":"","room":"904.0","name":"计量专职办","square":0}
,{"depart":"","floor":"","room":"905.0","name":"计量专职办","square":0}
,{"depart":"","floor":"","room":"906.0","name":"计量专职办","square":0}
,{"depart":"","floor":"","room":"907.0","name":"计量专职办","square":0}
,{"depart":"","floor":"","room":"908.0","name":"计量专职办","square":0}
,{"depart":"","floor":"","room":"909.0","name":"计量专职办","square":0}
,{"depart":"","floor":"","room":"910.0","name":"计量专职办","square":0}
,{"depart":"","floor":"","room":"912.0","name":"资料室","square":0}
,{"depart":"空层","floor":"主楼10层","room":"1001.0","name":"备用","square":0}
,{"depart":"","floor":"","room":"1002.0","name":"备用","square":0}
,{"depart":"","floor":"","room":"1003.0","name":"仓库","square":0}
,{"depart":"","floor":"","room":"1004.0","name":"仓库","square":0}
,{"depart":"","floor":"","room":"1005.0","name":"仓库","square":0}
,{"depart":"","floor":"","room":"1006.0","name":"备用","square":0}
,{"depart":"","floor":"","room":"1007.0","name":"仓库","square":0}
,{"depart":"","floor":"","room":"1008.0","name":"南京供电公司稽查大厅(空)","square":0}
,{"depart":"","floor":"","room":"1009.0","name":"仓库","square":0}
,{"depart":"","floor":"","room":"1011.0","name":"仓库","square":0}
,{"depart":"餐厅、计量","floor":"综合楼(食堂)","room":"101.0","name":"资产班","square":0}
,{"depart":"","floor":"","room":"102.0","name":"PT校验室","square":0}
,{"depart":"","floor":"","room":"201.0","name":"餐厅","square":0}
,{"depart":"","floor":"","room":"301.0","name":"餐厅","square":0}
,{"depart":"","floor":"","room":"401.0","name":"餐厅办公室","square":0}
,{"depart":"","floor":"","room":"402.0","name":"男更衣室","square":0}
,{"depart":"","floor":"","room":"403.0","name":"女更衣室","square":0}
,{"depart":"计量室","floor":"计量5号楼1层","room":"101.0","name":"资产班","square":0}
,{"depart":"","floor":"计量5号楼2层","room":"204.0","name":"专职办","square":0}
,{"depart":"","floor":"","room":"206.0","name":"专职办","square":0}
,{"depart":"","floor":"","room":"207.0","name":"专职办","square":0}
,{"depart":"","floor":"","room":"212.0","name":"专职办","square":0}
]

View File

@ -0,0 +1,29 @@
[
{"depart":"远能监理事业部","floor":"14楼","room":"1401.0","name":"书记办公室","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1402.0","name":"总经理办公室","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1403.0","name":"副总办公室","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1404.0","name":"接待室","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1405.0","name":"党员活动室","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1406.0","name":"综合室","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1407.0","name":"综合室","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1408.0","name":"安全质量室","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1409.0","name":"设备监造室","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1410.0","name":"阅读室","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1411.0","name":"驾驶班","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1412.0","name":"项目监理室(一)","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1413.0","name":"项目监理室(二)","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1414.0","name":"机房","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1415.0","name":"培训师","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1416.0","name":"餐厅","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1417.0","name":"活动室","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1418.0","name":"资料室","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1419.0","name":"档案室","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1420.0","name":"会议室","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"1421.0","name":"复印室","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"","name":"保洁室","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"","name":"吸烟室","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"","name":"风机房","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"","name":"杂物室","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"","name":"隔离间","square":0}
,{"depart":"远能监理事业部","floor":"14楼","room":"","name":"储藏室","square":0}
]

26
public/land/data/bdz.json Normal file
View File

@ -0,0 +1,26 @@
[
{"tudi":"龙江变电站","jd":"龙江变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"南京供电公司","fangchan":"沿河四村5幢9、10、11、12号","province":"江苏省","city":"南京市","area":"建邺区","position":"118.7482,32.067165"},
{"tudi":"双闸变电站","jd":"双闸变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"裕顺雅苑6号401室","province":"江苏省","city":"南京市","area":"鼓楼区","position":"118.694684,31.97652"},
{"tudi":"大光路变电站","jd":"大光路变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"清凉门大街8号03幢1单元704室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"清凉门大街8号","position":"118.779988,32.042171"},
{"tudi":"丰富路变电站","jd":"丰富路变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"宁夏路1号101室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"宁夏路1号","position":"118.78531,32.041007"},
{"tudi":"云南路变电站","jd":"云南路变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"龙园西路113号枫亚苑05幢701室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"龙园西路113号","position":"118.774307,32.056584"},
{"tudi":"所街变电站","jd":"所街变","type":"变电站","fenzhi":"","fangchan":"龙池阉64号602室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"龙池阉64号","position":"118.735929,32.022326"},
{"tudi":"洪武变电站","jd":"洪武变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"清凉门大街8号03幢1单元1701室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"清凉门大街8号","position":"118.783765,32.050028"},
{"tudi":"新街口变电站","jd":"新街口变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"清凉门大街8号03幢1单元402室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"清凉门大街8号","position":"118.777558,32.037037"},
{"tudi":"大厂变电站","jd":"大厂变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"龙园西路113号地下车库17号","province":"江苏省","city":"南京市","area":"鼓楼区","street":"龙园西路113号","position":"118.711226,32.230989"},
{"tudi":"石门坎变电站","jd":"石门坎变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"龙园西路113号地下车库21号","province":"江苏省","city":"南京市","area":"鼓楼区","street":"龙园西路113号","position":"118.828409,32.02004"},
{"tudi":"唱经楼临街变电站","jd":"唱经楼临街变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"清凉门大街8号03幢1单元1103室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"清凉门大街8号","position":"118.786472,32.05292"},
{"tudi":"西华门变电站","jd":"西华门变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"乐山路207号12栋一单元1302","province":"江苏省","city":"南京市","area":"建邺区","street":"乐山路207号","position":"118.776726,32.051629"},
{"tudi":"小营变电站","jd":"小营变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"宁夏路1号102室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"宁夏路1号","position":"118.771062,32.042608"},
{"tudi":"洋桥变电站","jd":"洋桥变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"太平门街10号6幢508室","province":"江苏省","city":"南京市","area":"玄武区","street":"太平门街10号","position":"118.860019,31.87608"},
{"tudi":"南湖变电站","jd":"南湖变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"中山路268号1幢2101-2112室","province":"江苏省","city":"南京市","area":"玄武区","street":"中山路268号","position":"118.708405,32.149725"},
{"tudi":"凤凰变电站","jd":"凤凰变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"龙园西路113号枫亚苑05幢1801室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"龙园西路113号","position":"118.721586,32.01739"},
{"tudi":"樱驼变电站","jd":"樱驼变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"港龙园15幢101室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"港龙园小区","position":"118.829376,32.081879"},
{"tudi":"下关变电站","jd":"下关变电站","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"清凉门大街8号03幢1单元1204室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"清凉门大街8号","position":"118.742272,32.086137"},
{"tudi":"迈皋桥变电站","jd":"迈皋桥变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"太平门街10号7幢605室","province":"江苏省","city":"南京市","area":"玄武区","street":"太平门街10号","position":"118.810891,32.103178"},
{"tudi":"上峰变电站","jd":"上峰变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"传达室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"北京西路20号","position":"119.05366,32.007693"},
{"tudi":"码头变电站","jd":"码头变电站","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"锁金四村31幢2单元503室","province":"江苏省","city":"南京市","area":"玄武区","street":"锁金四村","position":"118.7341,32.088125"},
{"tudi":"滨江变电站","jd":"滨江变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"锁金四村31幢2单元503室","province":"江苏省","city":"南京市","area":"玄武区","street":"锁金四村","position":"118.894108,32.260918"},
{"tudi":"中央门变电站","jd":"中央门变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"锁金四村31幢2单元503室","province":"江苏省","city":"南京市","area":"玄武区","street":"锁金四村","position":"118.784182,32.088375"},
{"tudi":"天井山变电站","jd":"天井山变","type":"变电站","zongbu":"江苏电力公司","fenzhi":"","fangchan":"锁金四村31幢2单元503室","province":"江苏省","city":"南京市","area":"玄武区","street":"锁金四村","position":"118.449212,32.029214"}
]

View File

@ -1,23 +1,23 @@
[
{"tudi":"南京市鼓楼区和燕路2号","jd":"栖霞基地","zongbu":"江苏电力公司","fenzhi":"南京供电公司","fangchan":"沿河四村5幢9、10、11、12号","province":"江苏省","city":"南京市","area":"建邺区","position":"118.785821,32.095862"},
{"tudi":"南京市鼓楼区定淮门石头城115号","jd":"城北基地","zongbu":"江苏电力公司","fenzhi":"","fangchan":"裕顺雅苑6号401室","province":"江苏省","city":"南京市","area":"鼓楼区","position":"118.747813,32.066839"},
{"tudi":"南京市秦淮区火瓦巷51号","jd":"城南基地","zongbu":"江苏电力公司","fenzhi":"","fangchan":"清凉门大街8号03幢1单元704室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"清凉门大街8号","position":"118.789691,32.032739"},
{"tudi":"南京市雨花台区雨花南路32号","zongbu":"雨花基地","fenzhi":"","fangchan":"宁夏路1号101室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"宁夏路1号","position":"118.769801,31.994273"},
{"tudi":"南京市建邺区奥体大街1号","jd":"公司大楼(市公司)","zongbu":"江苏电力公司","fenzhi":"","fangchan":"龙园西路113号枫亚苑05幢701室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"龙园西路113号","position":"118.744015,31.990507"},
{"tudi":"南京市鼓楼区中山北路217号","jd":"龙吟广场","fenzhi":"","fangchan":"龙池阉64号602室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"龙池阉64号","position":"118.76956,32.070685"},
{"tudi":"南京市鼓楼区峨嵋路21号","jd":"健康中心(安仁街变)","zongbu":"江苏电力公司","fenzhi":"","fangchan":"清凉门大街8号03幢1单元1701室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"清凉门大街8号","position":"118.770386,32.044743"},
{"tudi":"南京市鼓楼区龙池庵66号","jd":"苏电宾馆","zongbu":"江苏电力公司","fenzhi":"","fangchan":"清凉门大街8号03幢1单元402室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"清凉门大街8号","position":"118.750561,32.084403"},
{"tudi":"南京市玄武区中山路251号","jd":"新纪元宾馆","zongbu":"江苏电力公司","fenzhi":"","fangchan":"龙园西路113号地下车库17号","province":"江苏省","city":"南京市","area":"鼓楼区","street":"龙园西路113号","position":"118.784701,32.049814"},
{"tudi":"南京市江宁区天元中路19号","jd":"峰电大厦","zongbu":"江苏电力公司","fenzhi":"","fangchan":"龙园西路113号地下车库21号","province":"江苏省","city":"南京市","area":"鼓楼区","street":"龙园西路113号","position":"118.843786,31.93144"},
{"tudi":"南京市玄武区中山路250号","jd":"老卫生所","zongbu":"江苏电力公司","fenzhi":"","fangchan":"清凉门大街8号03幢1单元1103室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"清凉门大街8号","position":"118.784696,32.049813"},
{"tudi":"南京市浦口区龙华路19号","jd":"龙华路19号基地","zongbu":"江苏电力公司","fenzhi":"","fangchan":"乐山路207号12栋一单元1302","province":"江苏省","city":"南京市","area":"建邺区","street":"乐山路207号","position":"118.640574,32.069147"},
{"tudi":"南京市六合区雄州镇园林西路8巷13号","jd":"六合园林路基地","zongbu":"江苏电力公司","fenzhi":"","fangchan":"宁夏路1号102室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"宁夏路1号","position":"118.845591,32.352524"},
{"tudi":"南京市六合区雄州镇方州路北侧","jd":"六合方州路基地","zongbu":"江苏电力公司","fenzhi":"","fangchan":"太平门街10号6幢508室","province":"江苏省","city":"南京市","area":"玄武区","street":"太平门街10号","position":"118.836226,32.364984"},
{"tudi":"南京市浦口区泰西路8号","jd":"泰西路基地","zongbu":"江苏电力公司","fenzhi":"","fangchan":"中山路268号1幢2101-2112室","province":"江苏省","city":"南京市","area":"玄武区","street":"中山路268号","position":"118.708405,32.149725"},
{"tudi":"南京市江宁区天印大道1398号","jd":"江宁新办公楼基地","zongbu":"江苏电力公司","fenzhi":"","fangchan":"龙园西路113号枫亚苑05幢1801室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"龙园西路113号","position":"118.864288,31.942295"},
{"tudi":"南京市江宁区上元大街598号","jd":"江宁老办公楼基地","zongbu":"江苏电力公司","fenzhi":"","fangchan":"港龙园15幢101室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"港龙园小区","position":"118.849567,31.954672"},
{"tudi":"南京市高淳区北岭路23号","jd":"高淳新办公楼基地","zongbu":"江苏电力公司","fenzhi":"","fangchan":"清凉门大街8号03幢1单元1204室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"清凉门大街8号","position":"118.874337,31.332819"},
{"tudi":"南京市高淳区镇兴路1号","jd":"高淳老办公楼基地","zongbu":"江苏电力公司","fenzhi":"","fangchan":"太平门街10号7幢605室","province":"江苏省","city":"南京市","area":"玄武区","street":"太平门街10号","position":"118.865921,31.325835"},
{"tudi":"江苏省南京市溧水县永阳镇交通路99号","jd":"溧水培训办公楼","zongbu":"江苏电力公司","fenzhi":"","fangchan":"传达室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"北京西路20号","position":"119.035663,31.660993"},
{"tudi":"江苏省南京市溧水县永阳镇珍珠北路16号","jd":"溧水综合办公楼","zongbu":"江苏电力公司","fenzhi":"","fangchan":"锁金四村31幢2单元503室","province":"江苏省","city":"南京市","area":"玄武区","street":"锁金四村","position":"119.03119,31.654953"}
{"tudi":"南京市鼓楼区和燕路2号","jd":"栖霞基地","type":"不动产","zongbu":"江苏电力公司","fenzhi":"南京供电公司","fangchan":"沿河四村5幢9、10、11、12号","province":"江苏省","city":"南京市","area":"建邺区","position":"118.785821,32.095862"},
{"tudi":"南京市鼓楼区定淮门石头城115号","jd":"城北基地","type":"土地证","zongbu":"江苏电力公司","fenzhi":"","fangchan":"裕顺雅苑6号401室","province":"江苏省","city":"南京市","area":"鼓楼区","position":"118.747813,32.066839"},
{"tudi":"南京市秦淮区火瓦巷51号","jd":"城南基地","type":"不动产","zongbu":"江苏电力公司","fenzhi":"","fangchan":"清凉门大街8号03幢1单元704室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"清凉门大街8号","position":"118.789691,32.032739"},
{"tudi":"南京市雨花台区雨花南路32号","jd":"雨花基地","type":"不动产","zongbu":"江苏电力公司","fenzhi":"","fangchan":"宁夏路1号101室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"宁夏路1号","position":"118.769801,31.994273"},
{"tudi":"南京市建邺区奥体大街1号","jd":"公司大楼","type":"土地证","zongbu":"江苏电力公司","fenzhi":"","fangchan":"龙园西路113号枫亚苑05幢701室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"龙园西路113号","position":"118.744015,31.990507"},
{"tudi":"南京市鼓楼区中山北路217号","jd":"龙吟广场","type":"不动产","fenzhi":"","fangchan":"龙池阉64号602室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"龙池阉64号","position":"118.76956,32.070685"},
{"tudi":"南京市鼓楼区峨嵋路21号","jd":"健康中心(安仁街变)","type":"不动产","zongbu":"江苏电力公司","fenzhi":"","fangchan":"清凉门大街8号03幢1单元1701室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"清凉门大街8号","position":"118.770386,32.044743"},
{"tudi":"南京市鼓楼区龙池庵66号","jd":"苏电宾馆","type":"不动产","zongbu":"江苏电力公司","fenzhi":"","fangchan":"清凉门大街8号03幢1单元402室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"清凉门大街8号","position":"118.750561,32.084403"},
{"tudi":"南京市玄武区中山路251号","jd":"新纪元宾馆","type":"土地证","zongbu":"江苏电力公司","fenzhi":"","fangchan":"龙园西路113号地下车库17号","province":"江苏省","city":"南京市","area":"鼓楼区","street":"龙园西路113号","position":"118.784701,32.049814"},
{"tudi":"南京市江宁区天元中路19号","jd":"峰电大厦","type":"土地证","zongbu":"江苏电力公司","fenzhi":"","fangchan":"龙园西路113号地下车库21号","province":"江苏省","city":"南京市","area":"鼓楼区","street":"龙园西路113号","position":"118.843786,31.93144"},
{"tudi":"南京市玄武区中山路250号","jd":"老卫生所","type":"不动产","zongbu":"江苏电力公司","fenzhi":"","fangchan":"清凉门大街8号03幢1单元1103室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"清凉门大街8号","position":"118.784696,32.049813"},
{"tudi":"南京市浦口区龙华路19号","jd":"龙华路19号基地","type":"土地证","zongbu":"江苏电力公司","fenzhi":"","fangchan":"乐山路207号12栋一单元1302","province":"江苏省","city":"南京市","area":"建邺区","street":"乐山路207号","position":"118.640574,32.069147"},
{"tudi":"南京市六合区雄州镇园林西路8巷13号","jd":"六合园林路基地","type":"土地证","zongbu":"江苏电力公司","fenzhi":"","fangchan":"宁夏路1号102室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"宁夏路1号","position":"118.845591,32.352524"},
{"tudi":"南京市六合区雄州镇方州路北侧","jd":"六合方州路基地","type":"土地证","zongbu":"江苏电力公司","fenzhi":"","fangchan":"太平门街10号6幢508室","province":"江苏省","city":"南京市","area":"玄武区","street":"太平门街10号","position":"118.836226,32.364984"},
{"tudi":"南京市浦口区泰西路8号","jd":"泰西路基地","type":"土地证","zongbu":"江苏电力公司","fenzhi":"","fangchan":"中山路268号1幢2101-2112室","province":"江苏省","city":"南京市","area":"玄武区","street":"中山路268号","position":"118.708405,32.149725"},
{"tudi":"南京市江宁区天印大道1398号","jd":"江宁新办公楼基地","type":"不动产","zongbu":"江苏电力公司","fenzhi":"","fangchan":"龙园西路113号枫亚苑05幢1801室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"龙园西路113号","position":"118.864288,31.942295"},
{"tudi":"南京市江宁区上元大街598号","jd":"江宁老办公楼基地","type":"土地证","zongbu":"江苏电力公司","fenzhi":"","fangchan":"港龙园15幢101室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"港龙园小区","position":"118.849567,31.954672"},
{"tudi":"南京市高淳区北岭路23号","jd":"高淳新办公楼基地","type":"不动产","zongbu":"江苏电力公司","fenzhi":"","fangchan":"清凉门大街8号03幢1单元1204室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"清凉门大街8号","position":"118.874337,31.332819"},
{"tudi":"南京市高淳区镇兴路1号","jd":"高淳老办公楼基地","type":"不动产","zongbu":"江苏电力公司","fenzhi":"","fangchan":"太平门街10号7幢605室","province":"江苏省","city":"南京市","area":"玄武区","street":"太平门街10号","position":"118.865921,31.325835"},
{"tudi":"江苏省南京市溧水县永阳镇交通路99号","jd":"溧水培训办公楼","type":"不动产","zongbu":"江苏电力公司","fenzhi":"","fangchan":"传达室","province":"江苏省","city":"南京市","area":"鼓楼区","street":"北京西路20号","position":"119.035663,31.660993"},
{"tudi":"江苏省南京市溧水县永阳镇珍珠北路16号","jd":"溧水综合办公楼","type":"不动产","zongbu":"江苏电力公司","fenzhi":"","fangchan":"锁金四村31幢2单元503室","province":"江苏省","city":"南京市","area":"玄武区","street":"锁金四村","position":"119.03119,31.654953"}
]

View File

@ -386,17 +386,17 @@
<input type="button" value="栖霞区" onclick="gotoPosition('qx')" />
<input type="button" value="玄武区" onclick="gotoPosition('xw')" />
</div> -->
<!-- <div style="position:absolute;bottom:2rem;right:30rem;">
<div style="position:absolute;bottom:15rem;right:35rem;">
&nbsp;&nbsp;
<div class="labelBox">
<img src="images/fc.png" alt="" style=" vertical-align: middle;margin-right: 10px;">房产
<div class="labelBox" onclick="show('jd')">
<img src="images/td.png" alt="" style=" vertical-align: middle;margin-right: 10px;">基地
</div>
&nbsp;&nbsp;
<div class="labelBox" onclick="show('bdz')">
<img src="images/fc.png" alt="" style=" vertical-align: middle;margin-right: 10px;">变电站
</div>
&nbsp;&nbsp;
<div class="labelBox">
<img src="images/td.png" alt="" style=" vertical-align: middle;margin-right: 10px;">地产
</div>
</div> -->
</div>
<script src="https://map.sgcc.com.cn/maps?v=3.0.0"></script>
<script src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/socket.io.js"></script>
@ -449,10 +449,12 @@ function send(val) {
var positions = {
// "nj": { name: "南京市", lng: 119.932628, lat: 32.473465, markers: [
// { icon: "images/sgs.png", width: 200, height: 100, lng: 118.77416, lat: 32.0578, data: "省大楼" }] },
"nj": { name: "南京市", lng: 118.802997, lat: 32.066366, markers: [
{ icon: "images/floor2.png", width: 200, height: 100, lng: 118.744015, lat: 31.990507, data: "市大楼" }] },
"njData": { name: "南京市", lng: 118.802997, lat: 32.066366, markers: [
{ icon: "images/floor2.png", width: 200, height: 100, lng: 118.744015, lat: 31.990507, data: "市大楼" },] },
"nj": { name: "南京市", lng: 118.802997, lat: 32.066366 },
"njData": { name: "南京市", lng: 118.802997, lat: 32.066366},
// "nj": { name: "南京市", lng: 118.802997, lat: 32.066366, markers: [
// { icon: "images/floor2.png", width: 200, height: 100, lng: 118.744015, lat: 31.990507, data: "市大楼" }] },
// "njData": { name: "南京市", lng: 118.802997, lat: 32.066366, markers: [
// { icon: "images/floor2.png", width: 200, height: 100, lng: 118.744015, lat: 31.990507, data: "市大楼" },] },
// "nj": { name: "南京市", lng: 118.802997, lat: 32.066366, markers: [
// { icon: "images/floor2.png", width: 200, height: 100, lng: 118.744015, lat: 31.990507, data: "市大楼" }] },
// "njData": { name: "南京市", lng: 118.802997, lat: 32.066366, markers: [
@ -751,7 +753,8 @@ function send(val) {
}
function createCities(cityName, cityData) {
visibleTD()
visibleTD()
var hidePolygon = createPolygon("hide" + cityName, cityData, "#000000", 0);
createPolygon("show" + cityName, cityData, cityOverColor, 0.1);
createLine("show" + cityName, cityData, cityOverColor, 1);
@ -815,6 +818,7 @@ function send(val) {
//地点跳转
function gotoPosition(posName) {
map.easeTo({ center: [positions[posName].lng, positions[posName].lat], zoom: getMapZoom() });
loadMarkers(posName);
@ -847,7 +851,7 @@ function send(val) {
el.addEventListener("click", function (e) {
/////////////////////////////////自定义输出内容//////////////////////////////////////
console.log("场景跳转@" + e.target.cusData.data);
window.parent['vueDefinedMyProp']('build')
// gotoPosition(e.target.cusData.data)
});
@ -872,9 +876,8 @@ function send(val) {
}
function loadFC() {
$.get("data/fc.json", function (res) {
$.get("data/bdz.json", function (res) {
for (var i in res) {
if(res[i].city=='南京市'){
var row = res[i];
var lng = parseFloat(row.position.substring(0, row.position.indexOf(',')));
var lat = parseFloat(row.position.substr(row.position.indexOf(',') + 1));
@ -903,8 +906,8 @@ function send(val) {
tip.pos = pos;
el.addEventListener("mouseover", function (e) {
$(e.target.tip).show();//(e.target.cusData.street+"("+e.target.cusData.zongdi+")");
$(e.target.tip.txt).html(e.target.cusData.street+"("+e.target.cusData.tudi+")");
$(e.target.tip.pos).html(e.target.cusData.province+e.target.cusData.city+e.target.cusData.area+e.target.cusData.street);
$(e.target.tip.txt).html(e.target.cusData.tudi);
$(e.target.tip.pos).html(e.target.cusData.jd);
/////////////////////////////////自定义输出内容//////////////////////////////////////
// console.log("场景跳转@",e.target.cusData);
});
@ -913,6 +916,10 @@ function send(val) {
/////////////////////////////////自定义输出内容//////////////////////////////////////
//console.log("场景跳转@" + e.target.cusData);
});
el.addEventListener("click", function (e) {
console.log("e",e.target.cusData.jd)
window.parent.postMessage({ data:"变电站",params:e.target.cusData.jd,type:e.target.cusData.type},'*');
});
// 如果不传el会默认给一个蓝色水滴图标
var mk = new SGMap.Marker(el, {
// marker相对经纬度点坐标点的位置
@ -923,595 +930,6 @@ function send(val) {
mk.setLngLat([lng, lat]);
mk.addTo(map);
}
}else if(res[i].city=='扬州市'){
var row = res[i];
var lng = parseFloat(row.position.substring(0, row.position.indexOf(',')));
var lat = parseFloat(row.position.substr(row.position.indexOf(',') + 1));
// console.log(lng, lat);
if (lng != NaN && lat != NaN && lng > 100 && lat < 100) {
//画marker点
var el = document.createElement("div");
el.className = "marker";
el.cusData = row;
el.lng = lng;
el.lat = lat;
el.setAttribute("class","yzfc");
var tip = document.createElement("div");
tip.setAttribute("class","wnd");
el.appendChild(tip);
el.tip = tip;
var txt = document.createElement("div");
txt.innerText = "龙园西路113号枫亚湾5幢701";
txt.setAttribute("class","txt");
tip.appendChild(txt);
tip.txt = txt;
var pos = document.createElement("div");
pos.innerText = "江苏省扬州市";
pos.setAttribute("class","pos");
tip.appendChild(pos);
tip.pos = pos;
el.addEventListener("mouseover", function (e) {
$(e.target.tip).show();//(e.target.cusData.street+"("+e.target.cusData.zongdi+")");
$(e.target.tip.txt).html(e.target.cusData.street+"("+e.target.cusData.tudi+")");
$(e.target.tip.pos).html(e.target.cusData.province+e.target.cusData.city+e.target.cusData.area+e.target.cusData.street);
/////////////////////////////////自定义输出内容//////////////////////////////////////
// console.log("场景跳转@",e.target.cusData);
});
el.addEventListener("mouseleave", function (e) {
$(e.target.tip).hide();
/////////////////////////////////自定义输出内容//////////////////////////////////////
//console.log("场景跳转@" + e.target.cusData);
});
// 如果不传el会默认给一个蓝色水滴图标
var mk = new SGMap.Marker(el, {
// marker相对经纬度点坐标点的位置
anchor: "bottom",
// 相对于元素中心点,偏移的像素距离,负数代表向左和向上
offset: [0, 0]
});
mk.setLngLat([lng, lat]);
mk.addTo(map);
}
}else if(res[i].city=='镇江市'){
var row = res[i];
var lng = parseFloat(row.position.substring(0, row.position.indexOf(',')));
var lat = parseFloat(row.position.substr(row.position.indexOf(',') + 1));
// console.log(lng, lat);
if (lng != NaN && lat != NaN && lng > 100 && lat < 100) {
//画marker点
var el = document.createElement("div");
el.className = "marker";
el.cusData = row;
el.lng = lng;
el.lat = lat;
el.setAttribute("class","zjfc");
var tip = document.createElement("div");
tip.setAttribute("class","wnd");
el.appendChild(tip);
el.tip = tip;
var txt = document.createElement("div");
txt.innerText = "龙园西路113号枫亚湾5幢701";
txt.setAttribute("class","txt");
tip.appendChild(txt);
tip.txt = txt;
var pos = document.createElement("div");
pos.innerText = "江苏省镇江市";
pos.setAttribute("class","pos");
tip.appendChild(pos);
tip.pos = pos;
el.addEventListener("mouseover", function (e) {
$(e.target.tip).show();//(e.target.cusData.street+"("+e.target.cusData.zongdi+")");
$(e.target.tip.txt).html(e.target.cusData.street+"("+e.target.cusData.tudi+")");
$(e.target.tip.pos).html(e.target.cusData.province+e.target.cusData.city+e.target.cusData.area+e.target.cusData.street);
/////////////////////////////////自定义输出内容//////////////////////////////////////
// console.log("场景跳转@",e.target.cusData);
});
el.addEventListener("mouseleave", function (e) {
$(e.target.tip).hide();
/////////////////////////////////自定义输出内容//////////////////////////////////////
//console.log("场景跳转@" + e.target.cusData);
});
// 如果不传el会默认给一个蓝色水滴图标
var mk = new SGMap.Marker(el, {
// marker相对经纬度点坐标点的位置
anchor: "bottom",
// 相对于元素中心点,偏移的像素距离,负数代表向左和向上
offset: [0, 0]
});
mk.setLngLat([lng, lat]);
mk.addTo(map);
}
}else if(res[i].city=='泰州市'){
var row = res[i];
var lng = parseFloat(row.position.substring(0, row.position.indexOf(',')));
var lat = parseFloat(row.position.substr(row.position.indexOf(',') + 1));
// console.log(lng, lat);
if (lng != NaN && lat != NaN && lng > 100 && lat < 100) {
//画marker点
var el = document.createElement("div");
el.className = "marker";
el.cusData = row;
el.lng = lng;
el.lat = lat;
el.setAttribute("class","tzfc");
var tip = document.createElement("div");
tip.setAttribute("class","wnd");
el.appendChild(tip);
el.tip = tip;
var txt = document.createElement("div");
txt.innerText = "龙园西路113号枫亚湾5幢701";
txt.setAttribute("class","txt");
tip.appendChild(txt);
tip.txt = txt;
var pos = document.createElement("div");
pos.innerText = "江苏省泰州市";
pos.setAttribute("class","pos");
tip.appendChild(pos);
tip.pos = pos;
el.addEventListener("mouseover", function (e) {
$(e.target.tip).show();//(e.target.cusData.street+"("+e.target.cusData.zongdi+")");
$(e.target.tip.txt).html(e.target.cusData.street+"("+e.target.cusData.tudi+")");
$(e.target.tip.pos).html(e.target.cusData.province+e.target.cusData.city+e.target.cusData.area+e.target.cusData.street);
/////////////////////////////////自定义输出内容//////////////////////////////////////
// console.log("场景跳转@",e.target.cusData);
});
el.addEventListener("mouseleave", function (e) {
$(e.target.tip).hide();
/////////////////////////////////自定义输出内容//////////////////////////////////////
//console.log("场景跳转@" + e.target.cusData);
});
// 如果不传el会默认给一个蓝色水滴图标
var mk = new SGMap.Marker(el, {
// marker相对经纬度点坐标点的位置
anchor: "bottom",
// 相对于元素中心点,偏移的像素距离,负数代表向左和向上
offset: [0, 0]
});
mk.setLngLat([lng, lat]);
mk.addTo(map);
}
}else if(res[i].city=='宿迁市'){
var row = res[i];
var lng = parseFloat(row.position.substring(0, row.position.indexOf(',')));
var lat = parseFloat(row.position.substr(row.position.indexOf(',') + 1));
// console.log(lng, lat);
if (lng != NaN && lat != NaN && lng > 100 && lat < 100) {
//画marker点
var el = document.createElement("div");
el.className = "marker";
el.cusData = row;
el.lng = lng;
el.lat = lat;
el.setAttribute("class","sqfc");
var tip = document.createElement("div");
tip.setAttribute("class","wnd");
el.appendChild(tip);
el.tip = tip;
var txt = document.createElement("div");
txt.innerText = "龙园西路113号枫亚湾5幢701";
txt.setAttribute("class","txt");
tip.appendChild(txt);
tip.txt = txt;
var pos = document.createElement("div");
pos.innerText = "江苏省宿迁市";
pos.setAttribute("class","pos");
tip.appendChild(pos);
tip.pos = pos;
el.addEventListener("mouseover", function (e) {
$(e.target.tip).show();//(e.target.cusData.street+"("+e.target.cusData.zongdi+")");
$(e.target.tip.txt).html(e.target.cusData.street+"("+e.target.cusData.tudi+")");
$(e.target.tip.pos).html(e.target.cusData.province+e.target.cusData.city+e.target.cusData.area+e.target.cusData.street);
/////////////////////////////////自定义输出内容//////////////////////////////////////
// console.log("场景跳转@",e.target.cusData);
});
el.addEventListener("mouseleave", function (e) {
$(e.target.tip).hide();
/////////////////////////////////自定义输出内容//////////////////////////////////////
//console.log("场景跳转@" + e.target.cusData);
});
// 如果不传el会默认给一个蓝色水滴图标
var mk = new SGMap.Marker(el, {
// marker相对经纬度点坐标点的位置
anchor: "bottom",
// 相对于元素中心点,偏移的像素距离,负数代表向左和向上
offset: [0, 0]
});
mk.setLngLat([lng, lat]);
mk.addTo(map);
}
}else if(res[i].city=='无锡市'){
var row = res[i];
var lng = parseFloat(row.position.substring(0, row.position.indexOf(',')));
var lat = parseFloat(row.position.substr(row.position.indexOf(',') + 1));
// console.log(lng, lat);
if (lng != NaN && lat != NaN && lng > 100 && lat < 100) {
//画marker点
var el = document.createElement("div");
el.className = "marker";
el.cusData = row;
el.lng = lng;
el.lat = lat;
el.setAttribute("class","wxfc");
var tip = document.createElement("div");
tip.setAttribute("class","wnd");
el.appendChild(tip);
el.tip = tip;
var txt = document.createElement("div");
txt.innerText = "龙园西路113号枫亚湾5幢701";
txt.setAttribute("class","txt");
tip.appendChild(txt);
tip.txt = txt;
var pos = document.createElement("div");
pos.innerText = "江苏省无锡市";
pos.setAttribute("class","pos");
tip.appendChild(pos);
tip.pos = pos;
el.addEventListener("mouseover", function (e) {
$(e.target.tip).show();//(e.target.cusData.street+"("+e.target.cusData.zongdi+")");
$(e.target.tip.txt).html(e.target.cusData.street+"("+e.target.cusData.tudi+")");
$(e.target.tip.pos).html(e.target.cusData.province+e.target.cusData.city+e.target.cusData.area+e.target.cusData.street);
/////////////////////////////////自定义输出内容//////////////////////////////////////
// console.log("场景跳转@",e.target.cusData);
});
el.addEventListener("mouseleave", function (e) {
$(e.target.tip).hide();
/////////////////////////////////自定义输出内容//////////////////////////////////////
//console.log("场景跳转@" + e.target.cusData);
});
// 如果不传el会默认给一个蓝色水滴图标
var mk = new SGMap.Marker(el, {
// marker相对经纬度点坐标点的位置
anchor: "bottom",
// 相对于元素中心点,偏移的像素距离,负数代表向左和向上
offset: [0, 0]
});
mk.setLngLat([lng, lat]);
mk.addTo(map);
}
}else if(res[i].city=='苏州市'){
var row = res[i];
var lng = parseFloat(row.position.substring(0, row.position.indexOf(',')));
var lat = parseFloat(row.position.substr(row.position.indexOf(',') + 1));
// console.log(lng, lat);
if (lng != NaN && lat != NaN && lng > 100 && lat < 100) {
//画marker点
var el = document.createElement("div");
el.className = "marker";
el.cusData = row;
el.lng = lng;
el.lat = lat;
el.setAttribute("class","szfc");
var tip = document.createElement("div");
tip.setAttribute("class","wnd");
el.appendChild(tip);
el.tip = tip;
var txt = document.createElement("div");
txt.innerText = "龙园西路113号枫亚湾5幢701";
txt.setAttribute("class","txt");
tip.appendChild(txt);
tip.txt = txt;
var pos = document.createElement("div");
pos.innerText = "江苏省苏州市";
pos.setAttribute("class","pos");
tip.appendChild(pos);
tip.pos = pos;
el.addEventListener("mouseover", function (e) {
$(e.target.tip).show();//(e.target.cusData.street+"("+e.target.cusData.zongdi+")");
$(e.target.tip.txt).html(e.target.cusData.street+"("+e.target.cusData.tudi+")");
$(e.target.tip.pos).html(e.target.cusData.province+e.target.cusData.city+e.target.cusData.area+e.target.cusData.street);
/////////////////////////////////自定义输出内容//////////////////////////////////////
// console.log("场景跳转@",e.target.cusData);
});
el.addEventListener("mouseleave", function (e) {
$(e.target.tip).hide();
/////////////////////////////////自定义输出内容//////////////////////////////////////
//console.log("场景跳转@" + e.target.cusData);
});
// 如果不传el会默认给一个蓝色水滴图标
var mk = new SGMap.Marker(el, {
// marker相对经纬度点坐标点的位置
anchor: "bottom",
// 相对于元素中心点,偏移的像素距离,负数代表向左和向上
offset: [0, 0]
});
mk.setLngLat([lng, lat]);
mk.addTo(map);
}
}else if(res[i].city=='常州市'){
var row = res[i];
var lng = parseFloat(row.position.substring(0, row.position.indexOf(',')));
var lat = parseFloat(row.position.substr(row.position.indexOf(',') + 1));
// console.log(lng, lat);
if (lng != NaN && lat != NaN && lng > 100 && lat < 100) {
//画marker点
var el = document.createElement("div");
el.className = "marker";
el.cusData = row;
el.lng = lng;
el.lat = lat;
el.setAttribute("class","czfc");
var tip = document.createElement("div");
tip.setAttribute("class","wnd");
el.appendChild(tip);
el.tip = tip;
var txt = document.createElement("div");
txt.innerText = "龙园西路113号枫亚湾5幢701";
txt.setAttribute("class","txt");
tip.appendChild(txt);
tip.txt = txt;
var pos = document.createElement("div");
pos.innerText = "江苏省常州市";
pos.setAttribute("class","pos");
tip.appendChild(pos);
tip.pos = pos;
el.addEventListener("mouseover", function (e) {
$(e.target.tip).show();//(e.target.cusData.street+"("+e.target.cusData.zongdi+")");
$(e.target.tip.txt).html(e.target.cusData.street+"("+e.target.cusData.tudi+")");
$(e.target.tip.pos).html(e.target.cusData.province+e.target.cusData.city+e.target.cusData.area+e.target.cusData.street);
/////////////////////////////////自定义输出内容//////////////////////////////////////
// console.log("场景跳转@",e.target.cusData);
});
el.addEventListener("mouseleave", function (e) {
$(e.target.tip).hide();
/////////////////////////////////自定义输出内容//////////////////////////////////////
//console.log("场景跳转@" + e.target.cusData);
});
// 如果不传el会默认给一个蓝色水滴图标
var mk = new SGMap.Marker(el, {
// marker相对经纬度点坐标点的位置
anchor: "bottom",
// 相对于元素中心点,偏移的像素距离,负数代表向左和向上
offset: [0, 0]
});
mk.setLngLat([lng, lat]);
mk.addTo(map);
}
}else if(res[i].city=='南通市'){
var row = res[i];
var lng = parseFloat(row.position.substring(0, row.position.indexOf(',')));
var lat = parseFloat(row.position.substr(row.position.indexOf(',') + 1));
// console.log(lng, lat);
if (lng != NaN && lat != NaN && lng > 100 && lat < 100) {
//画marker点
var el = document.createElement("div");
el.className = "marker";
el.cusData = row;
el.lng = lng;
el.lat = lat;
el.setAttribute("class","ntfc");
var tip = document.createElement("div");
tip.setAttribute("class","wnd");
el.appendChild(tip);
el.tip = tip;
var txt = document.createElement("div");
txt.innerText = "龙园西路113号枫亚湾5幢701";
txt.setAttribute("class","txt");
tip.appendChild(txt);
tip.txt = txt;
var pos = document.createElement("div");
pos.innerText = "江苏省南通市";
pos.setAttribute("class","pos");
tip.appendChild(pos);
tip.pos = pos;
el.addEventListener("mouseover", function (e) {
$(e.target.tip).show();//(e.target.cusData.street+"("+e.target.cusData.zongdi+")");
$(e.target.tip.txt).html(e.target.cusData.street+"("+e.target.cusData.tudi+")");
$(e.target.tip.pos).html(e.target.cusData.province+e.target.cusData.city+e.target.cusData.area+e.target.cusData.street);
/////////////////////////////////自定义输出内容//////////////////////////////////////
// console.log("场景跳转@",e.target.cusData);
});
el.addEventListener("mouseleave", function (e) {
$(e.target.tip).hide();
/////////////////////////////////自定义输出内容//////////////////////////////////////
//console.log("场景跳转@" + e.target.cusData);
});
// 如果不传el会默认给一个蓝色水滴图标
var mk = new SGMap.Marker(el, {
// marker相对经纬度点坐标点的位置
anchor: "bottom",
// 相对于元素中心点,偏移的像素距离,负数代表向左和向上
offset: [0, 0]
});
mk.setLngLat([lng, lat]);
mk.addTo(map);
}
}else if(res[i].city=='连云港市'){
var row = res[i];
var lng = parseFloat(row.position.substring(0, row.position.indexOf(',')));
var lat = parseFloat(row.position.substr(row.position.indexOf(',') + 1));
// console.log(lng, lat);
if (lng != NaN && lat != NaN && lng > 100 && lat < 100) {
//画marker点
var el = document.createElement("div");
el.className = "marker";
el.cusData = row;
el.lng = lng;
el.lat = lat;
el.setAttribute("class","lygfc");
var tip = document.createElement("div");
tip.setAttribute("class","wnd");
el.appendChild(tip);
el.tip = tip;
var txt = document.createElement("div");
txt.innerText = "龙园西路113号枫亚湾5幢701";
txt.setAttribute("class","txt");
tip.appendChild(txt);
tip.txt = txt;
var pos = document.createElement("div");
pos.innerText = "江苏省连云港市";
pos.setAttribute("class","pos");
tip.appendChild(pos);
tip.pos = pos;
el.addEventListener("mouseover", function (e) {
$(e.target.tip).show();//(e.target.cusData.street+"("+e.target.cusData.zongdi+")");
$(e.target.tip.txt).html(e.target.cusData.street+"("+e.target.cusData.tudi+")");
$(e.target.tip.pos).html(e.target.cusData.province+e.target.cusData.city+e.target.cusData.area+e.target.cusData.street);
/////////////////////////////////自定义输出内容//////////////////////////////////////
// console.log("场景跳转@",e.target.cusData);
});
el.addEventListener("mouseleave", function (e) {
$(e.target.tip).hide();
/////////////////////////////////自定义输出内容//////////////////////////////////////
//console.log("场景跳转@" + e.target.cusData);
});
// 如果不传el会默认给一个蓝色水滴图标
var mk = new SGMap.Marker(el, {
// marker相对经纬度点坐标点的位置
anchor: "bottom",
// 相对于元素中心点,偏移的像素距离,负数代表向左和向上
offset: [0, 0]
});
mk.setLngLat([lng, lat]);
mk.addTo(map);
}
}else if(res[i].city=='淮安市'){
var row = res[i];
var lng = parseFloat(row.position.substring(0, row.position.indexOf(',')));
var lat = parseFloat(row.position.substr(row.position.indexOf(',') + 1));
// console.log(lng, lat);
if (lng != NaN && lat != NaN && lng > 100 && lat < 100) {
//画marker点
var el = document.createElement("div");
el.className = "marker";
el.cusData = row;
el.lng = lng;
el.lat = lat;
el.setAttribute("class","hafc");
var tip = document.createElement("div");
tip.setAttribute("class","wnd");
el.appendChild(tip);
el.tip = tip;
var txt = document.createElement("div");
txt.innerText = "龙园西路113号枫亚湾5幢701";
txt.setAttribute("class","txt");
tip.appendChild(txt);
tip.txt = txt;
var pos = document.createElement("div");
pos.innerText = "江苏省淮安市";
pos.setAttribute("class","pos");
tip.appendChild(pos);
tip.pos = pos;
el.addEventListener("mouseover", function (e) {
$(e.target.tip).show();//(e.target.cusData.street+"("+e.target.cusData.zongdi+")");
$(e.target.tip.txt).html(e.target.cusData.street+"("+e.target.cusData.tudi+")");
$(e.target.tip.pos).html(e.target.cusData.province+e.target.cusData.city+e.target.cusData.area+e.target.cusData.street);
/////////////////////////////////自定义输出内容//////////////////////////////////////
// console.log("场景跳转@",e.target.cusData);
});
el.addEventListener("mouseleave", function (e) {
$(e.target.tip).hide();
/////////////////////////////////自定义输出内容//////////////////////////////////////
//console.log("场景跳转@" + e.target.cusData);
});
// 如果不传el会默认给一个蓝色水滴图标
var mk = new SGMap.Marker(el, {
// marker相对经纬度点坐标点的位置
anchor: "bottom",
// 相对于元素中心点,偏移的像素距离,负数代表向左和向上
offset: [0, 0]
});
mk.setLngLat([lng, lat]);
mk.addTo(map);
}
}else if(res[i].city=='盐城市'){
var row = res[i];
var lng = parseFloat(row.position.substring(0, row.position.indexOf(',')));
var lat = parseFloat(row.position.substr(row.position.indexOf(',') + 1));
// console.log(lng, lat);
if (lng != NaN && lat != NaN && lng > 100 && lat < 100) {
//画marker点
var el = document.createElement("div");
el.className = "marker";
el.cusData = row;
el.lng = lng;
el.lat = lat;
el.setAttribute("class","ycfc");
var tip = document.createElement("div");
tip.setAttribute("class","wnd");
el.appendChild(tip);
el.tip = tip;
var txt = document.createElement("div");
txt.innerText = "龙园西路113号枫亚湾5幢701";
txt.setAttribute("class","txt");
tip.appendChild(txt);
tip.txt = txt;
var pos = document.createElement("div");
pos.innerText = "江苏省盐城市";
pos.setAttribute("class","pos");
tip.appendChild(pos);
tip.pos = pos;
el.addEventListener("mouseover", function (e) {
$(e.target.tip).show();//(e.target.cusData.street+"("+e.target.cusData.zongdi+")");
$(e.target.tip.txt).html(e.target.cusData.street+"("+e.target.cusData.tudi+")");
$(e.target.tip.pos).html(e.target.cusData.province+e.target.cusData.city+e.target.cusData.area+e.target.cusData.street);
/////////////////////////////////自定义输出内容//////////////////////////////////////
// console.log("场景跳转@",e.target.cusData);
});
el.addEventListener("mouseleave", function (e) {
$(e.target.tip).hide();
/////////////////////////////////自定义输出内容//////////////////////////////////////
//console.log("场景跳转@" + e.target.cusData);
});
// 如果不传el会默认给一个蓝色水滴图标
var mk = new SGMap.Marker(el, {
// marker相对经纬度点坐标点的位置
anchor: "bottom",
// 相对于元素中心点,偏移的像素距离,负数代表向左和向上
offset: [0, 0]
});
mk.setLngLat([lng, lat]);
mk.addTo(map);
}
}else if(res[i].city=='徐州市'){
var row = res[i];
var lng = parseFloat(row.position.substring(0, row.position.indexOf(',')));
var lat = parseFloat(row.position.substr(row.position.indexOf(',') + 1));
// console.log(lng, lat);
if (lng != NaN && lat != NaN && lng > 100 && lat < 100) {
//画marker点
var el = document.createElement("div");
el.className = "marker";
el.cusData = row;
el.lng = lng;
el.lat = lat;
el.setAttribute("class","xzfc");
var tip = document.createElement("div");
tip.setAttribute("class","wnd");
el.appendChild(tip);
el.tip = tip;
var txt = document.createElement("div");
txt.innerText = "龙园西路113号枫亚湾5幢701";
txt.setAttribute("class","txt");
tip.appendChild(txt);
tip.txt = txt;
var pos = document.createElement("div");
pos.innerText = "江苏省徐州市";
pos.setAttribute("class","pos");
tip.appendChild(pos);
tip.pos = pos;
el.addEventListener("mouseover", function (e) {
$(e.target.tip).show();//(e.target.cusData.street+"("+e.target.cusData.zongdi+")");
$(e.target.tip.txt).html(e.target.cusData.street+"("+e.target.cusData.tudi+")");
$(e.target.tip.pos).html(e.target.cusData.province+e.target.cusData.city+e.target.cusData.area+e.target.cusData.street);
/////////////////////////////////自定义输出内容//////////////////////////////////////
// console.log("场景跳转@",e.target.cusData);
});
el.addEventListener("mouseleave", function (e) {
$(e.target.tip).hide();
/////////////////////////////////自定义输出内容//////////////////////////////////////
//console.log("场景跳转@" + e.target.cusData);
});
// 如果不传el会默认给一个蓝色水滴图标
var mk = new SGMap.Marker(el, {
// marker相对经纬度点坐标点的位置
anchor: "bottom",
// 相对于元素中心点,偏移的像素距离,负数代表向左和向上
offset: [0, 0]
});
mk.setLngLat([lng, lat]);
mk.addTo(map);
}
}
}
@ -1560,7 +978,8 @@ function send(val) {
$(e.target.tip).hide();
});
el.addEventListener("click", function (e) {
console.log("e",e.target.cusData.jd)
window.parent.postMessage({ data:"办公用地",params:e.target.cusData.jd,type:e.target.cusData.type},'*');
});
// 如果不传el会默认给一个蓝色水滴图标
var mk = new SGMap.Marker(el, {
@ -1577,195 +996,23 @@ function send(val) {
}
});
}
function show(val){
console.log("val",val)
if(val=='jd'){
visibleTD()
$(".fc").hide();
}else{
visibleFC()
$(".td").hide();
}
}
function visibleFC(val){
$(".fc").show();
// if(val)
// $(".fc").show();
// else
// $(".fc").hide();
if(val=='nanjing'){
$(".fc").show();
$(".yzfc").hide();
$(".tzfc").hide();
$(".sqfc").hide();
$(".wxfc").hide();
$(".szfc").hide();
$(".czfc").hide();
$(".ntfc").hide();
$(".lygfc").hide();
$(".hafc").hide();
$(".ycfc").hide();
$(".xzfc").hide();
$(".zjfc").hide();
}else if(val=='yangzhou'){
$(".fc").hide();
$(".yzfc").show();
$(".tzfc").hide();
$(".sqfc").hide();
$(".wxfc").hide();
$(".szfc").hide();
$(".czfc").hide();
$(".ntfc").hide();
$(".lygfc").hide();
$(".hafc").hide();
$(".ycfc").hide();
$(".xzfc").hide();
$(".zjfc").hide();
}else if(val=='huaian'){
$(".fc").hide();
$(".yzfc").hide();
$(".tzfc").hide();
$(".sqfc").hide();
$(".wxfc").hide();
$(".szfc").hide();
$(".czfc").hide();
$(".ntfc").hide();
$(".lygfc").hide();
$(".hafc").show();
$(".ycfc").hide();
$(".xzfc").hide();
$(".zjfc").hide();
}else if(val=='taizhou'){
$(".fc").hide();
$(".yzfc").hide();
$(".tzfc").show();
$(".sqfc").hide();
$(".wxfc").hide();
$(".szfc").hide();
$(".czfc").hide();
$(".ntfc").hide();
$(".lygfc").hide();
$(".hafc").hide();
$(".ycfc").hide();
$(".xzfc").hide();
$(".zjfc").hide();
}else if(val=='changzhou'){
$(".fc").hide();
$(".yzfc").hide();
$(".tzfc").hide();
$(".sqfc").hide();
$(".wxfc").hide();
$(".szfc").hide();
$(".czfc").show();
$(".ntfc").hide();
$(".lygfc").hide();
$(".hafc").hide();
$(".ycfc").hide();
$(".xzfc").hide();
$(".zjfc").hide();
}else if(val=='wuxi'){
$(".fc").hide();
$(".yzfc").hide();
$(".tzfc").hide();
$(".sqfc").hide();
$(".wxfc").show();
$(".szfc").hide();
$(".czfc").hide();
$(".ntfc").hide();
$(".lygfc").hide();
$(".hafc").hide();
$(".ycfc").hide();
$(".xzfc").hide();
$(".zjfc").hide();
}else if(val=='xuzhou'){
$(".fc").hide();
$(".yzfc").hide();
$(".tzfc").hide();
$(".sqfc").hide();
$(".wxfc").hide();
$(".szfc").hide();
$(".czfc").hide();
$(".ntfc").hide();
$(".lygfc").hide();
$(".hafc").hide();
$(".ycfc").hide();
$(".xzfc").show();
$(".zjfc").hide();
}else if(val=='nantong'){
$(".fc").hide();
$(".yzfc").hide();
$(".tzfc").hide();
$(".sqfc").hide();
$(".wxfc").hide();
$(".szfc").hide();
$(".czfc").hide();
$(".ntfc").show();
$(".lygfc").hide();
$(".hafc").hide();
$(".ycfc").hide();
$(".xzfc").hide();
$(".zjfc").hide();
}else if(val=='suzhou'){
$(".fc").hide();
$(".yzfc").hide();
$(".tzfc").hide();
$(".sqfc").hide();
$(".wxfc").hide();
$(".szfc").show();
$(".czfc").hide();
$(".ntfc").hide();
$(".lygfc").hide();
$(".hafc").hide();
$(".ycfc").hide();
$(".xzfc").hide();
$(".zjfc").hide();
}else if(val=='zhenjiang'){
$(".fc").hide();
$(".yzfc").hide();
$(".tzfc").hide();
$(".sqfc").hide();
$(".wxfc").hide();
$(".szfc").hide();
$(".czfc").hide();
$(".ntfc").hide();
$(".lygfc").hide();
$(".hafc").hide();
$(".ycfc").hide();
$(".xzfc").hide();
$(".zjfc").show();
}else if(val=='suqian'){
$(".fc").hide();
$(".yzfc").hide();
$(".tzfc").hide();
$(".sqfc").show();
$(".wxfc").hide();
$(".szfc").hide();
$(".czfc").hide();
$(".ntfc").hide();
$(".lygfc").hide();
$(".hafc").hide();
$(".ycfc").hide();
$(".xzfc").hide();
$(".zjfc").hide();
}else if(val=='yancheng'){
$(".fc").hide();
$(".yzfc").hide();
$(".tzfc").hide();
$(".sqfc").hide();
$(".wxfc").hide();
$(".szfc").hide();
$(".czfc").hide();
$(".ntfc").hide();
$(".lygfc").hide();
$(".hafc").hide();
$(".ycfc").show();
$(".xzfc").hide();
$(".zjfc").hide();
}else if(val=='lianyungang'){
$(".fc").hide();
$(".yzfc").hide();
$(".tzfc").hide();
$(".sqfc").hide();
$(".wxfc").hide();
$(".szfc").hide();
$(".czfc").hide();
$(".ntfc").hide();
$(".lygfc").show();
$(".hafc").hide();
$(".ycfc").hide();
$(".xzfc").hide();
$(".zjfc").hide();
}
}
function visibleTD(val){

File diff suppressed because one or more lines are too long

Binary file not shown.

16
public/sgs/Build/sgs.json Normal file
View File

@ -0,0 +1,16 @@
{
"companyName": "DefaultCompany",
"productName": "ShengDaPing",
"productVersion": "0.1",
"dataUrl": "sgs.data.unityweb",
"wasmCodeUrl": "sgs.wasm.code.unityweb",
"wasmFrameworkUrl": "sgs.wasm.framework.unityweb",
"graphicsAPI": ["WebGL 2.0"],
"webglContextAttributes": {"preserveDrawingBuffer": false},
"splashScreenStyle": "Dark",
"backgroundColor": "#231F20",
"cacheControl": {"default": "must-revalidate"},
"developmentBuild": false,
"multithreading": false,
"unityVersion": "2019.4.36f1c1"
}

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
https://web-1300932214.cos.ap-nanjing.myqcloud.com/sgs/index.html

View File

@ -0,0 +1 @@
https://web-1300932214.cos.ap-nanjing.myqcloud.com/sgs/Map/sgmap出行安全/sgmap.html

View File

@ -0,0 +1 @@
https://web-1300932214.cos.ap-nanjing.myqcloud.com/sgs/Map/sgmap房地资源/sgmap.html

View File

@ -0,0 +1 @@
https://web-1300932214.cos.ap-nanjing.myqcloud.com/sgs/Map/sgmap智慧工地/sgmap.html

View File

@ -0,0 +1 @@
https://web-1300932214.cos.ap-nanjing.myqcloud.com/sgs/Map/sgmap绿色双碳/sgmap.html

View File

@ -0,0 +1 @@
https://web-1300932214.cos.ap-nanjing.myqcloud.com/sgs/Map/sgmap食品安全/sgmap.html

View File

@ -0,0 +1,24 @@
function UnityProgress(unityInstance, progress) {
if (!unityInstance.Module)
return;
if (!unityInstance.logo) {
unityInstance.logo = document.createElement("div");
unityInstance.logo.className = "logo " + unityInstance.Module.splashScreenStyle;
unityInstance.container.appendChild(unityInstance.logo);
}
if (!unityInstance.progress) {
unityInstance.progress = document.createElement("div");
unityInstance.progress.className = "progress " + unityInstance.Module.splashScreenStyle;
unityInstance.progress.empty = document.createElement("div");
unityInstance.progress.empty.className = "empty";
unityInstance.progress.appendChild(unityInstance.progress.empty);
unityInstance.progress.full = document.createElement("div");
unityInstance.progress.full.className = "full";
unityInstance.progress.appendChild(unityInstance.progress.full);
unityInstance.container.appendChild(unityInstance.progress);
}
unityInstance.progress.full.style.width = (100 * progress) + "%";
unityInstance.progress.empty.style.width = (100 * (1 - progress)) + "%";
if (progress == 1)
unityInstance.logo.style.display = unityInstance.progress.style.display = "none";
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 155 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 B

Some files were not shown because too many files have changed in this diff Show More