|
|
|
@ -25,6 +25,7 @@ Page({
|
|
|
|
|
* 页面的初始数据 |
|
|
|
|
*/ |
|
|
|
|
data: { |
|
|
|
|
switchYear:true, |
|
|
|
|
satellite: 1, |
|
|
|
|
scale: 13, |
|
|
|
|
latitude: 29.543812, |
|
|
|
@ -236,6 +237,12 @@ Page({
|
|
|
|
|
if (sIdx > this.data.indexEnd) { |
|
|
|
|
sIdx = this.data.indexEnd; |
|
|
|
|
} |
|
|
|
|
this.deletPolygon(1); |
|
|
|
|
this.removeFeaturesToList(1); |
|
|
|
|
this.inWhich({ |
|
|
|
|
latitude:0, |
|
|
|
|
longitude:0 |
|
|
|
|
}, 1); |
|
|
|
|
this.setData({ |
|
|
|
|
start: arryList[sIdx].value, |
|
|
|
|
indexStart: sIdx |
|
|
|
@ -246,6 +253,12 @@ Page({
|
|
|
|
|
if (eIdx < this.data.indexStart) { |
|
|
|
|
eIdx = this.data.indexStart; |
|
|
|
|
} |
|
|
|
|
this.deletPolygon(1); |
|
|
|
|
this.removeFeaturesToList(1); |
|
|
|
|
this.inWhich({ |
|
|
|
|
latitude:0, |
|
|
|
|
longitude:0 |
|
|
|
|
}, 1); |
|
|
|
|
this.setData({ |
|
|
|
|
end: arryList[eIdx].value, |
|
|
|
|
indexEnd: eIdx, |
|
|
|
@ -384,9 +397,11 @@ Page({
|
|
|
|
|
case 1: |
|
|
|
|
// 已出让
|
|
|
|
|
if (state) { |
|
|
|
|
this.setData({switchYear:true}) |
|
|
|
|
this.deletPolygon(id); |
|
|
|
|
this.removeFeaturesToList(id); |
|
|
|
|
} else { |
|
|
|
|
this.setData({switchYear:false}) |
|
|
|
|
this.inWhich({ |
|
|
|
|
latitude, |
|
|
|
|
longitude |
|
|
|
|