Mapbox Studio:使用来自不同列的信息创建文本名称条目
Mapbox Studio: Make a text-name entry with infos from different columns
我有 mac 的 map box studio 0.2.7。我需要制作一个标签,结合来自 2 个不同列的信息,例如供应商的名称和电话号码。
到目前为止,这是我的代码:
#Vendors{
line-width: 1;
line-color: rgba(0, 0, 0, 0.5);
polygon-fill: #ffff00;
text-name: "[VendorName]";
text-face-name: 'Arial Unicode MS Regular';
//text-name:[TEL_Local];
}
再次设置text-name
会覆盖旧条目,所以我想知道是否有这样的东西:
text-name: "[VendorName] & [TEL_Local]";
或
text-name: "[VendorName + TEL_Local]";
两者都不行,但你知道我需要什么。我怎样才能做到这一点?
谢谢
你试过了吗:
text-name: [VendorName] + [TEL_Local];
这在 Mapbox Studio 中对我有用:
我有 mac 的 map box studio 0.2.7。我需要制作一个标签,结合来自 2 个不同列的信息,例如供应商的名称和电话号码。
到目前为止,这是我的代码:
#Vendors{
line-width: 1;
line-color: rgba(0, 0, 0, 0.5);
polygon-fill: #ffff00;
text-name: "[VendorName]";
text-face-name: 'Arial Unicode MS Regular';
//text-name:[TEL_Local];
}
再次设置text-name
会覆盖旧条目,所以我想知道是否有这样的东西:
text-name: "[VendorName] & [TEL_Local]";
或
text-name: "[VendorName + TEL_Local]";
两者都不行,但你知道我需要什么。我怎样才能做到这一点?
谢谢
你试过了吗:
text-name: [VendorName] + [TEL_Local];
这在 Mapbox Studio 中对我有用: