42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
<!--pages/main/travel-location-map/index.wxml-->
|
|
<t-navbar title="地点地图" left-arrow />
|
|
<view class="container">
|
|
<map
|
|
id="travel-location-map"
|
|
class="map"
|
|
latitude="{{centerLat}}"
|
|
longitude="{{centerLng}}"
|
|
scale="{{scale}}"
|
|
markers="{{markers}}"
|
|
include-points="{{includePoints}}"
|
|
bindmarkertap="onMarkerTap"
|
|
bindcallouttap="onCalloutTap"
|
|
>
|
|
<cover-view slot="callout">
|
|
<cover-view
|
|
class="marker"
|
|
wx:for="{{markers}}"
|
|
wx:key="id"
|
|
wx:for-item="marker"
|
|
wx:for-index="markerIndex"
|
|
marker-id="{{markerIndex}}"
|
|
>
|
|
<cover-view
|
|
class="location"
|
|
wx:for="{{marker.locations}}"
|
|
wx:key="id"
|
|
wx:for-item="location"
|
|
style="{{'--title-length: ' + location.title.length}}"
|
|
>
|
|
<cover-view wx:if="{{location.typeLabel}}" class="type">{{location.typeLabel}}</cover-view>
|
|
<cover-view class="title">{{location.title || '未命名地点'}}</cover-view>
|
|
</cover-view>
|
|
</cover-view>
|
|
</cover-view>
|
|
</map>
|
|
<view wx:if="{{isLoading}}" class="loading">
|
|
<view class="loading-text">加载中...</view>
|
|
</view>
|
|
<travel-location-popup visible="{{detailVisible}}" ids="{{detailIds}}" bind:close="closeDetail" />
|
|
</view>
|