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.

54 lines
2.9 KiB

5 years ago
<!--pages/map/index.wxml-->
<!-- <search bind:onload="search"></search> -->
<map class="map" id="map" style="height:100%" wx:if="{{areas.length>0}}" longitude="{{areas[areaIndex]?areas[areaIndex].lon:longitude}}" latitude="{{areas[areaIndex]?areas[areaIndex].lat:latitude}}" show-location markers="{{list}}" bindmarkertap="onTapMarker" bindregionchange="changeRegion">
</map>
<view style="height:{{topHeight}}px"></view>
<picker mode="selector" value="{{areaIndex}}" range="{{areas}}" range-key="area_title" bindchange="changeArea">
<view class="picker">
<view class="areatext">{{areas[areaIndex].area_title}}</view>
5 years ago
<image src="https://static.ticket.sz-trip.com/xcxImages/activity/arrow.png" mode="widthFix"></image>
5 years ago
</view>
</picker>
<view class="right-menus" style="top:{{seachHeight}}px">
<view class="right-menu-item{{type==1?' active':''}}" bindtap="changeType" data-type="1">
<text style="color:#0A9947" class="iconfont icon-location"></text>
<text>景点</text>
</view>
<view class="right-menu-item{{type==2?' active':''}}" bindtap="changeType" data-type="2">
<text style="color:#3D77D8" class="iconfont icon-location"></text>
<text>场馆</text>
</view>
<view wx:if="{{isTest==false}}" class="right-menu-item{{type==3?' active':''}}" bindtap="changeType" data-type="3">
<text style="color:#C02C2C" class="iconfont icon-location"></text>
<text>特产</text>
</view>
<view wx:if="{{isTest==false}}" class="right-menu-item{{type==4?' active':''}}" bindtap="changeType" data-type="4">
<text style="color:#EE641B" class="iconfont icon-location"></text>
<text>美食</text>
</view>
<view class="right-menu-item{{type==5?' active':''}}" bindtap="changeType" data-type="5">
<text style="color:#00B3C8" class="iconfont icon-location"></text>
<text>文物</text>
</view>
<view class="right-menu-item{{type==7?' active':''}}" bindtap="changeType" data-type="7">
<text style="color:#9342CB" class="iconfont icon-location"></text>
<text>影院</text>
</view>
5 years ago
<view class="right-menu-item{{type==6?' active':''}}" bindtap="changeType" data-type="6">
<text style="color:#EB3C70" class="iconfont icon-location"></text>
<text>运河十景</text>
</view>
5 years ago
<view class="right-menu-item{{type==8?' active':''}}" bindtap="changeType" data-type="8">
<text style="color:#9d6b00" class="iconfont icon-location"></text>
<text>江南小书场</text>
</view>
5 years ago
</view>
<view class="map-item" wx:if="{{showInfo && info}}">
<view class="iconfont icon-ic_searchclosed" bindtap="hideInfo"></view>
<image wx:if="{{info.info.headimg}}" src="{{info.info.headimg}}" mode="aspectFill"></image>
<view class="info" style="{{info.info.headimg?'':'width:100%'}}">
<view class="title textOver">{{info.info.title}}</view>
<view class="subtitle textOver2">地址:{{info.info.address}}</view>
5 years ago
<view wx:if="{{info.info.type!='academes'}}" bindtap="gotoDetail" class="info-btn">查看详情</view>
5 years ago
</view>
</view>