You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
856 B
22 lines
856 B
<view class="outer">
|
|
<map id="map" longitude='{{longitude}}' latitude='{{latitude}}' markers='{{markers}}' show-location></map>
|
|
<view class='nav'>
|
|
<image src='images/酒店.png' mode="aspectFit"></image>
|
|
<text bindtap='search' data-type='酒店'>酒店</text>
|
|
<image src='images/美食.png' mode="aspectFit"></image>
|
|
<text bindtap='search' data-type='美食'>美食</text>
|
|
<text bindtap='search' data-type='娱乐'>娱乐</text>
|
|
<text bindtap='search' data-type='超市'>超市</text>
|
|
<text bindtap='search' data-type='公园'>公园</text>
|
|
</view>
|
|
<view class='location'>
|
|
<scroll-view scroll-y>
|
|
<block wx:for="{{perimeter}}" wx:key="key">
|
|
<view class="content">
|
|
<view class="title">{{item.title}}</view>
|
|
<view class="address">位置:{{item.address}}</view>
|
|
</view>
|
|
</block>
|
|
</scroll-view>
|
|
</view>
|
|
</view> |