微信小程序map組件結合高德地圖API實現(xiàn)wx.chooseLocation功能示例
本文實例講述了微信小程序map組件結合高德地圖API實現(xiàn)wx.chooseLocation功能。分享給大家供大家參考,具體如下:
聲明
bug: 頁面搜索返回的列表在真機測試是會出現(xiàn)不顯示問題?
造成原因:在小程序map組件的同一區(qū)域,map組件的視圖層比普通的文本視圖層要高,所以在真機會遮擋!
解決辦法:將該文本視圖采用cover-view,放在map中。
感謝: 感謝Lrj_estranged指出問題!
效果圖

實現(xiàn)原理
通過高德地圖的微信小程序開發(fā)API(getInputtips),實現(xiàn)關鍵詞獲取對應提示列表,同時返回location。
WXML
<view class="map-inputtips-input">
<input bindinput="bindInput" placeholder="搜索" focus="true" />
</view>
<view class="map_container">
<map class="map" latitude='{{latitude}}' longitude='{{longitude}}' markers='{{markers}}'>
<cover-view class="map-search-list {{isShow ? '' : 'map-hide'}}">
<cover-view bindtouchstart="bindSearch" wx:key="searchId" data-keywords="{{item.name}}" data-location="{{item.location}}" class="map-box" wx:for="{{tips}}">
{{item.name}}
</cover-view>
</cover-view>
</map>
</view>
WXSS
.map-inputtips-input{
height: 80rpx;
line-height: 80rpx;
width: 100%;
box-sizing: border-box;
font-size: 30rpx;
padding: 0 10px;
background-color: #fff;
position: fixed;
top: 0;
left: 0;
z-index: 1000;
border-bottom:1px solid #c3c3c3;
}
.map-inputtips-input input{
border: 1px solid #ddd;
border-radius: 5px;
height: 60rpx;
line-height: 60rpx;
width: 100%;
box-sizing: border-box;
padding: 0 5px;
margin-top: 10rpx;
}
.map-box{
margin: 0 10px;
border-bottom:1px solid #c3c3c3;
height: 80rpx;
line-height: 80rpx;
}
.map-box:last-child{border: none;}
.map-search-list{
position: fixed;
top: 80rpx;
left: 0;
width: 100%;
z-index: 1000;
background-color: #fff;
}
JS
const app = getApp();
const amap = app.data.amap;
const key = app.data.key;
Page({
data: {
isShow: false,
tips: {},
longitude: '',
latitude: '',
markers: []
},
onLoad() {
var _this = this;
wx.getLocation({
success: function(res) {
if (res && res.longitude){
_this.setData({
longitude: res.longitude,
latitude: res.latitude,
markers:[{
id:0,
longitude: res.longitude,
latitude: res.latitude,
iconPath: '../../src/images/ding.png',
width:32,
height:32
}]
})
}
}
})
},
bindInput: function (e) {
var _this = this;
var keywords = e.detail.value;
var myAmap = new amap.AMapWX({ key: key });
myAmap.getInputtips({
keywords: keywords,
location: '',
success: function (res) {
if (res && res.tips) {
_this.setData({
isShow: true,
tips: res.tips
});
}
}
})
},
bindSearch: function (e) {
var keywords = e.target.dataset.keywords;
var location = e.target.dataset.location.split(',');
this.setData({
isShow: false,
longitude: location[0],
latitude: location[1],
markers: [{
id: 0,
longitude: location[0],
latitude: location[1],
iconPath: '../../src/images/ding.png',
width: 32,
height: 32,
anchor: { x: .5, y: 1 },
label: {
content: keywords,
color: 'blue',
fontSize: 12,
borderRadius: 5,
bgColor: '#fff',
padding: 3,
x: 0,
y: -50,
textAlign: 'center'
}
}]
})
}
})
總結
1. 輸入框事件獲取關鍵字,通過關鍵字獲取展示列表;
2. 列表選擇事件,獲取對應的location,并通過map組件的 markers 屬性標記該坐標。
希望本文所述對大家微信小程序開發(fā)有所幫助。
相關文章
js+數(shù)組實現(xiàn)網頁上顯示時間/星期幾的實用方法
在網頁上顯示時間(年月日/時分秒),很多新手朋友都想實現(xiàn)這樣的功能,本文整理了一些實用技巧,殺出來與大家分享,感興趣的朋友可以了解下2013-01-01
Javascript獲取數(shù)組中的最大值和最小值的方法匯總
比較數(shù)組中數(shù)值的大小是比較常見的操作,下面同本文給大家分享四種放哪廣發(fā)獲取數(shù)組中最大值和最小值,對此感興趣的朋友一起學習吧2016-01-01
createElement動態(tài)創(chuàng)建HTML對象腳本代碼
利用createElement動態(tài)創(chuàng)建鏈接,div等代碼2008-11-11

