123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535 |
- <template>
- <view class="content">
- <view id="map" class="map">
- <map @updated='mapChange' id="map_1" ref='map_1' style="width:750rpx; height: 600rpx" :latitude="latitude"
- :longitude="longitude" :markers="marker"></map>
- </view>
- <scroll-view scroll-y="true" class="scroll-wrapper" :style="{'height': height}" @scrolltolower="loadData">
- <espempty v-if="loaded && AEDList.length === 0" :tit="'智能AED列表为空'"></espempty>
- <view class="list-tpl flex" @click="openAddress(item)" v-for="(item, index) in AEDList" :key="item.id">
- <template>
- <view class="list-left">
- <view class="info">
- <view class="title">{{ item.introduction }}</view>
- <view class="addr">地址:{{ item.address }}</view>
- </view>
- </view>
- <view class="image">
- <image src="../../static/img/img10.png"></image>
- <view class="tip" v-if="item.space > 999">>999m</view>
- <view class="tip" v-else>{{ item.space }}m</view>
- </view>
- </template>
- </view>
- <uni-load-more :status="loadtype"></uni-load-more>
- </scroll-view>
- <uni-popup ref="popup" type="bottom" @click="close">
- <view class="popup_row">
- <view class="rows">
- <view class="rows-item" @click="toGaodeMap">高德地图</view>
- <view class="rows-item" @click="tobaiDuMap">百度地图</view>
- <view class="rows-item" @click="totengxunMap">腾讯地图</view>
- </view>
- </view>
- </uni-popup>
- </view>
- </template>
- <script>
- import {
- mapState,
- mapMutations
- } from 'vuex';
- import espempty from '@/components/espempty';
- import uniPopup from '@/components/uni-popup/uni-popup.vue';
- import uniLoadMore from '@/components/uni-load-more/uni-load-more.vue';
- import {
- getdis,
- tocall,
- getListAED
- } from '@/api/index.js';
- import {
- userinfo
- } from '@/api/user.js';
- import {
- getcomAddress
- } from '@/api/index.js';
- import {
- getAed
- } from '@/api/category.js'
- export default {
- components: {
- uniPopup,
- espempty,
- uniLoadMore
- },
- //相关配置参数
- data() {
- return {
- aedmarker: [],
- loaded: false,
- loadtype: 'more',
- page: 1,
- limit: 10,
- AEDList: [],
- height: '',
- list: [],
- latitude: '',
- // 本地坐标
- longitude: '',
- current: 0,
- name: '',
- uid: '',
- name: '',
- phone: '',
- to_phone: '',
- marker: [],
- specificAdd: '',
- addressData: {
- name: '',
- mobile: '',
- latitude: 0, //纬度
- longitude: 0, //经度
- address: {
- province: '',
- city: '',
- district: '',
- detail: '',
- },
- area: '',
- default: false
- },
- }
- },
- onReady(res) {
- var _this = this;
- uni.getSystemInfo({
- success: resu => {
- const query = uni.createSelectorQuery();
- query.select('.scroll-wrapper').boundingClientRect();
- query.exec(function(res) {
- console.log(res, 'ddddddddddddd');
- _this.height = resu.windowHeight - res[0].top + 'px';
- console.log('打印页面的剩余高度', _this.height);
- });
- },
- fail: res => {}
- });
- },
- onLoad() {
- let obj = this;
- this.getLocal()
- },
- computed: {
- ...mapState('user', ['hasLogin', 'userInfo'])
- },
- methods: {
- ...mapMutations('user', ['setUserInfo']),
- // 获取本地坐标
- getLocal() {
- let obj = this;
- console.log('ddddddddddddddddddddddddd')
- uni.getLocation({
- type: 'gcj02',
- success(e) {
- console.log(e)
- obj.latitude = Math.abs(e.latitude)
- obj.longitude = Math.abs(e.longitude)
- console.log('本地坐标', obj.latitude, obj.longitude)
- obj.loadData()
- // 逆地址解析
- // geocoder({
- // latitude: obj.latitude,
- // longitude: obj.longitude
- // }).then(res => {
- // console.log(res)
- // obj.user_address = res.data.result.address
- // console.log(obj.user_address, 'obj.user_address')
- // })
- let item = {
- id: 0,
- latitude: obj.latitude,
- longitude: obj.longitude,
- iconPath: '/static/img/img19.png',
- width: '35',
- height: '35',
- }
- obj.marker.push(item)
- // obj.getRescuerList(obj.latitude, obj.longitude)
- }
- })
- },
- // 地图渲染完毕事件
- mapChange(e) {
- console.log(e);
- },
- // 载入数据
- async loadData() {
- let obj = this;
- if (obj.loadtype == 'loading' || obj.loadtype == 'noMore') {
- return
- }
- obj.loadtype = 'loading'
- getAed({
- latitude: obj.latitude,
- longitude: obj.longitude,
- page: obj.page,
- limit: obj.limit,
- }).then(({
- data
- }) => {
- console.log(data,'aed++++++++++++++')
- // console.log(data, 999);
- // for (let i = 0; i < data.length; i++) {
- // data[i].space = obj.space(obj.latitude, obj.longitude, data[i].latitude, data[i]
- // .longitude);
- // }
- // obj.AEDList = obj.AEDList.concat(data);
- // console.log(obj.AEDList, 'obj.AEDList+++++++');
- // let arr = data.map(item => ({
- // latitude: item.latitude,
- // longitude: item.longitude,
- // iconPath: '/static/img/img014.png',
- // width: '35',
- // height: '35',
- // id: item.id,
- // address: item.address
- // }));
- // obj.aedmarker = obj.marker.concat(arr)
- // obj.loaded = true
- // obj.page++;
- // if (obj.limit == data.length) {
- // obj.loadtype = 'more';
- // } else {
- // obj.loadtype = 'noMore';
- // }
- })
- },
- space(lat1, lng1, lat2, lng2) {
- console.log(lat1, lng1, lat2, lng2);
- var radLat1 = (lat1 * Math.PI) / 180.0;
- var radLat2 = (lat2 * Math.PI) / 180.0;
- var a = radLat1 - radLat2;
- var b = (lng1 * Math.PI) / 180.0 - (lng2 * Math.PI) / 180.0;
- var s = 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(a / 2), 2) + Math.cos(radLat1) * Math.cos(radLat2) * Math
- .pow(Math.sin(b / 2), 2)));
- s = s * 6378.137;
- s = Math.round(s * 10000) / 10000;
- return s * 1000; // 单位米
- },
- openAddress(item) {
- let obj = this;
- obj.latitude2 = item.latitude;
- obj.longitude2 = item.longitude;
- obj.address = item.address;
- this.$refs.popup.open();
- },
- // 调用高德
- toGaodeMap() {
- let latitude = this.latitude2;
- let longitude = this.longitude2;
- let address = this.address;
- console.log('选择高德', latitude, longitude, address);
- window.location.href = `https://uri.amap.com/marker?position=${longitude},${latitude}&name=${address}`;
- },
- // 调用腾讯
- totengxunMap() {
- let latitude = this.latitude2;
- let longitude = this.longitude2;
- let address = this.address;
- console.log('选择腾讯', latitude, longitude);
- window.location.href =
- `http://apis.map.qq.com/uri/v1/marker?marker=coord:${latitude},${longitude};addr:${address}`;
- },
- // 调用百度
- tobaiDuMap() {
- let latitude = this.latitude2;
- let longitude = this.longitude2;
- let latitude6 = this.latitude;
- let longitude6 = this.longitude;
- let address = this.address;
- console.log('选择百度', latitude, longitude);
- console.log('获取当前经纬度', latitude6, longitude6);
- window.location.href =
- `http://api.map.baidu.com/direction?origin=latlng:${latitude6},${longitude6}|name:我的位置&destination=${latitude},${longitude}&mode=driving®ion=${address}&output=html&src=webapp.baidu.openAPIdemo`;
- //`bdapp://map/navi?location=${longitude},${latitude}&coord_type=gc02&title=${address}&content=${address}&output=html&src=andr.baidu.openAPIdemo `
- },
- }
- }
- </script>
- <style lang="scss">
- body,
- page {
- height: 100%;
- width: 100%;
- background-color: #fff;
- }
- .content {
- height: 100%;
- width: 100%;
- background-color: #fff;
- }
- .map {
- width: 100%;
- height: 600rpx;
- }
- /* #ifdef H5 */
- .location {
- overflow-y: scroll; //溢出就滑动起来
- // z-index: 990;
- position: fixed;
- bottom: 0;
- height: 55%;
- width: 100%;
- background-color: #fff;
- padding: 24rpx;
- //搜索框
- .Search-box {
- // z-index: 999;
- height: 80rpx;
- // position: fixed;
- // top: 0;
- // left: 0;
- // width: 100%;
- // background: #FFFFFF;
- // padding-top: 10rpx;
- padding-right: 24rpx;
- padding-left: 24rpx;
- .Search-box-sort {
- float: left;
- margin-left: 32rpx;
- margin-right: 19rpx;
- .sort-text {
- width: 57rpx;
- height: 29rpx;
- font-size: 30rpx;
- font-weight: 500;
- color: rgba(51, 51, 51, 1);
- line-height: 58rpx;
- margin-right: 19rpx;
- }
- .sort-img {
- width: 21rpx;
- height: 11rpx;
- margin-bottom: 4rpx;
- }
- }
- .Search-box-size {
- // width:70%;
- height: 58rpx;
- border-radius: 32rpx;
- background-color: #f1f1f1;
- padding-left: 36rpx;
- display: flex;
- align-items: center;
- .box-img {
- height: 32rpx;
- width: 32rpx;
- margin-right: 16rpx;
- }
- // .box-right{
- // height: 58rpx;
- // // width: 100%;
- // background-color: pink;
- // }
- .box-word {
- width: 100%;
- font-size: 26rpx;
- font-weight: 500;
- color: rgba(205, 203, 203, 1);
- line-height: 55rpx;
- }
- }
- }
- .location-item {
- z-index: 1000;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1rpx solid #E7E8EA;
- padding: 15rpx 0;
- .box-left {
- display: flex;
- .img01 {
- width: 8rpx;
- height: 28rpx;
- margin-right: 18rpx;
- image {
- width: 8rpx;
- height: 28rpx;
- }
- }
- .img02 {
- width: 117rpx;
- height: 117rpx;
- border-radius: 50%;
- image {
- width: 117rpx;
- height: 117rpx;
- border-radius: 50%;
- }
- }
- .info {
- margin-left: 16rpx;
- .info-header {
- display: flex;
- align-items: center;
- .name {
- font-size: 32rpx;
- color: #333333;
- }
- .distance {
- margin-left: 25rpx;
- font-size: 28rpx;
- color: #303133;
- }
- .location-icon {
- margin-left: 10rpx;
- width: 20rpx;
- height: 26rpx;
- image {
- width: 20rpx;
- height: 26rpx;
- display: inline;
- }
- }
- }
- .address {
- font-size: 26rpx;
- color: #333333;
- margin-top: 33rpx;
- }
- }
- }
- .box-right {
- .img {
- height: 107rpx;
- image {
- width: 107rpx;
- height: 107rpx;
- }
- }
- .called {
- margin-right: 16rpx;
- height: 107rpx;
- line-height: 107rpx;
- font-size: 28rpx;
- color: #CB131C;
- }
- }
- }
- }
- /* #endif */
- .list-tpl {
- background-color: #ffffff;
- margin: 25rpx 0rpx;
- padding: 25rpx 25rpx;
- font-size: 28rpx;
- border-radius: 15rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1px solid #f1f1f1;
- .list-left {
- display: flex;
- width: 100%;
- .number {
- font-size: 32rpx;
- margin-right: 14rpx;
- }
- .info {
- width: 100%;
- .title {
- font-size: 32rpx;
- color: #222222;
- font-weight: 500;
- }
- .addr {
- width: 400rpx;
- margin-top: 20rpx;
- font-size: 20rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- }
- }
- }
- .image {
- width: 10%;
- text-align: center;
- image {
- width: 50rpx;
- height: 50rpx;
- }
- .tip {
- color: #7f7f7f;
- font-size: 21rpx;
- }
- }
- }
- .popup_row {
- width: 100%;
- height: 500rpx;
- background-color: #ffffff;
- border-radius: 20rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- .rows {
- width: 100%;
- padding: 0 24rpx;
- .rows-item {
- height: 80rpx;
- line-height: 80rpx;
- text-align: center;
- width: 100%;
- font-size: 32rpx;
- color: #303133;
- }
- }
- }
- </style>
|