[map-sdk] 同步地图SDK 3.4.0.1

This commit is contained in:
jiaguofeng
2024-03-05 18:37:00 +08:00
parent 91b864f5aa
commit 5abb444ae4
281 changed files with 3004 additions and 2284 deletions

View File

@@ -12,6 +12,9 @@ uniform bool isPcf; //是否聚光灯
uniform bool isWave; //流光效果
uniform sampler2D texId;
uniform sampler2DShadow depthTex; //深度纹理
uniform sampler2D texId2;
uniform bool isMixTex2;
uniform float texId2Fac;
uniform bool isRenderSignalLine; //信号线
uniform float signalLineTime; //信号线时间
uniform float signalLineCnt; //信号线时间
@@ -126,7 +129,12 @@ bool isInScreen(vec4 p){ //是否在包围盒[(0,0)-(1,1)]内
}
void setZebra(){
vec4 c = texture(texId, _uv);
vec4 c = vec4(0.0);
if(!isMixTex2){
c = texture(texId,_uv);
}else{
c = mix(texture(texId,_uv),texture(texId2,_uv),texId2Fac);
}
fragColor = vec4(c.rgb, step(0.8,c.a));
}
void setColor(){
@@ -137,7 +145,11 @@ void setTex(){
if(_uv.y<0.0 || _uv.y>1.0)
discard;
}
fragColor = texture(texId,_uv);
if(!isMixTex2){
fragColor = texture(texId,_uv);
}else{
fragColor = mix(texture(texId,_uv),texture(texId2,_uv),texId2Fac);
}
}
float getShadowOffset(float x, float y)
{

View File

@@ -49,6 +49,10 @@ vec4 changeColorMethod(vec4 texColor){
}
}else
retColor = texColor; //s0
}else if(_changeColorCmd==5.0){
retColor = mix(texColor,replacedColor,_changeColorRatio);
}else if(_changeColorCmd==6.0){
retColor = mix(texColor,replacedColor,1.0-_changeColorRatio);
}else if(_changeColorRatio==0.0){
if(_changeColorCmd==1.0)
retColor = mix(texColor,replacedColor,0.5);

View File

@@ -169,4 +169,5 @@ void main()
gl_Position = projMat*viewMat*modelMat * pos;
ndc = gl_Position;
gl_PointSize = (1.0-gl_Position.z/gl_Position.w)*70.0;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 235 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 235 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 411 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 411 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 355 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 411 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 411 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 411 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 185 KiB

After

Width:  |  Height:  |  Size: 118 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 188 KiB

After

Width:  |  Height:  |  Size: 118 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 185 KiB

After

Width:  |  Height:  |  Size: 120 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 200 KiB

After

Width:  |  Height:  |  Size: 118 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 696 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 485 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 355 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 786 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 394 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 411 KiB

View File

@@ -1,29 +0,0 @@
backGround=B0BED1 //背景色
road=80,92,112 //路面颜色
arrow.color.fac=0.95 //箭头颜色因子
alphaNumeric.color.fac=1.0 //地标颜色因子
zebra.color.fac=0.98 //斑马线颜色因子
spotLight=2.5;0.5;1 //聚光灯 半径;亮度;偏移
shadow=70,85,107,200 //阴影颜色
greenBelt=6C8C86;9EBDB4 //绿化带 底部颜色;顶部颜色
dividerLine=228,233,250;228,233,250;1.0 //白色;黄色;颜色因子
pole=8999B0;4E617E //灯杆渐变颜色
guardBar=9FB4C8;7C8EA5;B8C8E1 //隔离带颜色
roadPile=1.0,0.84,0.23;0.18,0.18,0.18;0.25,0.25,0.25 //路桩颜色
bridgePier=d2d6e4;979aa4 //桥墩颜色
cable=5cd3ff;1e79d6;65f3ff;48b3bc //电缆颜色1;电缆颜色2;光缆颜色1;光缆颜色2
area.type.2=D0E7DD //绿地颜色
area.type.3=99C0E7 //水系颜色
area.type.4=37485E //路面铺装颜色
area.type.101=B0BED1 //区域块颜色
regional=889DB5 //人行步道颜色
building=7fA3B7D0;D0E3FB //建筑物底部颜色;顶部颜色
camera=BCC3D0 //摄像头颜色
trafficLight=BCC3D0 //交通灯颜色
rsu.type.1=BCC3D0 //雷达颜色
rsu.type.2=BCC3D0 //mec颜色
rsu.type.3=BCC3D0 //rsu颜色
//光照 环境光;漫反射;高光;高光的光泽度
selfCar.light=0.8,0.8,0.8;0.2,0.2,0.2;0.8,0.8,0.8;12.0 //自车
otherCar.light=0.7,0.7,0.7;0.1,0.1,0.1;0.3,0.3,0.3;11.0 //他车
others.light=0.7,0.7,0.7;0.1,0.1,0.1;0.6,0.6,0.6;12.0 //除自车和他车外的其他3d锚点

View File

@@ -1,29 +0,0 @@
backGround=60,74,105 //背景色
road=1E2637 //路面颜色
arrow.color.fac=1.0 //箭头颜色因子
alphaNumeric.color.fac=1.0 //地标颜色因子
zebra.color.fac=1.0 //斑马线颜色因子
spotLight=1;0.75;-25 //聚光灯 半径;亮度;偏移
shadow=18,28,56,180 //阴影颜色
greenBelt=35,50,75;60,74,105 //绿化带 底部颜色;顶部颜色
dividerLine=102,115,140;230,180,90;1.0 //白色;黄色;颜色因子
pole=6698B1;335780 //灯杆渐变颜色
guardBar=344563;273651;506B9A //隔离带颜色
roadPile=0.9,0.7,0.35;0.16,0.16,0.16;0.24,0.24,0.24 //路桩颜色
bridgePier=384f76;1e2636 //桥墩颜色
cable=5cd3ff;1e79d6;65f3ff;48b3bc //电缆颜色1;电缆颜色2;光缆颜色1;光缆颜色2
area.type.2=D0E7DD //绿地颜色
area.type.3=8BD0FD //水系颜色
area.type.4=37485E //路面铺装颜色
area.type.101=343F5B //区域块颜色
regional=3C4A69 //人行步道颜色
building=7fA1B7DD;E3ECFF //建筑物底部颜色;顶部颜色
camera=0 //摄像头颜色
trafficLight=0 //交通灯颜色
rsu.type.1=0 //雷达颜色
rsu.type.2=0 //mec颜色
rsu.type.3=0 //rsu颜色
//光照 环境光;漫反射;高光;高光的光泽度
selfCar.light=0.6,0.6,0.6;0.1,0.1,0.1;0.6,0.6,0.6;12.0 //自车
otherCar.light=0.4,0.4,0.4;0.1,0.1,0.1;0.6,0.6,0.6;12.0 //他车
others.light=0.4,0.4,0.4;0.1,0.1,0.1;0.6,0.6,0.6;12.0 //除自车和他车外的其他3d锚点

View File

@@ -30,7 +30,7 @@ selfCar.light=0.6,0.6,0.6;0.1,0.1,0.1;0.6,0.6,0.6;12.0 //自车
otherCar.light=0.4,0.4,0.4;0.1,0.1,0.1;0.6,0.6,0.6;12.0 //他车
others.light=0.4,0.4,0.4;0.1,0.1,0.1;0.6,0.6,0.6;12.0 //除自车和他车外的其他3d锚点
fog=BFD9FD;35;70;0.8 //雾颜色,起始距离,结束距离,密度
skybox.lookat=0;-13;8.5;0;0;3; 0;1;0 //天空盒lookat参数
skybox.lookat=0;-13;8.5;0;0;3; 0;1;0 //天空盒lookat参数
skybox.proj=60;0.1;100 //天空盒fov,近平面,远平面
grayscale=#BCCCDAFF
building.text.color=0.8,0.8,0.8,1.0

View File

@@ -47,23 +47,27 @@ divider.15.right.tex.path=/hd_res/taxi_day_mode/divider15_right.png
skybox.2d.tex.path=/skyDay.png
road.isGradient=true
road.gradientColor=66B5C8E6;00B5C8E6
road.gradientColor_morning=00f2c3b1;66f2c3b1
road.gradientColor_morning=66B5C8E6;00B5C8E6
road.gradientColor_daytime=66B5C8E6;00B5C8E6
road.gradientColor_evening=00f2c3b1;66f2c3b1
road.gradientColor_nighttime=004CECFF;004CECFF
greenbelt.isGradient=true
greenbelt.gradientColor=66E5F0E8;00E5F0E8
greenbelt.gradientColor_morning=00f2c3b1;66f2c3b1
greenbelt.gradientColor_morning=66E5F0E8;00E5F0E8
greenbelt.gradientColor_daytime=66E5F0E8;00E5F0E8
greenbelt.gradientColor_evening=00f2c3b1;66f2c3b1
greenbelt.gradientColor_nighttime=004CECFF;004CECFF
plane.isGradient=true
plane.gradientColor=66B5C8E6;00B5C8E6
plane.gradientColor_morning=00f2c3b1;66f2c3b1
plane.gradientColor_morning=66B5C8E6;00B5C8E6
plane.gradientColor_daytime=66B5C8E6;00B5C8E6
plane.gradientColor_evening=00f2c3b1;66f2c3b1
plane.gradientColor_nighttime=004CECFF;004CECFF
fog=C4E1FF;20;65;0.9 //雾颜色,起始距离,结束距离,密度
fog_morning=D6CFDC;20;65;0.9 //雾颜色,起始距离,结束距离,密度
fog_morning=F0F5F6;20;65;0.4 //雾颜色,起始距离,结束距离,密度
fog_daytime=C4E1FF;20;65;0.9 //雾颜色,起始距离,结束距离,密度
fog_evening=D6CFDC;20;65;0.9 //雾颜色,起始距离,结束距离,密度
fog_nighttime=4CECFF;20;65;0.3 //雾颜色,起始距离,结束距离,密度

View File

@@ -0,0 +1,50 @@
alpha.tex.path.11.出口.0=/hd_res/night_mode/exit.png
alpha.tex.path.11.前方学校.1=/hd_res/night_mode/schoolZone_white.png
alpha.tex.path.11.前方学校.2=/hd_res/night_mode/schoolZone_yellow.png
alpha.tex.path.11.公交专用.0=/hd_res/night_mode/WithBusVertical.png
alpha.tex.path.11.潮汐车道.0=/hd_res/night_mode/ReversibleLane.png
alpha.tex.path.11.公交车道.0=/hd_res/night_mode/busLaneVertical.png
alpha.tex.path.11.公交车.0=/hd_res/night_mode/bus.png
alpha.tex.path.11.快速公交专用线.1=/hd_res/night_mode/bus_Rapid_white.png
alpha.tex.path.11.快速公交专用线.2=/hd_res/night_mode/bus_Rapid_yellow.png
alpha.tex.path.11.借道区.1=/hd_res/night_mode/throughWordsV_white.png
alpha.tex.path.11.借道区.2=/hd_res/night_mode/throughWordsV_yellow.png
alpha.tex.path.11.公交停靠.0=/hd_res/night_mode/busStop.png
alpha.tex.path.11.警务专用.0=/hd_res/night_mode/policeSpecialV.png
alpha.tex.path.11.礼让行人.1=/hd_res/night_mode/comity_PedestrianShu.png
alpha.tex.path.11.礼让行人.2=/hd_res/night_mode/comityPedestrianCShu.png
alpha.tex.path.11.人行道.0=/hd_res/night_mode/sideRoad.png
alpha.tex.path.11.观光车专用道.0=/hd_res/night_mode/tourRoad.png
alpha.tex.path.12.BATTERY.0=/hd_res/night_mode/battery.png
alpha.tex.path.12.WALK.0=/hd_res/night_mode/walk.png
alpha.tex.path.12.车让人.0=/hd_res/night_mode/carpeople.png
alpha.tex.path.12.公交专用.0=/hd_res/night_mode/WithBusAcross.png
alpha.tex.path.12.公交车道.0=/hd_res/night_mode/busLaneAcross.png
alpha.tex.path.12.礼让行人.1=/hd_res/night_mode/comity_Pedestrian.png
alpha.tex.path.12.礼让行人.2=/hd_res/night_mode/comityPedestrianC.png
alpha.tex.path.12.停.0=/hd_res/night_mode/stop.png
alpha.tex.path.12.请勿越线.2=/hd_res/night_mode/noCrossLine.png
alpha.tex.path.22.7-22.0=/hd_res/night_mode/7-22.png
alpha.tex.path.22.7-9.1=/hd_res/night_mode/7-9_white.png
alpha.tex.path.22.7-9.2=/hd_res/night_mode/7-9_yellow.png
alpha.tex.path.22.17-19.1=/hd_res/night_mode/17-19_white.png
alpha.tex.path.22.17-19.2=/hd_res/night_mode/17-19_yellow.png
alpha.tex.path.22.16-19.1=/hd_res/night_mode/16-19_white.png
alpha.tex.path.22.16-19.2=/hd_res/night_mode/16-19_yellow.png
alpha.tex.path.22.17-20.1=/hd_res/night_mode/17-20_white.png
alpha.tex.path.22.17-20.2=/hd_res/night_mode/17-20_yellow.png
alpha.tex.path.22.6-20.0=/hd_res/night_mode/6-20_white.png
alpha.tex.path.22.6-22.0=/hd_res/night_mode/6-22_white.png
alpha.tex.path.22.7:30-9:30.1=/hd_res/night_mode/1730-1930-white.png
alpha.tex.path.22.7:30-9:30.2=/hd_res/night_mode/1730-1930-yellow.png
alpha.tex.path.22.7-10.0=/hd_res/night_mode/7-10-speed.png
alpha.tex.path.22.16:00-18:00.1=/hd_res/night_mode/16_18.png
alpha.tex.path.31.60-80.0=/hd_res/night_mode/60-80-speed.png
alpha.tex.path.31.80-100.0=/hd_res/night_mode/80-100-speed.png
alpha.tex.path.31.100-120.0=/hd_res/night_mode/100-120-speed.png
alpha.tex.path.31.60-100.0=/hd_res/night_mode/60-100-speed.png
alpha.tex.path.31.90-120.0=/hd_res/night_mode/90-120-speed.png
alpha.tex.path.32.80.0=/hd_res/night_mode/80-speed.png
alpha.tex.path.32.60.0=/hd_res/night_mode/60-speed.png
alpha.tex.path.32.40.1=/hd_res/night_mode/40-speed-white.png
alpha.tex.path.32.40.2=/hd_res/night_mode/40-speed-yellow.png

View File

@@ -0,0 +1,65 @@
arrow.tex.path.201=/hd_res/night_mode/gostraight.png
arrow.tex.path.202=/hd_res/night_mode/gostraightleft.png
arrow.tex.path.203=/hd_res/night_mode/gostraightrightturn.png
arrow.tex.path.204=/hd_res/night_mode/gostraightleftround.png
arrow.tex.path.220=/hd_res/night_mode/gostraightrightround.png
arrow.tex.path.205=/hd_res/night_mode/leftturn.png
arrow.tex.path.206=/hd_res/night_mode/leftleftround.png
arrow.tex.path.207=/hd_res/night_mode/leftwaitturn.png
arrow.tex.path.208=/hd_res/night_mode/rightturn.png
arrow.tex.path.209=/hd_res/night_mode/rightwaitturn.png
arrow.tex.path.210=/hd_res/night_mode/leftrightturn.png
arrow.tex.path.211=/hd_res/night_mode/leftround.png
arrow.tex.path.212=/hd_res/night_mode/noleftturn.png
arrow.tex.path.215=/hd_res/night_mode/gostraightleftright.png
arrow.tex.path.402=/hd_res/night_mode/bicycle_cross_right.png
arrow.tex.path.412=/hd_res/night_mode/bicycle_vertical_right.png
arrow.tex.path.408=/hd_res/night_mode/bicycle_vertical_left.png
arrow.tex.path.410=/hd_res/night_mode/bicycle_cross_left.png
arrow.tex.path.411=/hd_res/night_mode/motorVehiclesC.png
arrow.tex.path.413=/hd_res/night_mode/bicycle_vertical_LL.png
arrow.tex.path.404=/hd_res/night_mode/bicycle_vertical_right_down.png
arrow.tex.path.508=/hd_res/night_mode/Rhombus.png
arrow.tex.path.509=/hd_res/night_mode/Triangle.png
arrow.tex.path.511.1=/hd_res/night_mode/SpeedBump1_white.png
arrow.tex.path.511.2=/hd_res/night_mode/SpeedBump1_yellow.png
arrow.tex.path.511.4=/hd_res/night_mode/SpeedBump1_red.png
arrow.tex.path.501.1=/hd_res/night_mode/SpeedBump2_white.png
arrow.tex.path.501.2=/hd_res/night_mode/SpeedBump2_yellow.png
arrow.tex.path.501.4=/hd_res/night_mode/SpeedBump2_red.png
arrow.tex.path.502.1=/hd_res/night_mode/SpeedBump3_white.png
arrow.tex.path.502.2=/hd_res/night_mode/SpeedBump3_yellow.png
arrow.tex.path.502.4=/hd_res/night_mode/SpeedBump3_red.png
arrow.tex.path.512.1=/hd_res/night_mode/SpeedBump4_white.png
arrow.tex.path.512.2=/hd_res/night_mode/SpeedBump4_yellow.png
arrow.tex.path.512.4=/hd_res/night_mode/SpeedBump4_red.png
arrow.tex.path.517.4=/hd_res/night_mode/SpeedBump5_red.png
arrow.tex.path.517.1=/hd_res/night_mode/SpeedBump5_white.png
arrow.tex.path.517.2=/hd_res/night_mode/SpeedBump5_yellow.png
arrow.tex.path.603=/hd_res/night_mode/BigSquareForbidArea.png
arrow.tex.path.604=/hd_res/night_mode/SmaSquareForbidArea.png
arrow.tex.path.605=/hd_res/night_mode/BigRectForbidArea.png
arrow.tex.path.606=/hd_res/night_mode/SmaRectForbidArea.png
arrow.tex.path.513.1=/hd_res/night_mode/UnSpeedBump1_white.png
arrow.tex.path.513.2=/hd_res/night_mode/UnSpeedBump1_yellow.png
arrow.tex.path.513.4=/hd_res/night_mode/UnSpeedBump1_red.png
arrow.tex.path.514.1=/hd_res/night_mode/UnSpeedBump2_white.png
arrow.tex.path.514.2=/hd_res/night_mode/UnSpeedBump2_yellow.png
arrow.tex.path.514.4=/hd_res/night_mode/UnSpeedBump2_red.png
arrow.tex.path.515.1=/hd_res/night_mode/UnSpeedBump3_white.png
arrow.tex.path.515.2=/hd_res/night_mode/UnSpeedBump3_yellow.png
arrow.tex.path.515.4=/hd_res/night_mode/UnSpeedBump3_red.png
arrow.tex.path.516.1=/hd_res/night_mode/UnSpeedBump4_white.png
arrow.tex.path.516.2=/hd_res/night_mode/UnSpeedBump4_yellow.png
arrow.tex.path.516.4=/hd_res/night_mode/UnSpeedBump4_red.png
arrow.tex.path.518.4=/hd_res/night_mode/UnSpeedBump5_red.png
arrow.tex.path.518.1=/hd_res/night_mode/UnSpeedBump5_white.png
arrow.tex.path.518.2=/hd_res/night_mode/UnSpeedBump5_yellow.png
arrow.tex.path.719=/hd_res/night_mode/busTransitLaneV.png
arrow.tex.path.721=/hd_res/night_mode/hov.png
arrow.tex.path.608=/hd_res/night_mode/noStopMarking.png
arrow.tex.path.219=/hd_res/night_mode/noLeftOrTurn.png
arrow.tex.path.722=/hd_res/night_mode/ParkingLotSign.png
arrow.tex.path.415=/hd_res/night_mode/415_1.png
arrow.tex.path.416=/hd_res/night_mode/416.png
arrow.tex.path.214=/hd_res/night_mode/noTurn.png

View File

@@ -0,0 +1,18 @@
building.icon.path.type.6=/building/加油站.png;e6e6e6 //路径;颜色
building.icon.path.type.30=/building/医院.png;e6e6e6
building.icon.path.type.35=/building/警察局.png;e6e6e6
building.icon.path.type.36=/building/邮局.png;e6e6e6
building.icon.path.type.37=/building/市政府.png;e6e6e6
building.icon.path.type.39=/building/法院.png;e6e6e6
building.icon.path.type.40=/building/政府机构.png;e6e6e6
building.icon.path.type.41=/building/社区活动中心.png;e6e6e6
building.icon.path.type.42=/building/购物中心.png;e6e6e6
building.icon.path.type.44=/building/银行.png;e6e6e6
building.icon.path.type.66=/building/商业设施.png;e6e6e6
building.icon.path.type.67=/building/展览馆.png;e6e6e6
building.icon.path.type.68=/building/火车站.png;e6e6e6
building.icon.path.type.69=/building/公交站.png;e6e6e6
building.icon.path.type.71=/building/飞机场.png;e6e6e6
building.icon.path.type.75=/building/紧急医疗服务.png;e6e6e6
building.icon.path.type.99=/building/mogo.png;e6e6e6

View File

@@ -0,0 +1,74 @@
backGround=60,74,105 //背景色
road=1E2637 //路面颜色
arrow.color.fac=1.0 //箭头颜色因子
alphaNumeric.color.fac=1.0 //地标颜色因子
zebra.color.fac=1.0 //斑马线颜色因子
spotLight=1;0.75;-25 //聚光灯 半径;亮度;偏移
shadow=18,28,56,180 //阴影颜色
greenBelt=35,50,75;60,74,105 //绿化带 底部颜色;顶部颜色
dividerLine=102,115,140;230,180,90;1.0 //白色;黄色;颜色因子
pole=6698B1;335780 //灯杆渐变颜色
guardBar=344563;273651;506B9A //隔离带颜色
roadPile=0.9,0.7,0.35;0.16,0.16,0.16;0.24,0.24,0.24 //路桩颜色
bridgePier=384f76;1e2636 //桥墩颜色
cable=5cd3ff;1e79d6;65f3ff;48b3bc //电缆颜色1;电缆颜色2;光缆颜色1;光缆颜色2
area.type.2=456A63 //绿地颜色
area.type.3.color.pure=426798 //水系颜色
area.type.3.color.gradient=426700;426798 //水系渐变颜色
area.type.3.ring.width=50 //水系环宽度
area.type.4=37485E //路面铺装颜色
area.type.101=3C4A69 //区域块颜色
regional=323E58 //人行步道颜色
building=23344E;4B5E89 //建筑物底部颜色;顶部颜色
camera=0 //摄像头颜色
trafficLight=0 //交通灯颜色
rsu.type.1=0 //雷达颜色
rsu.type.2=0 //mec颜色
rsu.type.3=0 //rsu颜色
//光照 环境光;漫反射;高光;高光的光泽度
selfCar.light=0.6,0.6,0.6;0.1,0.1,0.1;0.6,0.6,0.6;12.0 //自车
otherCar.light=0.4,0.4,0.4;0.1,0.1,0.1;0.6,0.6,0.6;12.0 //他车
others.light=0.4,0.4,0.4;0.1,0.1,0.1;0.6,0.6,0.6;12.0 //除自车和他车外的其他3d锚点
skybox.lookat=0;-13;8.5;0;0;3; 0;1;0 //天空盒lookat参数
skybox.proj=60;0.1;100 //天空盒fov,近平面,远平面
grayscale=#BCCCDAFF
building.text.color=0.8,0.8,0.8,1.0
building.text.size=100
station.text.color=0.0,0.0,1.0,1.0
station.text.size=150
cable.wave.color=1.0,1.0,1.0,0.6
cable.wave.vel=1.0
road.tex.path=/hd_res/night_mode/road.png
zebra.tex.path=/hd_res/night_mode/zebra.png
plane.tex.path=/hd_res/night_mode/plane.png
building.tex.path=/hd_res/night_mode/zhuan.png
divider.15.left.tex.path=/hd_res/night_mode/divider15_left.png
divider.15.right.tex.path=/hd_res/night_mode/divider15_right.png
skybox.2d.tex.path=/skyNight.png
road.isGradient=true
road.gradientColor=ffB5C8E6;00B5C8E6
road.gradientColor_morning=00f2c3b1;fff2c3b1
road.gradientColor_daytime=ffB5C8E6;00B5C8E6
road.gradientColor_evening=00f2c3b1;fff2c3b1
road.gradientColor_nighttime=004CECFF;004CECFF
greenbelt.isGradient=true
greenbelt.gradientColor=ffE5F0E8;00E5F0E8
greenbelt.gradientColor_morning=00f2c3b1;fff2c3b1
greenbelt.gradientColor_daytime=ffE5F0E8;00E5F0E8
greenbelt.gradientColor_evening=00f2c3b1;fff2c3b1
greenbelt.gradientColor_nighttime=004CECFF;004CECFF
plane.isGradient=true
plane.gradientColor=ffB5C8E6;00B5C8E6
plane.gradientColor_morning=00f2c3b1;fff2c3b1
plane.gradientColor_daytime=ffB5C8E6;00B5C8E6
plane.gradientColor_evening=00f2c3b1;fff2c3b1
plane.gradientColor_nighttime=004CECFF;004CECFF
fog=C4E1FF;20;65;0.9 //雾颜色,起始距离,结束距离,密度
fog_morning=F0F5F6;20;65;0.4 //雾颜色,起始距离,结束距离,密度
fog_daytime=C4E1FF;20;65;0.9 //雾颜色,起始距离,结束距离,密度
fog_evening=D6CFDC;20;65;0.9 //雾颜色,起始距离,结束距离,密度
fog_nighttime=4CECFF;20;65;0.3 //雾颜色,起始距离,结束距离,密度