与牧同行-小程序用户端
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.

63 lines
2.0 KiB

6 days ago
6 days ago
6 days ago
6 days ago
  1. <view class="page-container">
  2. <!-- 按钮区域 -->
  3. <view class="button-group">
  4. <view
  5. class="button {{activeTab === 'clinic' ? 'active' : ''}}"
  6. bindtap="switchTab"
  7. data-tab="clinic"
  8. >
  9. 药店诊所
  10. </view>
  11. <view
  12. class="button {{activeTab === 'guide' ? 'active' : ''}}"
  13. bindtap="switchTab"
  14. data-tab="guide"
  15. >
  16. 办事指南
  17. </view>
  18. </view>
  19. <!-- 地图区域 -->
  20. <view class="map-container">
  21. <map
  22. id="myMap"
  23. enable-zoom
  24. latitude="{{latitude}}"
  25. longitude="{{longitude}}"
  26. enable-3D="{{true}}"
  27. scale="16"
  28. markers="{{markers}}"
  29. show-location="{{true}}"
  30. enable-building="{{true}}"
  31. bindmarkertap="onMarkerTap"
  32. ></map>
  33. <!-- 详情信息卡片 - 添加在地图容器内部 -->
  34. <view class="marker-detail-card" wx:if="{{showDetail}}">
  35. <view class="detail-header">
  36. <text class="detail-title">{{currentMarker.title}}</text>
  37. <text class="detail-close" bindtap="closeDetail">✕</text>
  38. </view>
  39. <view class="detail-info">
  40. <view class="info-item">
  41. <text class="info-label">类型:</text>
  42. <text class="info-value">{{currentMarker.merchantType}}</text>
  43. </view>
  44. <view class="info-item">
  45. <text class="info-label">地区:</text>
  46. <text class="info-value">{{currentMarker.region}}</text>
  47. </view>
  48. <view class="info-item">
  49. <text class="info-label">地址:</text>
  50. <text class="info-value">{{currentMarker.address}}</text>
  51. </view>
  52. <view class="info-item">
  53. <text class="info-label">坐标:</text>
  54. <text class="info-value">{{currentMarker.latitude}}, {{currentMarker.longitude}}</text>
  55. </view>
  56. </view>
  57. <view class="detail-actions">
  58. <button class="action-btn" bindtap="navigateToMarker">导航前往</button>
  59. </view>
  60. </view>
  61. </view>
  62. </view>