TSegmentLocation: TSegmentBase & {
    data: {
        content?: string;
        lat: string;
        lon: string;
        title?: string;
    };
    type: "location";
}

Type declaration

  • data: {
        content?: string;
        lat: string;
        lon: string;
        title?: string;
    }
    • Optionalcontent?: string

      content 内容描述,可选

    • lat: string

      lat 维度

    • lon: string

      lan 精度

    • Optionaltitle?: string

      title 标题,可选

  • type: "location"