我想更改计算路线的路线宽度。使用Skobblers SKMaps Framework。
我已成功使用此线程(How to change the color of the route in Skobbler)来更改路径颜色,但如果我更改daystyle.json中的宽度,似乎没有任何变化。我尝试了各种值(1.0,1.9,2.5,10.0,100.0),但宽度保持不变。无论地图是否处于导航模式。
答案 0 :(得分:2)
路由的ID为0.您需要更改0属性的宽度值。在此示例中,缩放级别4的宽度设置为2.0:
{
"id" : "0.4",
"isattribute" : true,
"line" :
{
"fill" :
{
"color" : "FF0000",
"width" : 2.0
},
"outline" :
{
"color" : "0080FF",
"width" : 1.0
},
}
},