123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417 |
- <template>
- <view class="map-box">
- <search ref="searchRef" @handleSearch="handleSearch" v-if="showMap" />
- <tiandituMap ref="tiandituMapRefs" @handleSearch="handleSearch" @clickMap="handleClickMap" @moveMap="moveMapSearch"
- @onLoadTianDiTu="initMaps" @onSelect="selectPoint" :apiKey="apiKey">
- </tiandituMap>
- <bab-Touchbox ref="TouchboxRef" v-if="showMap && siteListArr && siteListArr.length > 0" :zIndex="1001"
- :minHeight="0.35" :maxHeight="0.8" :touchHeight="64" @currentHeight="setTouchHeight"
- @maxtHeight="setScrollMaxHeight">
- <scroll-view :style="{'height':TouchHeight - 40 +'px' }" scroll-y="true" :show-scrollbar="false">
- <template v-for="item in siteListArr">
- <siteListModel :info="item" />
- </template>
- </scroll-view>
- </bab-Touchbox>
- <siteDetails ref="siteDetailsRef" />
- </view>
- </template>
- <script>
- import tools from '@/components/tiandituMap/tools.js'
- import search from "./model/search.vue"
- import siteListModel from "./model/siteList.vue";
- import { getMapCenterPoint_Api, getMapList_Api } from "@/api/map.js"
- import { getLocation } from "@/utils/tool.js"
- import siteDetails from "./model/siteDetails.vue"
- export default {
- name: 'tdtmap',
- components: {
- search,
- siteListModel,
- siteDetails
- },
- data() {
- return {
- selfLatitude: undefined,
- selfLongitude: undefined,
- showMap: false,
- longitude: undefined,
- latitude: undefined,
- apiKey: '1edd9c001a8425cb93631398109d5ab2',
- winWidth: 0,
- winHeight: 0,
- winTop: 0,
- datalist: [],
- startY: 0,
- // domMaxHeight: '50vh',
- // domMinHeight: '0vh',
- selectItem: {},
- iStatusBarHeight: 0,
- option: {
- apikey: '123123',
- },
- siteListArr: [],
- TouchHeight: 0,
- }
- },
- created() {
- console.log('获取位置失败 22211---------------');
- try {
- navigator.geolocation.getCurrentPosition(function(position) {
- console.log("Latitude is :", position.coords.latitude);
- console.log("Longitude is :", position.coords.longitude);
- }, function(error) {
- console.error("Error Code = " + error.code + " - " + error.message);
- });
- } catch (error) {
- //TODO handle the exception
- console.log('获取位置失败 999999999999 ---------------', error);
- }
- console.log('获取位置失败 22233---------------');
- this.getMapCenterPoint()
- },
- mounted() {
- getLocation().then(res => {
- this.selfLatitude = res.longitude;
- this.selfLongitude = res.latitude;
- })
- },
- watch: {
- siteListArr: {
- handler(newArr) {
- console.log('newArr === ' , newArr)
- try {
- this.$refs.tiandituMapRefs.clearIcon();
- } catch (error) {}
- this.$nextTick(() => {
- (newArr || []).forEach(el => {
- const { longitude, latitude, mapTypeIcon } = el
- this.$refs.tiandituMapRefs.setIcon(longitude, latitude, false, mapTypeIcon);
- })
- })
- },
- deep: true
- }
- },
- methods: {
- // 点击地图
- handleClickMap() {
- if (this.$refs.TouchboxRef) {
- this.$refs.TouchboxRef.concealList()
- }
- },
- // 获取地图中心点
- getMapCenterPoint() {
- uni.showLoading()
- this.showMap = false;
- getMapCenterPoint_Api().then(res => {
- const { longitude, latitude, mapTypeIcon } = res || {};
- this.longitude = longitude;
- this.latitude = latitude;
- this.open(longitude, latitude, mapTypeIcon)
- // this.$nextTick(() => {
- // this.handleSearch()
- // })
- }).catch(err => { this.open(null, null) }).finally(() => {
- uni.hideLoading()
- })
- },
- moveMapSearch(parms) {
- const { Lng, Lat } = parms;
- this.longitude = Lng;
- this.latitude = Lat;
- this.$refs.searchRef.onSearchFocus()
- // console.log("moveMapSearch", Lng, Lat)
- },
- handleSearch(val = {}) {
- const parms = {
- ...val,
- longitude: this.longitude,
- latitude: this.latitude,
- radius: 5000,
- selfLatitude: this.selfLatitude,
- selfLongitude: this.selfLongitude
- };
- getMapList_Api(parms).then(res => {
- if (!res || res.length === 0) {
- uni.showToast({
- title: "当前区域无服务",
- icon: 'none'
- })
- }
- this.siteListArr = res || [];
- }).catch(err => {
- this.siteListArr = [];
- })
- },
- open(lon, lat, mapTypeIcon) {
- if (lon && lat) {
- this.$nextTick(() => {
- this.$refs.tiandituMapRefs.initCharts(lon, lat, mapTypeIcon)
- this.showMap = true;
- })
- } else {
- uni.showModal({
- title: '提示',
- content: '地图中心点获取错误,请联系管理员!',
- success: res => {
- // console.log("showModal == ", res)
- if (res.confirm) {}
- }
- })
- }
- },
- close() {
- this.visible = false
- },
- onConfirm() {
- if (Object.keys(this.selectItem).length) {
- this.visible = false
- this.$emit('onSelect', this.selectItem)
- } else {
- tools.createMessage('请选择位置')
- }
- },
- upDateLonLat(lon, lat) {
- if (lon && lat) {
- this.$refs.tiandituMapRefs.upDataCharts(lon, lat)
- } else {
- console.error('请传入lon, lat')
- }
- },
- tianidtuSearch(value) {
- if (value.city) {
- this.cityInfoSearch(value)
- } else {
- this.infoSearch(value)
- }
- },
- async infoSearch(value) { // 地理编码查询
- let params = {
- ds: {
- "keyWord": value.keyword,
- },
- tk: this.apiKey,
- }
- let resData = await tools.createRequest('https://api.tianditu.gov.cn/geocoder', params, true)
- if (resData.status === '0') {
- const location = resData.location
- const formateOne = tools.formatterAdressLocation(resData, 3)
- this.datalist = [formateOne]
- this.selectItem = datalist
- this.$refs.tiandituMapRefs.upDataCharts(location.lon, location.lat)
- }
- },
- async cityInfoSearch(value) { // 地名搜索2.0
- let params = {
- postStr: {
- "keyWord": value.keyword,
- "queryType": 12,
- "start": 0,
- "count": 10,
- "specify": value.city.value
- },
- type: 'query',
- tk: this.apiKey,
- }
- let resData = await tools.createRequest('https://api.tianditu.gov.cn/v2/search', params, true)
- if (resData.status.infocode === 1000) {
- const {
- pois: aPoints,
- count
- } = resData
- if (count === '0' || !aPoints || !aPoints.length) {
- return tools.createMessage('没有找到该地址')
- }
- const {
- pois,
- keyWord,
- lonlat
- } = aPoints[0]
- const formateData = aPoints.map((item) => tools.formatterAdressLocation(item, 2))
- this.datalist = formateData
- this.selectItem = formateData[0]
- const [lon, lat] = lonlat.split(',')
- this.$refs.tiandituMapRefs.upDataCharts(lon, lat)
- } else {
- tools.createMessage('数据异常', 1000, false, 'error')
- }
- },
- selectListItem(item) {
- this.$refs.tiandituMapRefs.upDataCharts(item.location.lon, item.location.lat)
- },
- selectPoint(e) {
- this.domMinHeight = '0vh'
- this.datalist = [e]
- this.selectItem = e
- },
- initMaps() {
- console.warn('--------天地图加载完成--------');
- this.$emit('onLoad')
- },
- // start(e) {
- // const clientY = e.changedTouches[0].clientY
- // this.startY = clientY
- // },
- // end(e) {
- // const transformY = e.changedTouches[0].clientY - this.startY;
- // switch (true) {
- // case transformY > 50:
- // console.log('下划')
- // this.domMaxHeight = '20vh'
- // this.domMinHeight = '0vh'
- // break;
- // case transformY < -50:
- // console.log('上划')
- // this.domMaxHeight = '50vh'
- // this.domMinHeight = '50vh'
- // break;
- // default:
- // break;
- // }
- // },
- selectCard(item) {
- this.domMaxHeight = '20vh'
- this.domMinHeight = '0vh'
- this.selectItem = item
- this.selectListItem(item)
- },
- setTouchHeight(val) {
- // console.log('setScrollHeight = ', val)
- // 实时返回的滑动组件高度
- this.TouchHeight = val;
- },
- setScrollMaxHeight(val) {
- //最大高度
- this.scrollMaxHeight = val;
- },
- }
- }
- </script>
- <style scope>
- .map-box {
- width: 100vw;
- height: 100vh;
- }
- .mask {
- /* overflow: hidden; */
- position: fixed;
- left: 0;
- background-color: #FFFFFF;
- z-index: 399;
- }
- /* footer */
- .list-boxd {
- position: absolute;
- bottom: 0;
- left: 0;
- z-index: 401;
- right: 0;
- border-radius: 14px 14px 0 0;
- background: #FFFFFF;
- transition: all 1s;
- }
- .list-header {
- height: 20px;
- position: relative;
- border-bottom: 1px solid #f3f4f6;
- cursor: pointer;
- }
- .list-header::after {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- content: '';
- height: 6px;
- width: 60px;
- border-top: 1px solid #e8e8e8;
- border-bottom: 1px solid #e8e8e8;
- }
- .list-content {
- max-height: 50vh;
- overflow-y: scroll;
- }
- .card {
- min-height: 44px;
- padding: 12px;
- position: relative;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .card-left {
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .card-right {
- padding-right: 10px;
- }
- .arrow {
- border-top: 2px solid #666666;
- border-right: 2px solid #666666;
- width: 10px;
- height: 10px;
- transform: rotate(45deg);
- }
- .card:active {
- background-color: #f3f4f6;
- }
- .card::after {
- position: absolute;
- content: '';
- bottom: 0;
- height: 1px;
- background-color: #e8e8e8;
- width: 90%;
- }
- .card:last-child::after {
- height: 0;
- background-color: #FFFFFF;
- }
- .card-title {
- font-size: 18px;
- }
- .card-text {
- color: #e8e8e8;
- font-size: 13px;
- }
- </style>
|