zxl
15 小时以前 172933f098017bc4c4f57dcda0d490ea12bb13bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<template>
  <div class="map">
 
    <div class="address">{{ addrContent.address }}</div>
    <div id="map-container"></div>
 
    <div class="search-con">
      <Input placeholder="输入关键字搜索" id="input-map" v-model="mapSearch" />
      <ul>
        <li v-for="(tip, index) in tips" :key="index" @click="selectAddr(tip.location)">
          <p>{{ tip.name }}</p>
          <p>{{ tip.district + tip.address }}</p>
        </li>
      </ul>
    </div>
    <div slot="footer" class="footer">
 
      <Button type="primary" :loading="loading" @click="ok">确定</Button>
    </div>
 
  </div>
</template>
<script>
import AMapLoader from "@amap/amap-jsapi-loader";
import { handleRegion } from "@/api/address.js";
 
const config = require('@/config/index')
export default {
  name: "map",
  data() {
    return {
      config,
      showMap: false, // 地图显隐
      mapSearch: "", // 地图搜索
      map: null, // 初始化地图
      autoComplete: null, // 初始化搜索方法
      geocoder: null, // 初始化地理、坐标转化
      positionPicker: null, // 地图拖拽选点
      tips: [], //搜索关键字列表
      addrContent: {}, // 回显地址信息
      loading: false, // 加载状态
    };
  },
  watch: {
    mapSearch: function (val) {
      this.searchOfMap(val);
    },
  },
  methods: {
    ok() {
 
      if (this.addrContent && this.addrContent.regeocode) {
        const params = {
          cityCode: this.addrContent.regeocode.addressComponent.citycode,
          townName: this.addrContent.regeocode.addressComponent.township,
        };
        handleRegion(params).then((res) => {
          if (res.success) {
            this.addrContent.addr = res.result.name.replace(/,/g, " ");
            this.addrContent.addrId = res.result.id;
            this.loading = false;
 
            this.$emit("getAddress", this.addrContent);
          }
        });
      } else {
        this.$Message.error('未获取到坐标信息!请查看高德API配置是否正确')
      }
 
    },
    init() {
      AMapLoader.load({
        key: this.config.aMapKey, // 申请好的Web端开发者Key,首次调用 load 时必填
        version: "", // 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15
        plugins: [
          "AMap.ToolBar",
          "AMap.Autocomplete",
          "AMap.PlaceSearch",
          "AMap.Geolocation",
          "AMap.Geocoder",
        ], // 需要使用的的插件列表,如比例尺'AMap.Scale'等
        AMapUI: {
          // 是否加载 AMapUI,缺省不加载
          version: "1.1", // AMapUI 缺省 1.1
          plugins: ["misc/PositionPicker"], // 需要加载的 AMapUI ui插件
        },
      })
        .then((AMap) => {
          let that = this;
          this.map = new AMap.Map("map-container", {
            zoom: 12,
          });
          that.map.addControl(new AMap.ToolBar());
          that.map.addControl(new AMap.Autocomplete());
          that.map.addControl(new AMap.PlaceSearch());
          that.map.addControl(new AMap.Geocoder());
 
          // 实例化Autocomplete
          let autoOptions = {
            city: "全国",
          };
          that.autoComplete = new AMap.Autocomplete(autoOptions); // 搜索
          that.geocoder = new AMap.Geocoder(autoOptions);
 
          that.positionPicker = new AMapUI.PositionPicker({
            // 拖拽选点
            mode: "dragMap",
            map: that.map,
          });
          that.positionPicker.start();
          /**
           *
           * 所有回显数据,都在positionResult里面
           * 需要字段可以查找
           *
           */
          that.positionPicker.on("success", function (positionResult) {
            that.addrContent = positionResult;
          });
        })
        .catch((e) => { });
    },
    searchOfMap(val) {
      // 地图搜索
      let that = this;
      this.autoComplete.search(val, function (status, result) {
        // 搜索成功时,result即是对应的匹配数据
        if (status == "complete" && result.info == "OK") {
          that.tips = result.tips;
        } else {
          that.tips = [];
        }
      });
    },
    selectAddr(location) {
      // 选择坐标
      if (!location) {
        this.$Message.warning("请选择正确点位");
        return false;
      }
      const lnglat = [location.lng, location.lat];
      this.positionPicker.start(lnglat);
    },
  },
  mounted() {
    this.init();
  },
};
</script>
<style lang="scss" scoped>
#map-container {
  width: 500px;
  height: 400px;
}
 
.search-con {
  position: absolute;
  right: 20px;
  top: 64px;
  width: 260px;
 
  ul {
    width: 260px;
    height: 360px;
    overflow: scroll;
 
    li {
      padding: 5px;
 
      p:nth-child(2) {
        color: #999;
        font-size: 12px;
      }
 
      &:hover {
        background-color: #eee;
        cursor: pointer;
      }
    }
  }
}
 
.address {
  margin-bottom: 10px;
  // color: $theme_color;
  font-weight: bold;
}
 
.footer {
  text-align: right;
  margin: 10px 0;
}
</style>