@@ -8,4 +8,8 @@ module.exports = {
url: config.base_url + "region/list",
type: "post",
},
+ listArea: {
+ url: config.base_url + "temp_blue_region/list",
+ type: "get",
+ },
}
@@ -44,6 +44,9 @@
</div>
<tool-list direction="right" :list="rightToolList"></tool-list>
+
+ <!-- 图例 -->
+ <img class="legend" src="@/assets/images/home/legend.png" alt="">
<div ref="mapRef" class="bottom-map"></div>
@@ -217,6 +220,13 @@ const toFilePage = () => {
+ .legend{
+ position: fixed;
+ bottom: 8px;
+ right: 64px;
+ width: 525px;
+ height: 16px;
+ }
.bottom-map {
@@ -19,7 +19,7 @@ class HomeMap {
initMap(location, target) {
- let level = 16;
+ let level = 18;
let coordinate = util.wktCastGeom(location).getFirstCoordinate();
this.kmap = new KMap.Map(target, level, coordinate[0], coordinate[1], null, 6, 22);
@@ -38,7 +38,7 @@ class RegionLayer {
initData(farmId){
let that = this
- VE_API.region.list({farmId}).then(({data})=>{
+ VE_API.region.listArea().then(({data})=>{
let features = []
for(let item of data){
let f = newRegionFeature(item,"wkt");