Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
任超
/
js.CadastralSystem
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
5f9181c5
authored
2021-02-03 11:26:51 +0800
by
jikai
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
jikai commit
1 parent
3c119e75
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
9 deletions
src/assets/json/layerTreeData.json
src/assets/json/layers.json
src/components/lineTree/lineItem.vue
src/components/lineTree/lineTree.vue
src/components/lineTree/tx/importGeo.vue
src/components/lineTree/tx/js/geoUtils.js
src/libs/map/featureUpdate.js
src/views/systemTX/map.vue
src/views/systemTX/mapWeight/mapTools.vue
src/assets/json/layerTreeData.json
View file @
5f9181c
[{
"label"
:
"专题树"
,
"id"
:
"1"
,
"type"
:
"layerGroup"
,
"type"
:
"layerGroup"
,
"alpha"
:
100
,
"children"
:[
{
...
...
src/assets/json/layers.json
View file @
5f9181c
[{
"layerName"
:
"ZDJBXX"
,
"layerName"
:
"ZDJBXX"
,
"layerLabel"
:
"宗地"
,
"layerUrl"
:
"https://192.168.2.146:6443/arcgis/rest/services/qj/BDCDY/MapServer"
,
"id"
:
2
,
...
...
src/components/lineTree/lineItem.vue
View file @
5f9181c
...
...
@@ -218,7 +218,7 @@ export default {
// }
//判断楼盘类型
switch
(
item
.
type
)
{
case
'zd'
:
case
'zd'
:
this
.
$emit
(
"changeIsZD"
,
true
);
this
.
$emit
(
"changeVisible"
,
true
);
break
;
...
...
src/components/lineTree/lineTree.vue
View file @
5f9181c
...
...
@@ -110,7 +110,7 @@
<ul
v-show=
"lpbvisible"
:style=
"
{ left: lpbleft + 'px', top: lpbtop + 'px' }"
class="contextmenu"
class="contextmenu"
>
<li
v-show=
"zdData.type == 'zrz'"
@
click=
"openLpbDialog('ljz')"
>
添加逻辑幢
</li>
<li
v-show=
"zdData.type == 'zrz' || zdData.type == 'ljz'"
@
click=
"openLpbDialog('zdy')"
>
添加幢单元
</li>
...
...
src/components/lineTree/tx/importGeo.vue
View file @
5f9181c
...
...
@@ -513,7 +513,7 @@ export default {
self
.
createJZLine
(
graphic
,
function
(
res
)
{
lines
=
res
;
self
.
saveJzx
(
lines
);
});
});
}
self
.
$message
.
success
(
"保存成功!!!"
);
self
.
goMap
();
...
...
src/components/lineTree/tx/js/geoUtils.js
View file @
5f9181c
...
...
@@ -199,7 +199,7 @@ export default {
if
(
!
results
||
results
.
length
==
0
){
callBacFunction
(
true
,
"不在行政区内,请检查空间位置信息!!!"
);
}
for
(
var
i
=
0
;
i
<
results
.
length
;
i
++
){
for
(
var
i
=
0
;
i
<
results
.
length
;
i
++
){
var
feature
=
results
[
i
].
feature
;
var
flag
=
geometryEngine
.
intersects
(
polygon
,
feature
.
geometry
);
var
withinFlag
=
geometryEngine
.
within
(
polygon
,
feature
.
geometry
);
...
...
src/libs/map/featureUpdate.js
View file @
5f9181c
...
...
@@ -46,7 +46,7 @@ export default {
saveGraphics
.
push
(
saveGraphic
);
}
featureLayer
.
applyEdits
({
addFeatures
:
saveGraphics
addFeatures
:
saveGraphics
}).
then
(
function
(
res
){
if
(
callBackFunction
&&
typeof
callBackFunction
==
'function'
){
callBackFunction
(
res
);
...
...
src/views/systemTX/map.vue
View file @
5f9181c
...
...
@@ -175,7 +175,7 @@ export default {
sideTools
},
data
(){
return
{
return
{
viewId
:
"testMap"
,
// layerUrl:"http://192.168.2.201:6080/arcgis/rest/services/%E4%BA%92%E8%81%94%E7%BD%91%E5%8A%A0%E4%B8%8D%E5%8A%A8%E4%BA%A7/XA_%E4%B8%8D%E5%8A%A8%E4%BA%A7/MapServer",
layerUrl
:
'https://192.168.2.146:6443/arcgis/rest/services/qj/XZQH/MapServer'
,
// 行政区划
...
...
src/views/systemTX/mapWeight/mapTools.vue
View file @
5f9181c
...
...
@@ -89,7 +89,7 @@ export default {
},
mixins
:[
draw
,
identifyUtils
,
measure
,
mapTools
],
data
(){
return
{
return
{
// url:"http://192.168.2.201:6080/arcgis/rest/services/%E4%BA%92%E8%81%94%E7%BD%91%E5%8A%A0%E4%B8%8D%E5%8A%A8%E4%BA%A7/XA_%E4%B8%8D%E5%8A%A8%E4%BA%A7/MapServer",
// url: 'https://192.168.2.146:6443/arcgis/rest/services/qj/XZQH/MapServer',
url
:
'https://192.168.2.146:6443/arcgis/rest/services/qj/BDCDY/MapServer'
,
...
...
Please
register
or
sign in
to post a comment