Commit a3bef9f9 authored by 谢旭's avatar 谢旭

修改弹窗页面

parent e5edfd3e
No preview for this file type
...@@ -14,17 +14,24 @@ namespace CefDemo.Controllers ...@@ -14,17 +14,24 @@ namespace CefDemo.Controllers
public class ElecFenceController : ApiController public class ElecFenceController : ApiController
{ {
// GET api // GET api
public string Get(string id) public bool Get(string id)
{ {
return id; return true;
} }
// POST api // POST api
public string Post([FromBody] FenceModel model) public bool Post([FromBody] FenceModel model)
{ {
CalculateModel.SaveModel(model); CalculateModel.SaveModel(model);
CalculateModel.issetValue = true; CalculateModel.issetValue = true;
return "ok"; if (CalculateModel.Model == null)
{
return false;
}
else
{
return true;
}
} }
// PUT api // PUT api
public void Put(int id, string value) public void Put(int id, string value)
......
...@@ -18,6 +18,7 @@ namespace CefDemo.Extension ...@@ -18,6 +18,7 @@ namespace CefDemo.Extension
static public FenceModel Model; static public FenceModel Model;
static public bool issetValue =false; static public bool issetValue =false;
static public bool isOutArea = false;
public static bool IsSamePoint(Point p1,Point p2) public static bool IsSamePoint(Point p1,Point p2)
{ {
...@@ -110,6 +111,122 @@ namespace CefDemo.Extension ...@@ -110,6 +111,122 @@ namespace CefDemo.Extension
} }
public static string GetPointState(Point point)
{
if (Model == null)
return "--";
if (Model.FenceType == "polygon")
{
if (IsinPolyhedron(point, points, Convert.ToSingle(Model.Height)))
{
//在围栏内
var dis = PointToPlane(points, point, Convert.ToSingle(Model.Height), Convert.ToSingle(Model.Buffer_dis));
if (dis >= Convert.ToSingle(Model.Buffer_dis))
{
return "缓冲区内";
}
else if (dis < Convert.ToSingle(Model.Buffer_dis))
{
var showdis = dis.ToString().Substring(0, 5);
return "接近电子围栏";
}
//if (isOutArea == true)
//{
// //isOutArea = SocketModel.CancelCmd("#sic,,set,elecfence.alarm_enable,off" + Environment.NewLine);
//}
}
else
{
//在围栏外
var dis = PointToPlane(points, point, Convert.ToSingle(Model.Height), Convert.ToSingle(Model.Buffer_dis));
//var showdis = dis.ToShort();
////发出警报
//if (isOutArea == false)
//{
// /// isOutArea = SocketModel.SendCmd("#sic,,set,elecfence.alarm_enable,on" + Environment.NewLine);
//}
return $"闯出电子围栏";
}
}
else if (Model.FenceType == "sphere")
{
double _inner_Radius = Convert.ToSingle(Model.Radius) - Convert.ToSingle(Model.Buffer_dis) ; //内球体半径
double _distance = P2PDistance(point, Center); //
if (_distance < _inner_Radius)
{
// 内球体内
return "闯入";
}
else if (_distance >= _inner_Radius && _distance < Convert.ToSingle(Model.Radius))
{
//缓冲区内
return "闯入";
}
else if (_distance >= Convert.ToSingle(Model.Radius))
{
//在球外
return "闯出";
}
}
else if (Model.FenceType == "circle")
{
double low_hight = Center.Z;
double hei_height = Center.Z + Convert.ToSingle( Model.Height);
double buffer_low = Center.Z + Convert.ToSingle(Model.Buffer_dis);
double buffer_hei = hei_height- Convert.ToSingle(Model.Buffer_dis);
if ((point.Z >= buffer_low && point.Z <= buffer_hei)||(point.Z >= low_hight && point.Z <= hei_height && point.Z < buffer_low && point.Z > buffer_hei))
{
double _hor_inner_radius = 0.0;
_hor_inner_radius = Convert.ToSingle(Model.Radius) - Convert.ToSingle(Model.Buffer_dis);
//投影到平面计算, 点与圆心的距离
double _distance = P2PDistance(point, Center);
//如果投影再内,再判断高度是否超出
if (_distance > _hor_inner_radius)
{
//在内圆,安全
return "缓冲区内";
}
else if (_distance <= _hor_inner_radius && _distance < Convert.ToSingle(Model.Radius))
{
////出了内圆 在外圆内
return "接近电子围栏";
}
else if (_distance >= Convert.ToSingle(Model.Radius))
{
return "闯出电子围栏";
}
}
else
{
return "闯出电子围栏";
}
}
return "--";
}
/// <summary> /// <summary>
/// 多面体电子围栏 /// 多面体电子围栏
/// </summary> /// </summary>
...@@ -134,12 +251,24 @@ namespace CefDemo.Extension ...@@ -134,12 +251,24 @@ namespace CefDemo.Extension
var showdis = dis.ToString().Substring(0,5); var showdis = dis.ToString().Substring(0,5);
return $"距离电子围栏{showdis}米"; return $"距离电子围栏{showdis}米";
} }
if (isOutArea==true)
{
//isOutArea = SocketModel.CancelCmd("#sic,,set,elecfence.alarm_enable,off" + Environment.NewLine);
}
} }
else else
{ {
//在围栏外 //在围栏外
var dis = PointToPlane(points, point, Height, Buffer_dis); var dis = PointToPlane(points, point, Height, Buffer_dis);
var showdis = dis.ToShort(); var showdis = dis.ToShort();
//发出警报
if (isOutArea==false)
{
/// isOutArea = SocketModel.SendCmd("#sic,,set,elecfence.alarm_enable,on" + Environment.NewLine);
}
return $"超出电子围栏{showdis}米"; return $"超出电子围栏{showdis}米";
} }
...@@ -339,13 +468,13 @@ namespace CefDemo.Extension ...@@ -339,13 +468,13 @@ namespace CefDemo.Extension
public static string GetWarningInfo(Point point) public static string GetWarningInfo(Point point)
{ {
if (Model == null) if (Model == null)
return "0.0"; return "--";
if (Model.FenceType == "polygon") //多边体 if (Model.FenceType == "polygon") //多边体
{ {
if (points == null && issetValue ==true) if (points == null && issetValue ==true)
{ {
return "0.0"; return "--";
} }
else else
{ {
...@@ -357,7 +486,7 @@ namespace CefDemo.Extension ...@@ -357,7 +486,7 @@ namespace CefDemo.Extension
{ {
if (Center == null && issetValue == true) if (Center == null && issetValue == true)
{ {
return "0.0"; return "--";
} }
else else
{ return DistanceToCylinder(Center, Convert.ToSingle(Model.Radius), point, Convert.ToSingle(Model.Height), Convert.ToSingle(Model.Buffer_dis)); } { return DistanceToCylinder(Center, Convert.ToSingle(Model.Radius), point, Convert.ToSingle(Model.Height), Convert.ToSingle(Model.Buffer_dis)); }
...@@ -367,7 +496,7 @@ namespace CefDemo.Extension ...@@ -367,7 +496,7 @@ namespace CefDemo.Extension
{ {
if (Center == null && issetValue == true) if (Center == null && issetValue == true)
{ {
return "0.0"; return "--";
} }
else else
{ {
...@@ -381,7 +510,13 @@ namespace CefDemo.Extension ...@@ -381,7 +510,13 @@ namespace CefDemo.Extension
} }
public static bool isOutBufferArea()
{
if (Model == null) return false;
return true;
}
} }
} }
...@@ -185,6 +185,21 @@ namespace CefDemo.Extension ...@@ -185,6 +185,21 @@ namespace CefDemo.Extension
} }
public static bool SendCmd(string cmd)
{
byte[] arrServerRecMsg = new byte[1024 * 10];
client.Send(Encoding.UTF8.GetBytes(cmd));
return true;
}
public static bool CancelCmd(string cmd)
{
byte[] arrServerRecMsg = new byte[1024 * 10];
client.Send(Encoding.UTF8.GetBytes(cmd));
return false;
}
} }
} }
...@@ -134,11 +134,12 @@ namespace CefDemo ...@@ -134,11 +134,12 @@ namespace CefDemo
string longitude = location.ElementAt(Convert.ToInt32(i++ % 16)).Value.ToString(); string longitude = location.ElementAt(Convert.ToInt32(i++ % 16)).Value.ToString();
string latitude = location.ElementAt(Convert.ToInt32(i++ % 16)).Key.ToString(); string latitude = location.ElementAt(Convert.ToInt32(i++ % 16)).Key.ToString();
string alitude = "50.32"; string alitude = "50.32";
string distance = CalculateModel.GetWarningInfo(new Point(Convert.ToSingle(longitude), Point point = new Point(Convert.ToSingle(longitude),
Convert.ToSingle(latitude), Convert.ToSingle(latitude),
Convert.ToSingle(alitude) Convert.ToSingle(alitude)
)); );
string distance = CalculateModel.GetWarningInfo(point);
string pointstate = CalculateModel.GetPointState(point);
string sendMessage = "" + string sendMessage = "" +
"{\"deviceType\":\"RTK\"" + "{\"deviceType\":\"RTK\"" +
",\"SICVersion\":\"SIC_1.2\"" + ",\"SICVersion\":\"SIC_1.2\"" +
...@@ -156,8 +157,7 @@ namespace CefDemo ...@@ -156,8 +157,7 @@ namespace CefDemo
",\"receivetime\":\"20200630153620\"" + ",\"receivetime\":\"20200630153620\"" +
",\"longitude\":" + longitude + // ",\"longitude\":" + longitude + //
",\"WarningInfo\":" +"\""+ distance + "\"" + ",\"WarningInfo\":" +"\""+ distance + "\"" +
",\"Pointstate\":" + "\"" + pointstate + "\"" +
//",\"WarningInfo\":\"20200630153620\"" +
"}"; "}";
if (i==10000000) if (i==10000000)
{ {
......
...@@ -8360,3 +8360,687 @@ C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, us ...@@ -8360,3 +8360,687 @@ C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, us
[0702/181821.675:WARNING:angle_platform_impl.cc(45)] compileToBinary(256): [0702/181821.675:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/190934.876:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/190936.507:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/190938.556:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/190944.296:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/190944.512:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/190944.790:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/190945.088:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/190945.532:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(174,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(170,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191052.018:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191059.545:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191153.017:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191306.475:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/191308.323:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/191310.754:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191316.948:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191317.198:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191317.459:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191358.654:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191400.022:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191653.289:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/191655.752:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/191658.172:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191706.238:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191706.479:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191706.746:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191717.688:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191754.523:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/191756.525:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0702/191758.794:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191802.909:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191803.200:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191803.428:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191803.745:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191804.148:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191820.981:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0702/191822.521:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/085154.625:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/085156.929:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/085159.146:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/085209.481:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/085209.757:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/085210.088:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/085211.709:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/085626.534:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/085628.372:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/085631.311:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/085643.705:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/085643.998:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/085648.249:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/085656.798:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/085805.381:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/091256.328:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/091257.171:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/091259.643:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/091301.514:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/091301.715:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/091301.834:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/091316.524:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/091316.577:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/092752.969:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/092757.125:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/092759.805:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/092807.808:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/092808.214:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/092808.431:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/092808.764:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/092808.944:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/092808.997:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/093240.863:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/093244.651:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/093247.621:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/093251.975:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/093252.211:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/093252.474:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/093252.827:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/093258.009:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/093305.504:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/093911.509:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/093915.095:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/093919.280:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/093928.849:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/093929.209:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/093932.585:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/093952.600:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/094045.557:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/094151.703:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094151.762:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094156.817:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094156.825:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094201.881:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094201.884:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094206.930:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094206.946:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094211.992:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094212.020:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094217.074:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094217.095:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094222.164:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094222.180:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094227.299:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094227.338:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094232.352:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094232.386:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094237.409:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094237.449:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094242.456:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094242.509:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094247.509:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094247.576:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094252.604:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094252.635:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094257.658:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094257.682:WARNING:dns_config_service_win.cc(672)] Failed to read DnsConfig.
[0703/094402.315:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/094405.831:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/094409.766:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/094423.114:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/094423.382:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/094423.697:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/094430.133:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/095018.189:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/095019.309:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/095021.775:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/095022.024:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/095022.182:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/095022.499:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/095022.698:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/095049.543:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/103414.830:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/103416.085:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/103418.463:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/103425.614:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/103425.852:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/103425.990:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/103447.479:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/103745.338:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/103747.527:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/103749.970:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/103755.673:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/103755.942:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/103756.155:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/103759.026:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/103800.845:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/103801.004:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/104021.311:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/104022.928:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/104234.839:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/104238.678:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/104238.817:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/104239.057:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/104239.250:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/104239.425:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(174,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(170,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/104239.522:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/104246.761:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/104301.889:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/104358.479:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/104359.684:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/104401.906:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/104403.962:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/104404.169:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/104404.306:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/104427.707:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/104436.741:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/114001.503:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/114002.542:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/114004.379:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/114005.106:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/114005.206:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/114005.413:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/114005.540:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/114005.722:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/114025.600:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/114025.629:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/114135.891:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/114138.885:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/114141.369:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/114148.907:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/114149.146:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/114200.860:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/114201.513:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/114204.897:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/115302.231:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/115304.211:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/115305.840:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/115309.644:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/115309.855:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/115309.979:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/115314.647:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/115314.776:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/115336.569:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/133835.556:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/133836.321:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/133837.855:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/133838.169:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/133838.688:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/133838.856:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/133838.989:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/133839.475:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/133842.000:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/133842.105:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(174,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(170,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/133855.419:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/134531.277:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/134532.973:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/134534.964:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/134538.721:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/134538.950:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/134539.119:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/134629.273:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/135603.616:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/135604.356:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/135606.291:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/135607.230:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/135607.517:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/145315.723:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/145317.066:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/145319.615:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/145324.810:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/145325.032:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/145325.185:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/145325.403:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/145326.612:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/145427.693:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/145640.120:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/145641.654:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/145643.781:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/145651.482:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/145651.711:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/145651.848:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/145652.031:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/145759.319:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/145800.579:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(174,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(170,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/145811.784:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/145855.788:INFO:CONSOLE(1)] "Access to XMLHttpRequest at 'localhost:12345/elecfrence/false' from origin 'http://localhost:12345' has been blocked by CORS policy: Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https.", source: http://localhost:12345/electircfence/polyfills.83c00be449c76cfa39e1.js (1)
[0703/145855.823:INFO:CONSOLE(1)] "ERROR [object Object]", source: http://localhost:12345/electircfence/main.c503e1fd5f61b3e2c396.js (1)
[0703/145906.269:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/151743.298:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/151744.450:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/151747.129:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/151753.964:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/151754.131:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/151754.338:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/151806.691:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(189,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(185,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/151930.228:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/151931.353:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/151933.036:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/151934.799:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/151934.981:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/151935.107:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/151940.270:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(149,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/151940.387:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/152723.803:INFO:CONSOLE(1)] "This tileset JSON uses the "content.url" property which has been deprecated. Use "content.uri" instead.", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/152731.400:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.c62c23642f7fbbbdafae.js (1)
[0703/152734.924:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(73,81-126): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/152737.906:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(168,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(164,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/152738.357:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(143,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/152738.641:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(186,25-63): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
C:\fakepath(182,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
[0703/152738.988:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(161,8-42): warning X3571: pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them
...@@ -14,5 +14,5 @@ ...@@ -14,5 +14,5 @@
<app-root></app-root> <app-root></app-root>
<!-- <script src="./assets/cesium/Source/Cesium.js" type="module"></script> <!-- <script src="./assets/cesium/Source/Cesium.js" type="module"></script>
<script src="./assets/smart3d/smart3d.js" type="text/javascript"></script> --> <script src="./assets/smart3d/smart3d.js" type="text/javascript"></script> -->
<script type="text/javascript" src="runtime.63f49ff57885da8e180a.js"></script><script type="text/javascript" src="es2015-polyfills.bd2948f767ad791e8f4b.js" nomodule></script><script type="text/javascript" src="polyfills.83c00be449c76cfa39e1.js"></script><script type="text/javascript" src="scripts.c62c23642f7fbbbdafae.js"></script><script type="text/javascript" src="main.ab80c7291b04b69861ec.js"></script></body> <script type="text/javascript" src="runtime.63f49ff57885da8e180a.js"></script><script type="text/javascript" src="es2015-polyfills.bd2948f767ad791e8f4b.js" nomodule></script><script type="text/javascript" src="polyfills.83c00be449c76cfa39e1.js"></script><script type="text/javascript" src="scripts.c62c23642f7fbbbdafae.js"></script><script type="text/javascript" src="main.c503e1fd5f61b3e2c396.js"></script></body>
</html> </html>
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment