map.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. <template>
  2. <view class="content">
  3. <view class="btns">
  4. <view @click="back">取消</view>
  5. <view @click="checkAdd">确定</view>
  6. </view>
  7. <!-- // 地图部分 -->
  8. <map style="width: 100%; height: 60vh;" :latitude="latitude" :longitude="longitude" :markers="markers" @tap="tap" :include-points="markers" :scale="10"/>
  9. <!-- <view id="container"></view> -->
  10. <!-- // 搜索框 -->
  11. <view class="inputCon">
  12. <view class="searchView">
  13. <text class="iconfont icon-sousuo"></text>
  14. <input type="text" placeholder="搜索地点" v-model="searchWords" confirm-type="search" @confirm="searchFn"/>
  15. <text @click="cancel">取消</text>
  16. </view>
  17. </view>
  18. <!-- // 地点列表部分 -->
  19. <view class="list">
  20. <view class="item" v-for="(add,index) in dataTips" :key="add.id" @click="select(add,index)"
  21. :class="selectIndex==index?'active':''">
  22. <view class="name">{{add.name}}</view>
  23. <view class="address">{{add.district || ''}}{{add.address || ''}}</view>
  24. </view>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. // 引入高德地图api提供的微信小程序的接口
  30. import amapFile from '../../common/amap-wx.130.js'
  31. // 创建地图
  32. var myAmapFun = new amapFile.AMapWX({key: 'bb69713f3c3d3c85e2662d313daa47b9'});
  33. import $api from '../../static/js/api.js'
  34. export default{
  35. data(){
  36. return{
  37. selectIndex:undefined,
  38. selectAddr:{},
  39. searchWords:"",
  40. id:0, // 使用 marker点击事件 需要填写id
  41. title: 'map',
  42. latitude: 39.909,
  43. longitude: 116.39742,
  44. markers: [{
  45. id: 0,
  46. latitude: 39.909,
  47. longitude: 116.39742,
  48. // iconPath: ''
  49. }],
  50. dataTips:[]
  51. }
  52. },
  53. onLoad(options) {
  54. if(options && options.lng){
  55. this.longitude = options.lng;
  56. this.markers[0].longitude = this.longitude;
  57. }
  58. if(options && options.lat){
  59. this.latitude = options.lat;
  60. this.markers[0].latitude = this.latitude;
  61. }
  62. // 获取当前位置的地点列表
  63. myAmapFun.getPoiAround({
  64. success: (data)=>{
  65. this.dataTips = data.poisData;
  66. },
  67. fail: (info)=>{
  68. console.log(info)
  69. }
  70. })
  71. },
  72. methods:{
  73. // 选择地点后,将选取的地点传递到前一个页面中
  74. checkAdd(){
  75. this.select(this.dataTips[this.selectIndex],this.selectIndex)
  76. console.log(this.markers);
  77. uni.setStorageSync('address', this.markers[0]);
  78. var pages = getCurrentPages();// 获取所有的页面栈
  79. var prevPage = pages[pages.length - 2]; // 找到上一个页面,注意是页面,如果是页面中有组件,则需要通过页面接受到数据后,再次往组件中传递
  80. console.log(this.selectAddr);
  81. prevPage.$vm.addressObj = this.selectAddr;//在上一个页面中就可以用addressObj进行接收
  82. $api.jump(1,-1)
  83. },
  84. back(){
  85. $api.jump(1,-1)
  86. },
  87. cancel(){
  88. if(this.searchWords){
  89. this.searchWords = "";
  90. myAmapFun.getPoiAround({
  91. location: this.markers[0].longitude+','+this.markers[0].latitude,
  92. success: (data)=>{
  93. console.log("获取当前的列表",data);
  94. this.dataTips = data.poisData;
  95. },
  96. fail: (info)=>{
  97. console.log(info)
  98. }
  99. })
  100. }
  101. },
  102. reserGeo(){
  103. myAmapFun.getRegeo({
  104. success: (data)=>{
  105. console.log("获取当前定位信息",data);
  106. },
  107. fail: (info)=>{
  108. console.log(info)
  109. }
  110. })
  111. },
  112. // 根据地址列表中选择某一个地点
  113. select(add,index){
  114. if(!add){
  115. return;
  116. }
  117. if(add.district) {
  118. myAmapFun.getRegeo({
  119. location:add.location,
  120. success: (data)=>{
  121. console.log("获取当前定位信息",data);
  122. this.selectIndex = index;
  123. var location = add.location.split(",");
  124. this.selectAddr = {
  125. address:data[0].regeocodeData.formatted_address,
  126. latitude:location[1],
  127. longitude:location[0],
  128. province: data[0].regeocodeData.addressComponent.province,
  129. city: data[0].regeocodeData.addressComponent.city,
  130. area: data[0].regeocodeData.addressComponent.district
  131. };
  132. this.markers[0].latitude = +location[1];
  133. this.markers[0].longitude = +location[0];
  134. },
  135. fail: (info)=>{
  136. console.log(info)
  137. }
  138. })
  139. }
  140. else {
  141. this.selectIndex = index;
  142. var location = add.location.split(",");
  143. this.selectAddr = {
  144. address:add.name?(add.name):(add.name),
  145. latitude:location[1],
  146. longitude:location[0],
  147. province: add.pname,
  148. city: add.cityname,
  149. area: add.adname
  150. };
  151. this.markers[0].latitude = +location[1];
  152. this.markers[0].longitude = +location[0];
  153. }
  154. },
  155. // 在地图上点击进行选点,这个选点在地图缩放比例较大时无效,因为精读的问题。
  156. tap(e){
  157. var location = e.detail.longitude +','+e.detail.latitude
  158. myAmapFun.getRegeo({
  159. location: location,
  160. success: (data)=>{
  161. console.log("获取指定定位信息",data);
  162. console.log(e);
  163. this.selectAddr = {
  164. address:data[0].regeocodeData.formatted_address,
  165. latitude:e.detail.latitude,
  166. longitude:e.detail.longitude,
  167. // province: add.pname,
  168. // city: add.cityname,
  169. // area: add.adname
  170. };
  171. this.markers[0].latitude = data[0].latitude;
  172. this.markers[0].longitude = data[0].longitude;
  173. myAmapFun.getPoiAround({
  174. location: data[0].longitude+','+data[0].latitude,
  175. success: (data)=>{
  176. console.log("获取当前的列表",data);
  177. this.dataTips = data.poisData;
  178. },
  179. fail: (info)=>{
  180. console.log(info)
  181. }
  182. })
  183. },
  184. fail: (info)=>{
  185. console.log(info);
  186. }
  187. })
  188. },
  189. // 根据内容进行检索
  190. searchFn(){
  191. console.log("根据地址检索",this.searchWords);
  192. myAmapFun.getInputtips({
  193. keywords: this.searchWords,
  194. location: '',
  195. success: (data) => {
  196. console.log(111,data);
  197. if(data && data.tips){
  198. this.dataTips = data.tips;
  199. }
  200. },
  201. fail:data=>{
  202. console.log(222,data);
  203. }
  204. })
  205. }
  206. }
  207. }
  208. </script>
  209. <style lang="scss" scoped>
  210. .btns{
  211. position: fixed;
  212. top:0;
  213. left:0;
  214. height:260upx;
  215. width:100%;
  216. background:linear-gradient(to bottom,rgba(0,0,0,0.4),rgba(0,0,0,0));
  217. display: flex;
  218. align-items: center;
  219. justify-content: space-between;
  220. z-index:10 !important;
  221. view{
  222. margin:140upx 24upx 0;
  223. font-size:30upx;
  224. &:first-child{
  225. color:#fff;
  226. }
  227. &:last-child{
  228. width:100upx;
  229. height:60upx;
  230. line-height: 60upx;
  231. text-align: center;
  232. border-radius: 10upx;
  233. background:#E13500;
  234. color:#fff;
  235. }
  236. }
  237. }
  238. .content{
  239. .list{
  240. height:calc(40vh - 100upx);
  241. overflow-y: auto;
  242. width:702upx;
  243. margin:-40upx auto 0;
  244. padding-bottom:20upx;
  245. .item{
  246. border-bottom:2upx solid #f3f3f3;
  247. &:last-child{
  248. border:none;
  249. }
  250. .address{
  251. font-size:22upx;
  252. color:#666;
  253. margin:10upx 0;
  254. }
  255. .name{
  256. font-size:30upx;
  257. color:#333;
  258. margin-top:10upx;
  259. }
  260. &.active{
  261. .name{
  262. font-weight: bold;
  263. color:#E13500;
  264. }
  265. .address{
  266. color:#E13500;
  267. }
  268. }
  269. }
  270. }
  271. .inputCon{
  272. width:100%;
  273. background:#fff;
  274. top:-60upx;
  275. position: relative;
  276. z-index:20;
  277. height:100upx;
  278. display: flex;
  279. align-items: center;
  280. justify-content: center;
  281. .searchView{
  282. width:702upx;
  283. height:60upx;
  284. display: flex;
  285. align-items: center;
  286. line-height: 60upx;
  287. border-radius: 40upx;
  288. padding:0 30upx;
  289. box-sizing: border-box;
  290. background:#f3f3f3;
  291. font-size:26upx;
  292. .iconfont{
  293. color:#666;
  294. margin-right:20upx;
  295. }
  296. input{
  297. flex:1;
  298. }
  299. view{
  300. flex-shrink: 0;
  301. }
  302. }
  303. }
  304. }
  305. </style>