29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
|
<view class="select-search">
|
||
|
<view class="search-btn" data-poi="场馆" bindtap="doSearch">
|
||
|
<image src="../../images/search1.png"></image>
|
||
|
<text>场馆</text>
|
||
|
</view>
|
||
|
<view class="search-btn" data-poi="健身" bindtap="doSearch">
|
||
|
<image src="../../images/search2.png"></image>
|
||
|
<text>健身</text>
|
||
|
</view>
|
||
|
<view class="search-btn" data-poi="公园" bindtap="doSearch">
|
||
|
<image src="../../images/search3.png"></image>
|
||
|
<text>公园</text>
|
||
|
</view>
|
||
|
<view class="search-btn" data-poi="运动场" bindtap="doSearch">
|
||
|
<image src="../../images/search6.png"></image>
|
||
|
<text>运动场</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="map_container">
|
||
|
<map bindtap="mapclick" class="map" id="map" longitude="{{longitude}}" latitude="{{latitude}}" scale="14" show-location="true" markers="{{markers}}" bindmarkertap="makertap"></map>
|
||
|
</view>
|
||
|
<view class="place_info" wx:if="{{showDetail}}">
|
||
|
<view class="info-box">
|
||
|
<text class="title">{{placeData.title}}</text>
|
||
|
<text>{{placeData.address}}</text>
|
||
|
<text>{{placeData.telephone}}</text>
|
||
|
</view>
|
||
|
<view class="go-here" bindtap="goHere">到这去</view>
|
||
|
</view>
|