47 lines
1.6 KiB
Plaintext
47 lines
1.6 KiB
Plaintext
<!--pages/main/journal-map/index.wxml-->
|
|
<t-navbar title="地图查找" left-arrow />
|
|
<view class="container">
|
|
<map
|
|
id="journal-map"
|
|
class="map"
|
|
latitude="{{centerLat}}"
|
|
longitude="{{centerLng}}"
|
|
scale="{{scale}}"
|
|
markers="{{markers}}"
|
|
include-points="{{includePoints}}"
|
|
bindmarkertap="onMarkerTap"
|
|
bindcallouttap="onCalloutTap"
|
|
>
|
|
<cover-view slot="callout">
|
|
<block wx:for="{{locations}}" wx:key="locationKey" wx:for-index="markerIndex">
|
|
<cover-view class="custom-callout" marker-id="{{markerIndex}}">
|
|
<cover-view class="callout-content">
|
|
<cover-view wx:if="{{item.previewThumb}}" class="thumb-container">
|
|
<cover-image class="thumb" src="{{item.previewThumb}}" />
|
|
<cover-view wx:if="{{item.count > 1}}" class="count-badge">{{item.count}}</cover-view>
|
|
</cover-view>
|
|
<cover-view class="text-container">
|
|
<cover-view wx:if="{{item.location}}" class="location">{{item.location}}</cover-view>
|
|
<cover-view class="date-count">
|
|
<cover-view class="date">{{item.date}}</cover-view>
|
|
<cover-view wx:if="{{item.count > 1}}" class="count">{{item.count}} 条日记</cover-view>
|
|
</cover-view>
|
|
</cover-view>
|
|
</cover-view>
|
|
</cover-view>
|
|
</block>
|
|
</cover-view>
|
|
</map>
|
|
<view wx:if="{{isLoading}}" class="loading">
|
|
<view class="loading-text">加载中...</view>
|
|
</view>
|
|
</view>
|
|
<!-- 详情面板 -->
|
|
<journal-detail-panel
|
|
visible="{{showDetail && detailVisible}}"
|
|
title="{{selectedLocation.location}}"
|
|
journals="{{selectedLocation.journals}}"
|
|
mode="LOCATION"
|
|
bind:close="closeDetail"
|
|
/>
|