fix map marker width

This commit is contained in:
Timi
2025-12-18 19:21:46 +08:00
parent 186a74bc77
commit 6f74559c01
11 changed files with 130 additions and 128 deletions

View File

@ -96,7 +96,7 @@ export enum TravelLocationType {
ATTRACTION = "ATTRACTION",
SHOPPING = "SHOPPING",
PLAY = "PLAY",
LIFE = "LEFE"
LIFE = "LIFE"
}
/** 地点类型中文映射 */
@ -118,7 +118,7 @@ export const TravelLocationTypeIcon: Record<TravelLocationType, string> = {
[TravelLocationType.ATTRACTION]: "image-1",
[TravelLocationType.SHOPPING]: "shop",
[TravelLocationType.PLAY]: "ferris-wheel",
[TravelLocationType.LIFE]: "cart"
[TravelLocationType.LIFE]: "location"
};
/** 出行地点实体 */
@ -154,10 +154,10 @@ export interface TravelLocation extends Model {
requireAppointment?: boolean;
/** 评分 */
score?: number;
score?: number | null;
/** 重要程度 */
importance?: number;
importance?: number | null;
/** 附件 */
items?: Attachment[];