From 6ac472d1f7d118761ae39435761a74fcd23f23c2 Mon Sep 17 00:00:00 2001 From: joylink_zhaoerwei Date: Fri, 13 Sep 2024 19:01:18 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=AC=E5=85=B1=E7=9A=84=E6=96=87=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/iscs_graphic_data.proto | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/iscs_graphic_data.proto b/src/iscs_graphic_data.proto index 5361dfe..a140a5f 100644 --- a/src/iscs_graphic_data.proto +++ b/src/iscs_graphic_data.proto @@ -5,6 +5,7 @@ message IscsGraphicStorage { Canvas canvas = 1; UniqueIdOfStationLayout UniqueIdPrefix = 2;//地图唯一信息 repeated Arrow arrows = 3; + repeated IscsText iscsTexts = 4; } message Canvas { @@ -73,3 +74,12 @@ message Arrow { string code = 2; repeated Point points = 3; } + +/** Iscs文字 */ +message IscsText { + CommonInfo common = 1; + string code = 2; + string content = 3; + string color = 4; + int32 fontSize = 5; +}