Commit f56d7979 authored by 谢旭's avatar 谢旭

增加位置显示

parent 02fb7c95
No preview for this file type
......@@ -134,10 +134,7 @@ namespace CefDemo.Extension
var mcsrt_array = locationStr.Find("GNRMC").Value.ToString().Split(',');
var ggastr_array = locationStr.Find("GNGGA").Value.ToString().Split(',');
#region
//var jsonobj = new {
// deviceType = "RTK",
// SICVersion = "SIC_1.2",
......@@ -157,6 +154,8 @@ namespace CefDemo.Extension
//};
//jsonStr = JsonConvert.SerializeObject(jsonobj);
#endregion
jsonStr = "{" +
"\"deviceType\":\"RTK\"" +
",\"SICVersion\":\"SIC_1.2\"" +
......@@ -169,9 +168,9 @@ namespace CefDemo.Extension
",\"deviceModel\":\"Galaxy-6\"" +
",\"TN\":\"SG609AE41000059\"" +
",\"SN\":\"SG609AE41000059\"" +
",\"sendtime\":" + System.DateTime.Now.ToString() +
",\"sendtime\":" + System.DateTime.Now.ToString().Replace('/', '0').Replace(':', '0').Trim() +
",\"deviceBrand\":\"SOUTH\"" +
",\"receivetime\":" + System.DateTime.Now.ToString() +
",\"receivetime\":" + System.DateTime.Now.ToString().Replace('/', '0').Replace(':', '0').Trim() +
",\"longitude\":" + Convert.ToString(Convert.ToSingle(ggastr_array.ElementAt(4).ToString()) / 100) +
"}";
return jsonStr;
......@@ -183,7 +182,7 @@ namespace CefDemo.Extension
}
return jsonStr;
return "";
});
......
......@@ -49,9 +49,9 @@ namespace CefDemo
return next();
}
if (requestType == "/getPosition")
if (requestType == "/getPosition/")
{
accept(null, WebSocketEcho);
}
else if (requestType == "/getZNZ3Position")
{
......@@ -66,217 +66,11 @@ namespace CefDemo
return Task.FromResult<object>(null);
}
static Socket socketwatch = null;
static Socket client = null;
public static void OpenSocketConnection()
{
if (socketwatch==null)
{
//定义一个套接字用于监听客户端发来的消息,包含三个参数(IP4寻址协议,流式连接,Tcp协议)
socketwatch = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
//服务端发送信息需要一个IP地址和端口号
IPAddress address = IPAddress.Parse("127.0.0.1");
//将IP地址和端口号绑定到网络节点point上
IPEndPoint point = new IPEndPoint(address, Convert.ToInt32("8002"));
//此端口专门用来监听的
//监听绑定的网络节点
socketwatch.Bind(point);
//将套接字的监听队列长度限制为20
socketwatch.Listen(20);
}
//client = socketwatch.Accept();
}
public static void ListeningSocket()
{
//持续不断监听客户端发来的请求
while (true)
{
try
{
client = socketwatch.Accept();
IPAddress clientIP = (client.RemoteEndPoint as IPEndPoint).Address;
int clientPort = (client.RemoteEndPoint as IPEndPoint).Port;
}
catch (Exception ex)
{
//提示套接字监听异常
Console.WriteLine(ex.Message);
}
}
}
public static Task<string> getZNZ3Position()
{
return Task.Run<string>(()=> {
string jsonStr = "11111111111";
if (client != null)
{
Socket Conntection = client as Socket;
//创建一个内存缓冲区,其大小为1024*1024字节 即1M
byte[] arrServerRecMsg = new byte[1024 * 1024];
//将接收到的信息存入到内存缓冲区,并返回其字节数组的长度
int Port1 = (Conntection.RemoteEndPoint as IPEndPoint).Port;
int Port2 = (client.RemoteEndPoint as IPEndPoint).Port;
if (Port1 == Port2) //连进来的连接是否新连接
{
bool tag = true;
Dictionary<string,string> locationStr = new Dictionary<string, string>();
while (tag)
{
//没有新连接进来的前,当前线程被阻塞的
int length = Conntection.Receive(arrServerRecMsg);
//将机器接受到的字节数组转换为人可以读懂的字符串
string strSRecMsg = Encoding.UTF8.GetString(arrServerRecMsg, 0, length);
string[] protocalStr = strSRecMsg.Split('$');
if (strSRecMsg == "") //没有收到信息
{
}
else
{
for (int i=0;i< protocalStr.Count();++i)
{
if (protocalStr.Count()==2)
{ break; }
if (protocalStr.ElementAt(i).Contains("GNRMC") && !locationStr.Keys.Contains("GNRMC"))
{
locationStr.Add("GNRMC", protocalStr.ElementAt(i).ToString());
}
else if (protocalStr.ElementAt(i).Contains("GNGGA") && !locationStr.Keys.Contains("GNGGA"))
{
locationStr.Add("GNGGA", protocalStr.ElementAt(i).ToString());
}
if (locationStr.Count == 2)
{
var mcstr = locationStr.Find("GNRMC").Value.Substring(6, 9);
var ggsstr = locationStr.Find("GNGGA").Value.Substring(6, 9);
if (Convert.ToSingle(mcstr) < Convert.ToSingle(ggsstr))
{
locationStr.Remove("GNRMC");
}
else if (Convert.ToSingle(mcstr) > Convert.ToSingle(ggsstr))
{
locationStr.Remove("GNGGA");
}
}
}
if (locationStr.Count()==2)
{
tag = false;
}
}
}
var mcsrt_array= locationStr.Find("GNRMC").Value.ToString().Split(',');
var ggastr_array = locationStr.Find("GNGGA").Value.ToString().Split(',');
//var jsonobj = new {
// deviceType = "RTK",
// SICVersion = "SIC_1.2",
// alitude = ,
// latitude = ,
// interactive = "02",
// terminalType = "指南者3",
// gnss = ggastr_array.ElementAt(7).ToString(),
// producer = "广州南方卫星导航仪器有限公司",
// deviceModel = "Galaxy-6",
// TN = "SG609AE41000059",
// SN = "SG609AE41000059",
// sendtime = System.DateTime.Now.ToString(),
// deviceBrand = "SOUTH",
// receivetime = System.DateTime.Now.ToString(),
// longitude =
//};
//jsonStr = JsonConvert.SerializeObject(jsonobj);
jsonStr = "{" +
"\"deviceType\":\"RTK\"" +
",\"SICVersion\":\"SIC_1.2\"" +
",\"alitude\":" + ggastr_array.ElementAt(9).ToString() +
",\"latitude\":" + Convert.ToString(Convert.ToSingle(ggastr_array.ElementAt(2).ToString()) / 100) +
",\"interactive\":\"02\"" +
",\"terminalType\":\"指南者3\"" +
",\"gnss\":" + ggastr_array.ElementAt(7).ToString() +
",\"producer\":\"广州南方卫星导航仪器有限公司\"" +
",\"deviceModel\":\"Galaxy-6\"" +
",\"TN\":\"SG609AE41000059\"" +
",\"SN\":\"SG609AE41000059\"" +
",\"sendtime\":" + System.DateTime.Now.ToString() +
",\"deviceBrand\":\"SOUTH\"" +
",\"receivetime\":" + System.DateTime.Now.ToString() +
",\"longitude\":" + Convert.ToString(Convert.ToSingle(ggastr_array.ElementAt(4).ToString()) / 100) +
"}";
return jsonStr;
}
else
{
return "";
}
}
return jsonStr;
});
}
public static async Task ZNZ3PositionEcho(IDictionary<string, object> websocketContext)
{
//开启socket监听
//OpenSocketConnection();
//开个异步线程监听
// Task task = new Task(ListeningSocket);
// task.Wait();
//开个线程获取发送过来的数据,并且返回需要的json数据
socketwatch = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
IPAddress address = IPAddress.Parse("127.0.0.1");
IPEndPoint point = new IPEndPoint(address, Convert.ToInt32("8002"));
socketwatch.Bind(point);
socketwatch.Listen(20);
client = socketwatch.Accept();
var sendAsync = (WebSocketSendAsync)websocketContext["websocket.SendAsync"];
var receiveAsync = (WebSocketReceiveAsync)websocketContext["websocket.ReceiveAsync"];
......@@ -287,7 +81,7 @@ namespace CefDemo
object status;
while (!websocketContext.TryGetValue("websocket.ClientCloseStatus", out status) || (int)status == 0)
{
string messageStr = await getZNZ3Position();
string messageStr = await SocketModel.getZNZ3Position();
if (messageStr != "")
{
......@@ -312,16 +106,56 @@ namespace CefDemo
var callCancelled = (CancellationToken)websocketContext["websocket.CallCancelled"];
byte[] buffer = new byte[1024*1024];
// WebSocketReceiveResult received = await receiveAsync(new ArraySegment<byte>(buffer), callCancelled);
// string sendMessage = "{'deviceType':'RTK','SICVersion':'SIC_1.2','alitude':'15.393','latitude':'23.181435393','interactive':'02','terminalType':'指南者3','gnss':'21','producer':'广州南方卫星导航仪器有限公司','deviceModel':'Galaxy - 6','TN':'SG609AE41000059','SN':'SG609AE41000059','sendtime':'20191106143620','deviceBrand':'SOUTH','receivetime':'20191106143620','longitude':'113.41716938'}";
string sendMessage = "{\"deviceType\":\"RTK\",\"SICVersion\":\"SIC_1.2\",\"alitude\":\"15.393\",\"latitude\":\"23.181435393\",\"interactive\":\"02\",\"terminalType\":\"指南者3\",\"gnss\":\"21\",\"producer\":\"广州南方卫星导航仪器有限公司\",\"deviceModel\":\"Galaxy-6\",\"TN\":\"SG609AE41000059\",\"SN\":\"SG609AE41000059\",\"sendtime\":\"20191106143620\",\"deviceBrand\":\"SOUTH\",\"receivetime\":\"20191106143620\",\"longitude\":\"113.41716938\"}";
//string sendMessage = "广州南方卫星导航仪器有限公司";
buffer = Encoding.UTF8.GetBytes(sendMessage);
Dictionary<string, string> location = new Dictionary<string, string>();
location.Add("28.227208","113.083900");
location.Add("28.227282","113.083851");
location.Add("28.227336","113.083773");
location.Add("28.227449","113.083710");
location.Add("28.227587","113.083591");
location.Add("28.227591","113.083856");
location.Add("28.227544","113.084038");
location.Add("28.227445","113.084131");
location.Add("28.227322","113.084340");
location.Add("28.227256","113.084118");
location.Add("28.227139","113.083997");
location.Add("28.226966","113.083947");
location.Add("28.226908","113.083872");
location.Add("28.227081","113.083755");
location.Add("28.227098","113.083805");
location.Add("28.227174","113.083842");
object status;
long i = 0;
while (!websocketContext.TryGetValue("websocket.ClientCloseStatus", out status) || (int)status == 0)
{
string sendMessage = "" +
"{\"deviceType\":\"RTK\"" +
",\"SICVersion\":\"SIC_1.2\"" +
",\"alitude\":\"50.32\"" +
",\"latitude\":" + location .ElementAt(Convert.ToInt32( i++%16)).Key.ToString()+
",\"interactive\":\"02\"" +
",\"terminalType\":\"指南者3\"" +
",\"gnss\":\"21\"" +
",\"producer\":\"广州南方卫星导航仪器有限公司\"" +
",\"deviceModel\":\"Galaxy-6\"" +
",\"TN\":\"SG609AE41000059\"" +
",\"SN\":\"SG609AE41000059\"" +
",\"sendtime\":\"20191106143620\"" +
",\"deviceBrand\":\"SOUTH\"" +
",\"receivetime\":\"20191106143620\"" +
",\"longitude\":" + location.ElementAt(Convert.ToInt32(i++ % 16)).Value.ToString() +
"}";
if (i==10000000)
{
i = 0;
}
buffer = Encoding.UTF8.GetBytes(sendMessage);
await sendAsync(new ArraySegment<byte>(buffer, 0, buffer.Count()), 1, true, callCancelled);
await Task.Delay(2000);
}
......
......@@ -30,11 +30,11 @@ namespace CefDemo
);
// 将路由配置附加到 appBuilder
app.UseWebApi(config);
//app.Use(UpgradeToWebSockets);
app.Use(ProcessSocketRequest.UpgradeToWebSockets);
//app.UseStaticFiles();
//app.UseRemote3DTilesDownloader();
//
app.Use(ProcessSocketRequest.UpgradeToWebSockets);
app.UseStaticFiles();
app.UseRemote3DTilesDownloader();
}
......
......@@ -35,8 +35,7 @@
<Setter Property="VerticalAlignment"
Value="Center" />
<Setter Property="HorizontalAlignment"
Value="Center" />
<Setter Property="Height"
Value="16" />
<Setter Property="Margin"
......@@ -72,12 +71,13 @@
<GroupBox Header="连接信息" Style="{StaticResource GroupBoxStyle}">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="2*"></RowDefinition>
<RowDefinition Height="1.5*"></RowDefinition>
<RowDefinition Height="1.5*"></RowDefinition>
<RowDefinition Height="1.5*"></RowDefinition>
<RowDefinition Height="3*"></RowDefinition>
<RowDefinition Height="1.5*"></RowDefinition>
<RowDefinition Height="1.5*"></RowDefinition>
<RowDefinition Height="2*"></RowDefinition>
<RowDefinition Height="1*"></RowDefinition>
</Grid.RowDefinitions>
<Grid Grid.Row="0">
......@@ -92,27 +92,33 @@
<ColumnDefinition Width="1.5*"></ColumnDefinition>
<ColumnDefinition Width="1*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<TextBlock Grid.Column="0" Text="监听地址" Style="{StaticResource TextBlockStyle }"></TextBlock>
<TextBlock Grid.Column="0" Text="监听地址" Style="{StaticResource TextBlockStyle }" HorizontalAlignment="Center"></TextBlock>
<TextBox Grid.Column="1" Style="{StaticResource TextBoxStyle}" Text="{Binding IpStr ,Mode=TwoWay}"></TextBox>
<TextBlock Grid.Column="2" Text="监听地址" Style="{StaticResource TextBlockStyle }"></TextBlock>
<TextBlock Grid.Column="2" Text="监听地址" Style="{StaticResource TextBlockStyle }" HorizontalAlignment="Center"></TextBlock>
<TextBox Grid.Column="3" Style="{StaticResource TextBoxStyle}" Text="{Binding PortStr,Mode=TwoWay}"></TextBox>
<Button Grid.Column="4" Style="{StaticResource ButtonStyle}" Content="监听" Command="{Binding ListenCmd ,Mode=OneWay}"></Button>
<TextBlock Grid.Column="5" Style="{StaticResource TextBlockStyle}" Text="{Binding ConnectResult,Mode=TwoWay}"></TextBlock>
</Grid>
<Grid Grid.Row="2">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="2*"></ColumnDefinition>
<ColumnDefinition Width="2*"/>
<ColumnDefinition Width="2*"></ColumnDefinition>
<ColumnDefinition Width="2*"></ColumnDefinition>
<ColumnDefinition Width="2*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<TextBlock Grid.Column="0" Style="{StaticResource TextBlockStyle}" Text="设备类型"></TextBlock>
<TextBlock Grid.Column="1" Style="{StaticResource TextBlockStyle}" Text="{Binding DeviceType,Mode=TwoWay}"></TextBlock>
<TextBlock Grid.Column="2" Style="{StaticResource TextBlockStyle}" Text="生成厂商"></TextBlock>
<TextBlock Grid.Column="3" Style="{StaticResource TextBlockStyle}" Text="{Binding ProFactory,Mode=TwoWay}"></TextBlock>
<GroupBox Header="连接成功" Visibility="{Binding isTypeVisable,Mode=TwoWay}" Margin="4,2,4,2">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="2*"></ColumnDefinition>
<ColumnDefinition Width="2*"/>
<ColumnDefinition Width="2*"></ColumnDefinition>
<ColumnDefinition Width="3*"></ColumnDefinition>
<ColumnDefinition Width="1*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<TextBlock Grid.Column="0" Style="{StaticResource TextBlockStyle}" HorizontalAlignment="Left" Visibility="{Binding isTypeVisable,Mode=TwoWay}" Text="设备类型:"></TextBlock>
<TextBlock Grid.Column="1" Style="{StaticResource TextBlockStyle}" HorizontalAlignment="Left" Text="{Binding DeviceType,Mode=TwoWay}"></TextBlock>
<TextBlock Grid.Column="2" Style="{StaticResource TextBlockStyle}" HorizontalAlignment="Left" Visibility="{Binding isFactoryVisable,Mode=TwoWay}" Text="生成厂商:"></TextBlock>
<TextBlock Grid.Column="3" Style="{StaticResource TextBlockStyle}" HorizontalAlignment="Left" Text="{Binding ProFactory,Mode=TwoWay}"></TextBlock>
</Grid>
</GroupBox>
</Grid>
<Grid Grid.Row="3">
<Grid.ColumnDefinitions>
......
......@@ -9,7 +9,7 @@
WindowStartupLocation="CenterScreen"
WindowState="Maximized"
KeyUp="Window_KeyUp"
Title="MainWindow" Height="450" Width="800">
Title="三维场景显示" Height="450" Width="800">
<Grid>
......@@ -38,6 +38,7 @@
Address="http://localhost:12345/electircfence/index.html" />-->
<wpf:ChromiumWebBrowser Grid.Row="1"
x:Name="Browser"
Address="http://localhost:12345/electircfence/index.html"
/>
<StatusBar Grid.Row="2">
<TextBlock Text="状态"></TextBlock>
......
......@@ -30,6 +30,19 @@ namespace CefDemo.ViewModel
{ SetProperty(ref portstr, value, nameof(PortStr), () => RaisePropertiesChanged((PortStr))); }
}
private string istypevisable;
public string isTypeVisable
{
get => istypevisable;
set { SetProperty(ref istypevisable, value, nameof(isTypeVisable), () => RaisePropertiesChanged((isTypeVisable))); }
}
private string isfactoryvisable;
public string isFactoryVisable
{
get => isfactoryvisable;
set { SetProperty(ref isfactoryvisable, value, nameof(isFactoryVisable), () => RaisePropertiesChanged((isFactoryVisable))); }
}
private string devicetype;
public string DeviceType
{
......@@ -55,7 +68,9 @@ namespace CefDemo.ViewModel
{
IpStr = "127.0.0.1";
PortStr = "8002";
// ConnectResult = "监听成功!";
isFactoryVisable = "Hidden";
isTypeVisable = "Hidden";
// ConnectResult = "监听成功!";
ListenCmd = new DelegateCommand(async ()=> {
bool listen_result = SocketModel.StartListening(IpStr, PortStr);
......@@ -68,11 +83,17 @@ namespace CefDemo.ViewModel
if (accept_result)
{
ConnectResult = "连接成功!";
isFactoryVisable = "Visible";
isTypeVisable = "Visible";
}
var jsonstr= await SocketModel.getZNZ3Position();
object conobj= JsonConvert.DeserializeObject(jsonstr);
string[] objlist = jsonstr.ToString().Split(',');
string[] typelist = objlist.ElementAt(5).ToString().Split(':');
string[] factorylist = objlist.ElementAt(7).ToString().Split(':');
DeviceType = typelist.ElementAt(1).Substring(1, typelist.ElementAt(1).ToString().Length-2);
ProFactory = factorylist.ElementAt(1).Substring(1, factorylist.ElementAt(1).ToString().Length - 2);
}
});
......
......@@ -6743,3 +6743,317 @@ C:\fakepath(188,8-42): warning X3571: pow(f, e) will not work for negative f, us
[0629/171709.465:WARNING:angle_platform_impl.cc(45)] compileToBinary(256):
C:\fakepath(188,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
[0630/100058.958: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.0f4415c2bf5b47245d95.js (1)
[0630/100102.572:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.0f4415c2bf5b47245d95.js (1)
[0630/100105.417: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
[0630/100121.033: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
[0630/100121.537: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
[0630/100348.645: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
[0630/100438.593: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
[0630/100538.806: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.0f4415c2bf5b47245d95.js (1)
[0630/100540.561:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.0f4415c2bf5b47245d95.js (1)
[0630/100543.858: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
[0630/100549.161: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
[0630/100549.417: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
[0630/100549.661: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
[0630/100549.983: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
[0630/100550.247: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
[0630/100818.617: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.0f4415c2bf5b47245d95.js (1)
[0630/100820.576:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.0f4415c2bf5b47245d95.js (1)
[0630/100822.902: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
[0630/100828.867: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
[0630/100829.068: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
[0630/100829.452: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
[0630/100829.666: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
[0630/100829.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
[0630/100836.887: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
[0630/104916.746: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.0f4415c2bf5b47245d95.js (1)
[0630/104920.900:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.0f4415c2bf5b47245d95.js (1)
[0630/104923.480: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
[0630/104924.209: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
[0630/104924.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
[0630/104924.724: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
[0630/104924.981: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
[0630/104942.668: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
[0630/105112.583: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
[0630/105125.746: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
[0630/105454.930: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.0f4415c2bf5b47245d95.js (1)
[0630/105500.043:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.0f4415c2bf5b47245d95.js (1)
[0630/105503.575: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
[0630/105524.443: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
[0630/105524.675: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
[0630/105524.905: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
[0630/105525.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
[0630/105525.481: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
[0630/105528.044: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
[0630/110203.527: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.0f4415c2bf5b47245d95.js (1)
[0630/110205.579:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.0f4415c2bf5b47245d95.js (1)
[0630/110207.863: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
[0630/110226.993: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
[0630/110227.396: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
[0630/110227.658: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
[0630/110228.293: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
[0630/110748.197: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
[0630/111207.945: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
[0630/111647.846: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.0f4415c2bf5b47245d95.js (1)
[0630/111649.660:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.0f4415c2bf5b47245d95.js (1)
[0630/111652.554: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
[0630/111714.399: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
[0630/111714.841: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
[0630/111727.930: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
[0630/111728.174: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
[0630/111728.606: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
[0630/111745.030: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
[0630/111824.066: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
[0630/114046.223: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.0f4415c2bf5b47245d95.js (1)
[0630/114047.135:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.0f4415c2bf5b47245d95.js (1)
[0630/114049.202: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
[0630/114049.925: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
[0630/114050.197: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
[0630/114103.649: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
[0630/114104.397: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
[0630/114131.472: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
[0630/114202.496: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
[0630/114420.639: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.0f4415c2bf5b47245d95.js (1)
[0630/114423.219:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.0f4415c2bf5b47245d95.js (1)
[0630/114425.441: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
[0630/114429.722: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
[0630/114430.025: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
[0630/114430.232: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
[0630/114430.620: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
[0630/114436.190: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
[0630/114452.937: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
[0630/114728.107: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.0f4415c2bf5b47245d95.js (1)
[0630/114728.920:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.0f4415c2bf5b47245d95.js (1)
[0630/114730.589: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
[0630/114731.686: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
[0630/114731.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
[0630/114731.992: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
[0630/114732.283: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
[0630/114747.764: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
[0630/114811.670: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
[0630/115013.790:INFO:CONSOLE(1)] "ERROR TypeError: Cannot read property 'getGeometryInstanceAttributes' of undefined", source: http://localhost:12345/electircfence/main.b6109defe5c198fb5238.js (1)
[0630/115046.428: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
[0630/115133.938:INFO:CONSOLE(1)] "ERROR TypeError: Cannot read property 'getGeometryInstanceAttributes' of undefined", source: http://localhost:12345/electircfence/main.b6109defe5c198fb5238.js (1)
[0630/115239.371: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.0f4415c2bf5b47245d95.js (1)
[0630/115240.793:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.0f4415c2bf5b47245d95.js (1)
[0630/115242.468: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
[0630/115246.966: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
[0630/115247.145: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
[0630/115247.339: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
[0630/115247.493: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
[0630/115247.635: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
[0630/115418.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
[0630/115419.819: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
[0630/133925.455: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.0f4415c2bf5b47245d95.js (1)
[0630/133926.313:INFO:CONSOLE(1)] "This tile uses a lowercase refine "replace". Instead use "REPLACE".", source: http://localhost:12345/electircfence/scripts.0f4415c2bf5b47245d95.js (1)
[0630/133928.120: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
[0630/133932.386: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
[0630/133932.666: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
[0630/134123.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
[0630/134129.156: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
[0630/134221.534: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
[0630/134603.758: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
......@@ -519,6 +519,8 @@ Apache-2.0
smart3d
undefined
tinycolor2
MIT
Copyright (c), Brian Grinstead, http://briangrinstead.com
......@@ -681,6 +683,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
undefined
(window.webpackJsonp=window.webpackJsonp||[]).push([[6],{o1NI:function(n,t,l){"use strict";l.r(t);var e=l("CcnG"),i=function(){return function(){}}(),o=l("pMnS"),u=l("Ip0R"),a=[{name:"\u7535\u5b50\u56f4\u680f",component:l("eAIX").a,icon:"icon-weilan"}],r=function(){function n(n){this.resolver=n,this.functions=a}return n.prototype.createComponent=function(n){if(this.container.clear(),this.currentComponentName!==n.name){var t=this.resolver.resolveComponentFactory(n);this.componentRef=this.container.createComponent(t),this.currentComponentName=n.name}else this.currentComponentName=""},n.prototype.ngOnDestroy=function(){this.componentRef.destroy(),this.currentComponentName=""},n}(),c=e.sb({encapsulation:0,styles:[[".smartBtn[_ngcontent-%COMP%]{position:absolute;z-index:8;left:30px;top:8%;max-height:90%;width:48px;border-radius:6px;background-color:#fff;box-shadow:2px 2px 10px rgba(102,102,102,.75);overflow-y:auto}.smartBtn[_ngcontent-%COMP%] .map-toolbar[_ngcontent-%COMP%] .widget-button[_ngcontent-%COMP%]{text-align:center;height:48px;line-height:48px;cursor:pointer}.smartBtn[_ngcontent-%COMP%] .map-toolbar.is-active[_ngcontent-%COMP%] .widget-button[_ngcontent-%COMP%]{background-color:#e5e8fd}.smartBtn[_ngcontent-%COMP%] .map-toolbar[_ngcontent-%COMP%] i.iconfont[_ngcontent-%COMP%]{font-size:24px}.toolbarContainer[_ngcontent-%COMP%]{position:absolute;z-index:8;left:100px;top:8%;max-height:90%;border-radius:6px;background-color:#fff;box-shadow:2px 2px 10px rgba(102,102,102,.75);overflow-y:auto}"]],data:{}});function s(n){return e.Nb(0,[(n()(),e.ub(0,0,null,null,4,"div",[["class","map-toolbar"]],null,null,null,null,null)),e.tb(1,278528,null,0,u.i,[e.u,e.v,e.k,e.H],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),e.Gb(2,{"is-active":0}),(n()(),e.ub(3,0,null,null,1,"div",[["class","widget-button"],["nz-tooltip",""],["nzPlacement","right"]],[[8,"title",0]],[[null,"click"]],(function(n,t,l){var e=!0;return"click"===t&&(e=!1!==n.component.createComponent(n.context.$implicit.component)&&e),e}),null,null)),(n()(),e.ub(4,0,null,null,0,"i",[],[[8,"className",0]],null,null,null,null))],(function(n,t){var l=n(t,2,0,t.component.currentComponentName===t.context.$implicit.component.name);n(t,1,0,"map-toolbar",l)}),(function(n,t){n(t,3,0,e.wb(1," ",t.context.$implicit.name,"")),n(t,4,0,e.wb(1,"iconfont ",t.context.$implicit.icon,""))}))}function m(n){return e.Nb(0,[(n()(),e.lb(0,null,null,0))],null,null)}function p(n){return e.Nb(0,[e.Jb(402653184,1,{container:0}),(n()(),e.ub(1,0,null,null,2,"div",[["class","smartBtn"]],null,null,null,null,null)),(n()(),e.lb(16777216,null,null,1,null,s)),e.tb(3,278528,null,0,u.j,[e.T,e.P,e.u],{ngForOf:[0,"ngForOf"]},null),(n()(),e.ub(4,0,null,null,1,"div",[["class","toolbarContainer"],["id","toolbarContainer"]],null,null,null,null,null)),(n()(),e.lb(16777216,[[1,3],["alertContainer",2]],null,0,null,m))],(function(n,t){n(t,3,0,t.component.functions)}),null)}var b=l("wFCa"),d=l("AytR").a.release?"//www.southsmart.com/w3d-data":"//localhost:12345/3DFiles",C=Cesium.Matrix4.fromArray([.8157337973264609,-.3081986386669915,.489481328574622,0,.17710418716195686,.9386649861578527,.2958752281806196,0,-.550647327051573,-.15466623059045537,.8202840229614211,0,-8872.087840044871,-2611.6464919634163,-2626.32430274738,1]),g=[{url:d+"/modeldata/nanfangcehuiBIM/shineiwaiyitihua/NFCHSNWYTHBIM/tileset.json",luminanceAtZenith:1,imageBasedLightingFactor:new Cesium.Cartesian2(2,2),modelMatrix:Cesium.Matrix4.fromArray([1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1])},{url:d+"/modeldata/nanfangcehuiBIM/NFCH0911/QTZB/tileset.json",luminanceAtZenith:1,imageBasedLightingFactor:new Cesium.Cartesian2(2,2),modelMatrix:C},{url:d+"/w3d-data/modeldata/nanfangcehuiBIM/NFCH0911/QTJZ/tileset.json",luminanceAtZenith:1,imageBasedLightingFactor:new Cesium.Cartesian2(2,2),modelMatrix:C},{url:d+"/w3d-data/modeldata/nanfangcehuiBIM/NFCH0911/ST/tileset.json",luminanceAtZenith:1,imageBasedLightingFactor:new Cesium.Cartesian2(2,2),modelMatrix:C},{url:d+"/w3d-data/modeldata/nanfangcehuiBIM/NFCH0911/ST/tileset.json",luminanceAtZenith:1,imageBasedLightingFactor:new Cesium.Cartesian2(2,2),modelMatrix:C}],f={position:Cesium.Cartesian3.fromDegrees(113.417464,23.180971,200),orientation:{heading:5.5,pitch:-1,roll:0}},h=((new Date).getTime(),function(){function n(n){this.viewerService=n}return n.prototype.ngOnInit=function(){this.viewerService.initViewer("cesiumContainer"),this.viewer=this.viewerService.getViewer(),this.viewerService.getModelLayer(g),this.viewerService.setCameraView(f)},n}()),w=e.sb({encapsulation:0,styles:[[".cesiumContainer[_ngcontent-%COMP%]{position:relative;width:100%;height:100%;background-color:#000;overflow:hidden}"]],data:{}});function v(n){return e.Nb(0,[(n()(),e.ub(0,0,null,null,0,"div",[["class","cesiumContainer"],["id","cesiumContainer"]],null,null,null,null,null)),(n()(),e.ub(1,0,null,null,1,"app-map-toolbar",[],null,null,null,p,c)),e.tb(2,180224,null,0,r,[e.j],null,null)],null,null)}var x=function(){function n(){}return n.prototype.ngOnInit=function(){},n.prototype.ngOnDestroy=function(){},n}(),M=e.sb({encapsulation:0,styles:[[""]],data:{}});function y(n){return e.Nb(0,[(n()(),e.ub(0,0,null,null,2,"div",[["class","app-main"]],null,null,null,null,null)),(n()(),e.ub(1,0,null,null,1,"app-map",[["class","app-map"]],null,null,null,v,w)),e.tb(2,114688,null,0,h,[b.a],null,null)],(function(n,t){n(t,2,0)}),null)}function N(n){return e.Nb(0,[(n()(),e.ub(0,0,null,null,1,"app-main",[],null,null,null,y,M)),e.tb(1,245760,null,0,x,[],null,null)],(function(n,t){n(t,1,0)}),null)}var B=e.qb("app-main",x,N,{},{},[]),O=l("gIcY"),F=l("ZYCi"),P=function(){return function(){}}();l.d(t,"MainModuleNgFactory",(function(){return I}));var I=e.rb(i,[],(function(n){return e.Bb([e.Cb(512,e.j,e.gb,[[8,[o.a,B]],[3,e.j],e.A]),e.Cb(4608,u.m,u.l,[e.w,[2,u.C]]),e.Cb(4608,O.u,O.u,[]),e.Cb(1073742336,u.c,u.c,[]),e.Cb(1073742336,O.s,O.s,[]),e.Cb(1073742336,O.i,O.i,[]),e.Cb(1073742336,F.q,F.q,[[2,F.w],[2,F.p]]),e.Cb(1073742336,P,P,[]),e.Cb(1073742336,i,i,[]),e.Cb(1024,F.n,(function(){return[[{path:"",component:x,children:[]}]]}),[])])}))}}]);
\ No newline at end of file
(window.webpackJsonp=window.webpackJsonp||[]).push([[6],{o1NI:function(n,l,t){"use strict";t.r(l);var o=t("CcnG"),e=function(){return function(){}}(),u=t("pMnS"),i=t("Ip0R"),r=[{name:"\u7535\u5b50\u56f4\u680f",component:t("eAIX").a,icon:"icon-weilan"}],c=function(){function n(n){this.resolver=n,this.functions=r}return n.prototype.createComponent=function(n){if(this.container.clear(),this.currentComponentName!==n.name){var l=this.resolver.resolveComponentFactory(n);this.componentRef=this.container.createComponent(l),this.currentComponentName=n.name}else this.currentComponentName=""},n.prototype.ngOnDestroy=function(){this.componentRef.destroy(),this.currentComponentName=""},n}(),a=o.sb({encapsulation:0,styles:[[".smartBtn[_ngcontent-%COMP%]{position:absolute;z-index:8;left:30px;top:8%;max-height:90%;width:48px;border-radius:6px;background-color:#fff;box-shadow:2px 2px 10px rgba(102,102,102,.75);overflow-y:auto}.smartBtn[_ngcontent-%COMP%] .map-toolbar[_ngcontent-%COMP%] .widget-button[_ngcontent-%COMP%]{text-align:center;height:48px;line-height:48px;cursor:pointer}.smartBtn[_ngcontent-%COMP%] .map-toolbar.is-active[_ngcontent-%COMP%] .widget-button[_ngcontent-%COMP%]{background-color:#e5e8fd}.smartBtn[_ngcontent-%COMP%] .map-toolbar[_ngcontent-%COMP%] i.iconfont[_ngcontent-%COMP%]{font-size:24px}.toolbarContainer[_ngcontent-%COMP%]{position:absolute;z-index:8;left:100px;top:8%;max-height:90%;border-radius:6px;background-color:#fff;box-shadow:2px 2px 10px rgba(102,102,102,.75);overflow-y:auto}"]],data:{}});function s(n){return o.Nb(0,[(n()(),o.ub(0,0,null,null,4,"div",[["class","map-toolbar"]],null,null,null,null,null)),o.tb(1,278528,null,0,i.i,[o.u,o.v,o.k,o.H],{klass:[0,"klass"],ngClass:[1,"ngClass"]},null),o.Gb(2,{"is-active":0}),(n()(),o.ub(3,0,null,null,1,"div",[["class","widget-button"],["nz-tooltip",""],["nzPlacement","right"]],[[8,"title",0]],[[null,"click"]],(function(n,l,t){var o=!0;return"click"===l&&(o=!1!==n.component.createComponent(n.context.$implicit.component)&&o),o}),null,null)),(n()(),o.ub(4,0,null,null,0,"i",[],[[8,"className",0]],null,null,null,null))],(function(n,l){var t=n(l,2,0,l.component.currentComponentName===l.context.$implicit.component.name);n(l,1,0,"map-toolbar",t)}),(function(n,l){n(l,3,0,o.wb(1," ",l.context.$implicit.name,"")),n(l,4,0,o.wb(1,"iconfont ",l.context.$implicit.icon,""))}))}function p(n){return o.Nb(0,[(n()(),o.lb(0,null,null,0))],null,null)}function b(n){return o.Nb(0,[o.Jb(402653184,1,{container:0}),(n()(),o.ub(1,0,null,null,2,"div",[["class","smartBtn"]],null,null,null,null,null)),(n()(),o.lb(16777216,null,null,1,null,s)),o.tb(3,278528,null,0,i.j,[o.T,o.P,o.u],{ngForOf:[0,"ngForOf"]},null),(n()(),o.ub(4,0,null,null,1,"div",[["class","toolbarContainer"],["id","toolbarContainer"]],null,null,null,null,null)),(n()(),o.lb(16777216,[[1,3],["alertContainer",2]],null,0,null,p))],(function(n,l){n(l,3,0,l.component.functions)}),null)}var m=t("wFCa"),f=t("elQI"),C=function(){function n(n){this.viewerService=n}return n.prototype.ngOnInit=function(){this.viewerService.initViewer("cesiumContainer"),this.viewer=this.viewerService.getViewer(),this.viewerService.getModelLayer(f.a)},n}(),g=o.sb({encapsulation:0,styles:[[".cesiumContainer[_ngcontent-%COMP%]{position:relative;width:100%;height:100%;background-color:#000;overflow:hidden}"]],data:{}});function d(n){return o.Nb(0,[(n()(),o.ub(0,0,null,null,0,"div",[["class","cesiumContainer"],["id","cesiumContainer"]],null,null,null,null,null)),(n()(),o.ub(1,0,null,null,1,"app-map-toolbar",[],null,null,null,b,a)),o.tb(2,180224,null,0,c,[o.j],null,null)],null,null)}var h=function(){function n(){}return n.prototype.ngOnInit=function(){},n.prototype.ngOnDestroy=function(){},n}(),v=o.sb({encapsulation:0,styles:[[""]],data:{}});function w(n){return o.Nb(0,[(n()(),o.ub(0,0,null,null,2,"div",[["class","app-main"]],null,null,null,null,null)),(n()(),o.ub(1,0,null,null,1,"app-map",[["class","app-map"]],null,null,null,d,g)),o.tb(2,114688,null,0,C,[m.a],null,null)],(function(n,l){n(l,2,0)}),null)}function x(n){return o.Nb(0,[(n()(),o.ub(0,0,null,null,1,"app-main",[],null,null,null,w,v)),o.tb(1,245760,null,0,h,[],null,null)],(function(n,l){n(l,1,0)}),null)}var O=o.qb("app-main",h,x,{},{},[]),y=t("gIcY"),M=t("ZYCi"),N=function(){return function(){}}();t.d(l,"MainModuleNgFactory",(function(){return P}));var P=o.rb(e,[],(function(n){return o.Bb([o.Cb(512,o.j,o.gb,[[8,[u.a,O]],[3,o.j],o.A]),o.Cb(4608,i.m,i.l,[o.w,[2,i.C]]),o.Cb(4608,y.u,y.u,[]),o.Cb(1073742336,i.c,i.c,[]),o.Cb(1073742336,y.s,y.s,[]),o.Cb(1073742336,y.i,y.i,[]),o.Cb(1073742336,M.q,M.q,[[2,M.w],[2,M.p]]),o.Cb(1073742336,N,N,[]),o.Cb(1073742336,e,e,[]),o.Cb(1024,M.n,(function(){return[[{path:"",component:h,children:[]}]]}),[])])}))}}]);
\ No newline at end of file
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":20.73818054199219,"properties":null,"root":{"boundingVolume":{"box":[-3.0437040328979492,51.03021240234375,64.709724426269531,9.8163614273071289,0.0,0.0,0.0,9.4235744476318359,0.0,0.0,0.0,7.535064697265625]},"children":[{"boundingVolume":{"box":[-3.0437040328979492,51.03021240234375,64.709724426269531,9.8163614273071289,0.0,0.0,0.0,9.4235744476318359,0.0,0.0,0.0,7.535064697265625]},"content":{"url":"wbx_000_Drainage_thread/tileset.json"},"geometricError":12.961362838745117,"refine":"REPLACE"}],"geometricError":18.145907974243162,"refine":"REPLACE"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":10.369090270996095,"properties":null,"root":{"boundingVolume":{"box":[-3.0437040328979492,51.03021240234375,64.709724426269531,9.8163614273071289,0.0,0.0,0.0,9.4235744476318359,0.0,0.0,0.0,7.535064697265625]},"children":[{"boundingVolume":{"box":[-11.691180229187012,50.848258972167969,60.972938537597656,1.1688852310180664,0.0,0.0,0.0,9.2416210174560547,0.0,0.0,0.0,3.7981243133544922]},"children":[{"boundingVolume":{"box":[-11.691180229187012,46.381126403808594,60.989852905273438,1.1688852310180664,0.0,0.0,0.0,4.7744922637939453,0.0,0.0,0.0,3.7812118530273438]},"content":{"url":"2/wbx_000_Drainage_thread_0_0.b3dm"},"geometricError":2.2034316062927246,"refine":"replace"},{"boundingVolume":{"box":[-11.812400817871094,55.618751525878906,60.833545684814453,1.0278306007385254,0.0,0.0,0.0,4.4711246490478516,0.0,0.0,0.0,3.6588859558105469]},"content":{"url":"2/wbx_000_Drainage_thread_0_1.b3dm"},"geometricError":2.2034316062927246,"refine":"replace"}],"content":{"url":"1/wbx_000_Drainage_thread_0.b3dm"},"geometricError":4.4068632125854492,"refine":"replace"},{"boundingVolume":{"box":[3.0997023582458496,51.07379150390625,64.714920043945313,3.6729550361633301,0.0,0.0,0.0,9.3795261383056641,0.0,0.0,0.0,7.5298690795898438]},"children":[{"boundingVolume":{"box":[3.1133475303649902,46.277374267578125,64.778335571289063,3.6201672554016113,0.0,0.0,0.0,4.5831089019775391,0.0,0.0,0.0,7.4664497375488281]},"content":{"url":"2/wbx_000_Drainage_thread_1_0.b3dm"},"geometricError":2.2034316062927246,"refine":"replace"},{"boundingVolume":{"box":[3.0997023582458496,55.636268615722656,64.702003479003906,3.6729550361633301,0.0,0.0,0.0,4.8175163269042969,0.0,0.0,0.0,7.5170135498046875]},"content":{"url":"2/wbx_000_Drainage_thread_1_1.b3dm"},"geometricError":2.2034316062927246,"refine":"replace"}],"content":{"url":"1/wbx_000_Drainage_thread_1.b3dm"},"geometricError":4.4068632125854492,"refine":"replace"}],"content":{"url":"0/wbx_000_Drainage_thread.b3dm"},"geometricError":8.8137264251708984,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":129.61363220214844,"properties":null,"root":{"boundingVolume":{"box":[-3.0437040328979492,51.03021240234375,64.709724426269531,9.8163614273071289,0.0,0.0,0.0,9.4235744476318359,0.0,0.0,0.0,7.535064697265625]},"children":[{"boundingVolume":{"box":[-3.0437040328979492,51.03021240234375,64.709724426269531,9.8163614273071289,0.0,0.0,0.0,9.4235744476318359,0.0,0.0,0.0,7.535064697265625]},"content":{"url":"Tile_+000/tileset.json"},"geometricError":23.33045310974121,"refine":"REPLACE"}],"geometricError":25.922725677490234,"refine":"REPLACE","transform":[-0.91993171545180386,-0.3920786131707536,0.0,0.0,0.18543988959986321,-0.43509650876698286,0.88108062934329323,0.0,-0.34545287124453317,0.81053401480313059,0.47296609243795334,0.0,-2204997.3636483778,5173572.1846790733,2998694.114258789,1.0]}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":23.506172180175781,"properties":null,"root":{"boundingVolume":{"box":[0.28974485397338867,7.9902219772338867,70.541046142578125,12.037635803222656,0.0,0.0,0.0,34.606819152832031,0.0,0.0,0.0,5.71392822265625]},"children":[{"boundingVolume":{"box":[-0.42255306243896484,21.086576461791992,70.541046142578125,10.809530258178711,0.0,0.0,0.0,21.510465621948242,0.0,0.0,0.0,5.71392822265625]},"content":{"url":"wb_1-2_conductor/tileset.json"},"geometricError":14.691357612609863,"refine":"REPLACE"},{"boundingVolume":{"box":[0.28974485397338867,-13.338896751403809,74.857986450195313,12.037635803222656,0.0,0.0,0.0,13.277701377868652,0.0,0.0,0.0,1.3890228271484375]},"content":{"url":"wb_2-3_conductor/tileset.json"},"geometricError":14.691357612609863,"refine":"REPLACE"}],"geometricError":20.567900657653809,"refine":"REPLACE"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":11.753086090087891,"properties":null,"root":{"boundingVolume":{"box":[-0.42255306243896484,21.086576461791992,70.541046142578125,10.809530258178711,0.0,0.0,0.0,21.510465621948242,0.0,0.0,0.0,5.71392822265625]},"children":[{"boundingVolume":{"box":[-0.42255306243896484,10.4071044921875,72.87359619140625,10.809530258178711,0.0,0.0,0.0,10.83099365234375,0.0,0.0,0.0,3.3813743591308594]},"content":{"url":"1/wb_1-2_conductor_0.b3dm"},"geometricError":1.4691357612609863,"refine":"replace"},{"boundingVolume":{"box":[-1.2999939918518066,31.748336791992188,69.281318664550781,9.8334369659423828,0.0,0.0,0.0,10.848705291748047,0.0,0.0,0.0,4.4542007446289063]},"content":{"url":"1/wb_1-2_conductor_1.b3dm"},"geometricError":1.4691357612609863,"refine":"replace"}],"content":{"url":"0/wb_1-2_conductor.b3dm"},"geometricError":2.9382715225219727,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":11.753086090087891,"properties":null,"root":{"boundingVolume":{"box":[0.28974485397338867,-13.338896751403809,74.857986450195313,12.037635803222656,0.0,0.0,0.0,13.277701377868652,0.0,0.0,0.0,1.3890228271484375]},"children":[{"boundingVolume":{"box":[0.28974485397338867,-13.338896751403809,74.857986450195313,12.037635803222656,0.0,0.0,0.0,13.277701377868652,0.0,0.0,0.0,1.3890228271484375]},"content":{"url":"1/wb_2-3_conductor_0.b3dm"},"geometricError":1.4691357612609863,"refine":"replace"}],"content":{"url":"0/wb_2-3_conductor.b3dm"},"geometricError":2.9382715225219727,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":146.91357421875,"properties":null,"root":{"boundingVolume":{"box":[0.28974485397338867,7.9902219772338867,70.541046142578125,12.037635803222656,0.0,0.0,0.0,34.606819152832031,0.0,0.0,0.0,5.71392822265625]},"children":[{"boundingVolume":{"box":[0.28974485397338867,7.9902219772338867,70.541046142578125,12.037635803222656,0.0,0.0,0.0,34.606819152832031,0.0,0.0,0.0,5.71392822265625]},"content":{"url":"Tile_+000/tileset.json"},"geometricError":26.444443702697754,"refine":"REPLACE"}],"geometricError":29.382715225219727,"refine":"REPLACE","transform":[-0.91993171545180386,-0.3920786131707536,0.0,0.0,0.18543988959986321,-0.43509650876698286,0.88108062934329323,0.0,-0.34545287124453317,0.81053401480313059,0.47296609243795334,0.0,-2204997.3636483778,5173572.1846790733,2998694.114258789,1.0]}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":36.009118652343751,"properties":null,"root":{"boundingVolume":{"box":[-1.227778434753418,29.726348876953125,72.941307067871094,11.949734687805176,0.0,0.0,0.0,30.954677581787109,0.0,0.0,0.0,14.440774917602539]},"children":[{"boundingVolume":{"box":[4.717160701751709,56.131778717041016,70.841842651367188,1.1606564521789551,0.0,0.0,0.0,4.1180877685546875,0.0,0.0,0.0,7.1230087280273438]},"content":{"url":"wb_1_insulator_001/tileset.json"},"geometricError":22.505699157714844,"refine":"REPLACE"},{"boundingVolume":{"box":[6.6167411804199219,51.006725311279297,61.212860107421875,0.47607827186584473,0.0,0.0,0.0,0.461273193359375,0.0,0.0,0.0,2.7034282684326172]},"content":{"url":"wb_1_insulator_002/tileset.json"},"geometricError":22.505699157714844,"refine":"REPLACE"},{"boundingVolume":{"box":[5.2858223915100098,46.194114685058594,70.861518859863281,1.6722544431686401,0.0,0.0,0.0,4.1077766418457031,0.0,0.0,0.0,7.1033649444580078]},"content":{"url":"wb_1_insulator_003/tileset.json"},"geometricError":22.505699157714844,"refine":"REPLACE"},{"boundingVolume":{"box":[-0.31454053521156311,56.485107421875,71.335365295410156,0.62416326999664307,0.0,0.0,0.0,4.1959190368652344,0.0,0.0,0.0,0.45325469970703125]},"content":{"url":"wb_1_insulator_004/tileset.json"},"geometricError":22.505699157714844,"refine":"REPLACE"},{"boundingVolume":{"box":[5.0941381454467773,55.202651977539063,74.31597900390625,0.59483170509338379,0.0,0.0,0.0,0.48478317260742188,0.0,0.0,0.0,2.5910301208496094]},"content":{"url":"wb_1_insulator_005/tileset.json"},"geometricError":22.505699157714844,"refine":"REPLACE"},{"boundingVolume":{"box":[5.4711604118347168,47.082294464111328,74.328399658203125,0.4992375373840332,0.0,0.0,0.0,0.48645401000976563,0.0,0.0,0.0,2.6033821105957031]},"content":{"url":"wb_1_insulator_006/tileset.json"},"geometricError":22.505699157714844,"refine":"REPLACE"},{"boundingVolume":{"box":[-0.30250352621078491,45.657943725585938,71.337615966796875,0.62417232990264893,0.0,0.0,0.0,4.1958866119384766,0.0,0.0,0.0,0.4532623291015625]},"content":{"url":"wb_1_insulator_007/tileset.json"},"geometricError":22.505699157714844,"refine":"REPLACE"},{"boundingVolume":{"box":[-9.9619331359863281,55.993667602539063,70.846786499023438,1.6392664909362793,0.0,0.0,0.0,4.2905521392822266,0.0,0.0,0.0,7.1412601470947266]},"content":{"url":"wb_1_insulator_008/tileset.json"},"geometricError":22.505699157714844,"refine":"REPLACE"},{"boundingVolume":{"box":[-12.70543098449707,50.902576446533203,61.203964233398438,0.47208261489868164,0.0,0.0,0.0,0.46532440185546875,0.0,0.0,0.0,2.7034339904785156]},"content":{"url":"wb_1_insulator_009/tileset.json"},"geometricError":22.505699157714844,"refine":"REPLACE"},{"boundingVolume":{"box":[-9.7889289855957031,45.795177459716797,70.885009765625,1.6199159622192383,0.0,0.0,0.0,4.3579330444335938,0.0,0.0,0.0,7.1341724395751953]},"content":{"url":"wb_1_insulator_010/tileset.json"},"geometricError":22.505699157714844,"refine":"REPLACE"},{"boundingVolume":{"box":[9.530756950378418,-0.060311421751976013,81.319549560546875,1.1911993026733398,0.0,0.0,0.0,0.40981900691986084,0.0,0.0,0.0,6.0625343322753906]},"content":{"url":"wb_2_insulator_001/tileset.json"},"geometricError":22.505699157714844,"refine":"REPLACE"},{"boundingVolume":{"box":[-0.10863494873046875,-0.29128396511077881,78.039031982421875,4.4555683135986328,0.0,0.0,0.0,0.46571582555770874,0.0,0.0,0.0,2.2910957336425781]},"content":{"url":"wb_2_insulator_002/tileset.json"},"geometricError":22.505699157714844,"refine":"REPLACE"},{"boundingVolume":{"box":[-10.057041168212891,-0.39246821403503418,81.024757385253906,1.2914090156555176,0.0,0.0,0.0,0.83585917949676514,0.0,0.0,0.0,6.1742019653320313]},"content":{"url":"wb_2_insulator_003/tileset.json"},"geometricError":22.505699157714844,"refine":"REPLACE"}],"geometricError":31.50797882080078,"refine":"REPLACE"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":18.004559326171876,"properties":null,"root":{"boundingVolume":{"box":[4.717160701751709,56.131778717041016,70.841842651367188,1.1606564521789551,0.0,0.0,0.0,4.1180877685546875,0.0,0.0,0.0,7.1230087280273438]},"children":[{"boundingVolume":{"box":[4.717160701751709,56.131778717041016,70.841842651367188,1.1606564521789551,0.0,0.0,0.0,4.1180877685546875,0.0,0.0,0.0,7.1230087280273438]},"content":{"url":"1/wb_1_insulator_001.b3dm"},"geometricError":7.8769946098327637,"refine":"replace"}],"content":{"url":"0/wb_1_insulator_001.b3dm"},"geometricError":15.753989219665527,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":18.004559326171876,"properties":null,"root":{"boundingVolume":{"box":[6.6167411804199219,51.006725311279297,61.212860107421875,0.47607827186584473,0.0,0.0,0.0,0.461273193359375,0.0,0.0,0.0,2.7034282684326172]},"children":[{"boundingVolume":{"box":[6.6167411804199219,51.006725311279297,61.212860107421875,0.47607827186584473,0.0,0.0,0.0,0.461273193359375,0.0,0.0,0.0,2.7034282684326172]},"content":{"url":"1/wb_1_insulator_002.b3dm"},"geometricError":7.8769946098327637,"refine":"replace"}],"content":{"url":"0/wb_1_insulator_002.b3dm"},"geometricError":15.753989219665527,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":18.004559326171876,"properties":null,"root":{"boundingVolume":{"box":[5.2858223915100098,46.194114685058594,70.861518859863281,1.6722544431686401,0.0,0.0,0.0,4.1077766418457031,0.0,0.0,0.0,7.1033649444580078]},"children":[{"boundingVolume":{"box":[5.2858223915100098,46.194114685058594,70.861518859863281,1.6722544431686401,0.0,0.0,0.0,4.1077766418457031,0.0,0.0,0.0,7.1033649444580078]},"content":{"url":"1/wb_1_insulator_003.b3dm"},"geometricError":7.8769946098327637,"refine":"replace"}],"content":{"url":"0/wb_1_insulator_003.b3dm"},"geometricError":15.753989219665527,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":18.004559326171876,"properties":null,"root":{"boundingVolume":{"box":[-0.31454053521156311,56.485107421875,71.335365295410156,0.62416326999664307,0.0,0.0,0.0,4.1959190368652344,0.0,0.0,0.0,0.45325469970703125]},"children":[{"boundingVolume":{"box":[-0.31454053521156311,56.485107421875,71.335365295410156,0.62416326999664307,0.0,0.0,0.0,4.1959190368652344,0.0,0.0,0.0,0.45325469970703125]},"content":{"url":"1/wb_1_insulator_004.b3dm"},"geometricError":7.8769946098327637,"refine":"replace"}],"content":{"url":"0/wb_1_insulator_004.b3dm"},"geometricError":15.753989219665527,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":18.004559326171876,"properties":null,"root":{"boundingVolume":{"box":[5.0941381454467773,55.202651977539063,74.31597900390625,0.59483170509338379,0.0,0.0,0.0,0.48478317260742188,0.0,0.0,0.0,2.5910301208496094]},"children":[{"boundingVolume":{"box":[5.0941381454467773,55.202651977539063,74.31597900390625,0.59483170509338379,0.0,0.0,0.0,0.48478317260742188,0.0,0.0,0.0,2.5910301208496094]},"content":{"url":"1/wb_1_insulator_005.b3dm"},"geometricError":7.8769946098327637,"refine":"replace"}],"content":{"url":"0/wb_1_insulator_005.b3dm"},"geometricError":15.753989219665527,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":18.004559326171876,"properties":null,"root":{"boundingVolume":{"box":[5.4711604118347168,47.082294464111328,74.328399658203125,0.4992375373840332,0.0,0.0,0.0,0.48645401000976563,0.0,0.0,0.0,2.6033821105957031]},"children":[{"boundingVolume":{"box":[5.4711604118347168,47.082294464111328,74.328399658203125,0.4992375373840332,0.0,0.0,0.0,0.48645401000976563,0.0,0.0,0.0,2.6033821105957031]},"content":{"url":"1/wb_1_insulator_006.b3dm"},"geometricError":7.8769946098327637,"refine":"replace"}],"content":{"url":"0/wb_1_insulator_006.b3dm"},"geometricError":15.753989219665527,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":18.004559326171876,"properties":null,"root":{"boundingVolume":{"box":[-0.30250352621078491,45.657943725585938,71.337615966796875,0.62417232990264893,0.0,0.0,0.0,4.1958866119384766,0.0,0.0,0.0,0.4532623291015625]},"children":[{"boundingVolume":{"box":[-0.30250352621078491,45.657943725585938,71.337615966796875,0.62417232990264893,0.0,0.0,0.0,4.1958866119384766,0.0,0.0,0.0,0.4532623291015625]},"content":{"url":"1/wb_1_insulator_007.b3dm"},"geometricError":7.8769946098327637,"refine":"replace"}],"content":{"url":"0/wb_1_insulator_007.b3dm"},"geometricError":15.753989219665527,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":18.004559326171876,"properties":null,"root":{"boundingVolume":{"box":[-9.9619331359863281,55.993667602539063,70.846786499023438,1.6392664909362793,0.0,0.0,0.0,4.2905521392822266,0.0,0.0,0.0,7.1412601470947266]},"children":[{"boundingVolume":{"box":[-9.9619331359863281,55.993667602539063,70.846786499023438,1.6392664909362793,0.0,0.0,0.0,4.2905521392822266,0.0,0.0,0.0,7.1412601470947266]},"content":{"url":"1/wb_1_insulator_008.b3dm"},"geometricError":7.8769946098327637,"refine":"replace"}],"content":{"url":"0/wb_1_insulator_008.b3dm"},"geometricError":15.753989219665527,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":18.004559326171876,"properties":null,"root":{"boundingVolume":{"box":[-12.70543098449707,50.902576446533203,61.203964233398438,0.47208261489868164,0.0,0.0,0.0,0.46532440185546875,0.0,0.0,0.0,2.7034339904785156]},"children":[{"boundingVolume":{"box":[-12.70543098449707,50.902576446533203,61.203964233398438,0.47208261489868164,0.0,0.0,0.0,0.46532440185546875,0.0,0.0,0.0,2.7034339904785156]},"content":{"url":"1/wb_1_insulator_009.b3dm"},"geometricError":7.8769946098327637,"refine":"replace"}],"content":{"url":"0/wb_1_insulator_009.b3dm"},"geometricError":15.753989219665527,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":18.004559326171876,"properties":null,"root":{"boundingVolume":{"box":[-9.7889289855957031,45.795177459716797,70.885009765625,1.6199159622192383,0.0,0.0,0.0,4.3579330444335938,0.0,0.0,0.0,7.1341724395751953]},"children":[{"boundingVolume":{"box":[-9.7889289855957031,45.795177459716797,70.885009765625,1.6199159622192383,0.0,0.0,0.0,4.3579330444335938,0.0,0.0,0.0,7.1341724395751953]},"content":{"url":"1/wb_1_insulator_010.b3dm"},"geometricError":7.8769946098327637,"refine":"replace"}],"content":{"url":"0/wb_1_insulator_010.b3dm"},"geometricError":15.753989219665527,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":18.004559326171876,"properties":null,"root":{"boundingVolume":{"box":[9.530756950378418,-0.060311421751976013,81.319549560546875,1.1911993026733398,0.0,0.0,0.0,0.40981900691986084,0.0,0.0,0.0,6.0625343322753906]},"children":[{"boundingVolume":{"box":[9.530756950378418,-0.060311421751976013,81.319549560546875,1.1911993026733398,0.0,0.0,0.0,0.40981900691986084,0.0,0.0,0.0,6.0625343322753906]},"content":{"url":"1/wb_2_insulator_001.b3dm"},"geometricError":7.8769946098327637,"refine":"replace"}],"content":{"url":"0/wb_2_insulator_001.b3dm"},"geometricError":15.753989219665527,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":18.004559326171876,"properties":null,"root":{"boundingVolume":{"box":[-0.10863494873046875,-0.29128396511077881,78.039031982421875,4.4555683135986328,0.0,0.0,0.0,0.46571582555770874,0.0,0.0,0.0,2.2910957336425781]},"children":[{"boundingVolume":{"box":[-0.10863494873046875,-0.29128396511077881,78.039031982421875,4.4555683135986328,0.0,0.0,0.0,0.46571582555770874,0.0,0.0,0.0,2.2910957336425781]},"content":{"url":"1/wb_2_insulator_002.b3dm"},"geometricError":7.8769946098327637,"refine":"replace"}],"content":{"url":"0/wb_2_insulator_002.b3dm"},"geometricError":15.753989219665527,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":18.004559326171876,"properties":null,"root":{"boundingVolume":{"box":[-10.057041168212891,-0.39246821403503418,81.024757385253906,1.2914090156555176,0.0,0.0,0.0,0.83585917949676514,0.0,0.0,0.0,6.1742019653320313]},"children":[{"boundingVolume":{"box":[-10.057041168212891,-0.39246821403503418,81.024757385253906,1.2914090156555176,0.0,0.0,0.0,0.83585917949676514,0.0,0.0,0.0,6.1742019653320313]},"content":{"url":"1/wb_2_insulator_003.b3dm"},"geometricError":7.8769946098327637,"refine":"replace"}],"content":{"url":"0/wb_2_insulator_003.b3dm"},"geometricError":15.753989219665527,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":225.05699157714844,"properties":null,"root":{"boundingVolume":{"box":[-1.227778434753418,29.726348876953125,72.941307067871094,11.949734687805176,0.0,0.0,0.0,30.954677581787109,0.0,0.0,0.0,14.440774917602539]},"children":[{"boundingVolume":{"box":[-1.227778434753418,29.726348876953125,72.941307067871094,11.949734687805176,0.0,0.0,0.0,30.954677581787109,0.0,0.0,0.0,14.440774917602539]},"content":{"url":"Tile_+000/tileset.json"},"geometricError":40.510258483886723,"refine":"REPLACE"}],"geometricError":45.011398315429688,"refine":"REPLACE","transform":[-0.91993171545180386,-0.3920786131707536,0.0,0.0,0.18543988959986321,-0.43509650876698286,0.88108062934329323,0.0,-0.34545287124453317,0.81053401480313059,0.47296609243795334,0.0,-2204997.3636483778,5173572.1846790733,2998694.114258789,1.0]}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":23.506172180175781,"properties":null,"root":{"boundingVolume":{"box":[0.7982182502746582,11.25617504119873,82.44866943359375,10.278499603271484,0.0,0.0,0.0,38.224380493164063,0.0,0.0,0.0,4.5165214538574219]},"children":[{"boundingVolume":{"box":[-0.2136387825012207,24.549325942993164,82.44866943359375,8.6044521331787109,0.0,0.0,0.0,24.931230545043945,0.0,0.0,0.0,4.5165214538574219]},"content":{"url":"wb_1-2_shield_wire/tileset.json"},"geometricError":14.691357612609863,"refine":"REPLACE"},{"boundingVolume":{"box":[0.7982182502746582,-13.569788932800293,86.641525268554688,10.278499603271484,0.0,0.0,0.0,13.398417472839355,0.0,0.0,0.0,0.32366561889648438]},"content":{"url":"wb_2-3_shield_wire/tileset.json"},"geometricError":14.691357612609863,"refine":"REPLACE"}],"geometricError":20.567900657653809,"refine":"REPLACE"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":11.753086090087891,"properties":null,"root":{"boundingVolume":{"box":[-0.2136387825012207,24.549325942993164,82.44866943359375,8.6044521331787109,0.0,0.0,0.0,24.931230545043945,0.0,0.0,0.0,4.5165214538574219]},"children":[{"boundingVolume":{"box":[-0.2136387825012207,12.135783195495605,84.371078491210938,8.6044521331787109,0.0,0.0,0.0,12.517687797546387,0.0,0.0,0.0,2.5941162109375]},"content":{"url":"1/wb_1-2_shield_wire_0.b3dm"},"geometricError":1.4691357612609863,"refine":"replace"},{"boundingVolume":{"box":[-1.236398458480835,36.940845489501953,80.088134765625,7.331110954284668,0.0,0.0,0.0,12.539710998535156,0.0,0.0,0.0,2.1559791564941406]},"content":{"url":"1/wb_1-2_shield_wire_1.b3dm"},"geometricError":1.4691357612609863,"refine":"replace"}],"content":{"url":"0/wb_1-2_shield_wire.b3dm"},"geometricError":2.9382715225219727,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":11.753086090087891,"properties":null,"root":{"boundingVolume":{"box":[0.7982182502746582,-13.569788932800293,86.641525268554688,10.278499603271484,0.0,0.0,0.0,13.398417472839355,0.0,0.0,0.0,0.32366561889648438]},"children":[{"boundingVolume":{"box":[0.7982182502746582,-13.569788932800293,86.641525268554688,10.278499603271484,0.0,0.0,0.0,13.398417472839355,0.0,0.0,0.0,0.32366561889648438]},"content":{"url":"1/wb_2-3_shield_wire_0.b3dm"},"geometricError":1.4691357612609863,"refine":"replace"}],"content":{"url":"0/wb_2-3_shield_wire.b3dm"},"geometricError":2.9382715225219727,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":146.91357421875,"properties":null,"root":{"boundingVolume":{"box":[0.7982182502746582,11.25617504119873,82.44866943359375,10.278499603271484,0.0,0.0,0.0,38.224380493164063,0.0,0.0,0.0,4.5165214538574219]},"children":[{"boundingVolume":{"box":[0.7982182502746582,11.25617504119873,82.44866943359375,10.278499603271484,0.0,0.0,0.0,38.224380493164063,0.0,0.0,0.0,4.5165214538574219]},"content":{"url":"Tile_+000/tileset.json"},"geometricError":26.444443702697754,"refine":"REPLACE"}],"geometricError":29.382715225219727,"refine":"REPLACE","transform":[-0.91993171545180386,-0.3920786131707536,0.0,0.0,0.18543988959986321,-0.43509650876698286,0.88108062934329323,0.0,-0.34545287124453317,0.81053401480313059,0.47296609243795334,0.0,-2204997.3636483778,5173572.1846790733,2998694.114258789,1.0]}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":17.138180541992188,"properties":null,"root":{"boundingVolume":{"box":[-1.3914260864257813,34.996910095214844,66.251144409179688,10.689873695373535,0.0,0.0,0.0,23.440109252929688,0.0,0.0,0.0,8.5734634399414063]},"children":[{"boundingVolume":{"box":[-1.3914260864257813,34.996910095214844,66.251144409179688,10.689873695373535,0.0,0.0,0.0,23.440109252929688,0.0,0.0,0.0,8.5734634399414063]},"content":{"url":"wb_1_2_spacer_rods/tileset.json"},"geometricError":10.711362838745117,"refine":"REPLACE"}],"geometricError":14.995907974243163,"refine":"REPLACE"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":8.5690902709960941,"properties":null,"root":{"boundingVolume":{"box":[-1.3914260864257813,34.996910095214844,66.251144409179688,10.689873695373535,0.0,0.0,0.0,23.440109252929688,0.0,0.0,0.0,8.5734634399414063]},"children":[{"boundingVolume":{"box":[-0.9337763786315918,21.826454162597656,70.937049865722656,10.232223510742188,0.0,0.0,0.0,10.2696533203125,0.0,0.0,0.0,3.8875579833984375]},"children":[{"boundingVolume":{"box":[-0.9337763786315918,16.83967399597168,72.120880126953125,10.232223510742188,0.0,0.0,0.0,5.2828717231750488,0.0,0.0,0.0,2.7037239074707031]},"content":{"url":"2/wb_1_2_spacer_rods_0_0.b3dm"},"geometricError":1.8209316730499268,"refine":"replace"},{"boundingVolume":{"box":[-1.7718870639801025,31.833513259887695,69.809371948242188,9.310297966003418,0.0,0.0,0.0,0.26259422302246094,0.0,0.0,0.0,2.7598838806152344]},"content":{"url":"2/wb_1_2_spacer_rods_0_1.b3dm"},"geometricError":1.8209316730499268,"refine":"replace"}],"content":{"url":"1/wb_1_2_spacer_rods_0.b3dm"},"geometricError":3.6418633460998535,"refine":"replace"},{"boundingVolume":{"box":[-2.9418137073516846,51.406547546386719,64.362388610839844,9.1394863128662109,0.0,0.0,0.0,7.0304737091064453,0.0,0.0,0.0,6.6847076416015625]},"children":[{"boundingVolume":{"box":[-11.612400054931641,51.1531982421875,57.986118316650391,0.46890020370483398,0.0,0.0,0.0,5.7384510040283203,0.0,0.0,0.0,0.30843734741210938]},"content":{"url":"2/wb_1_2_spacer_rods_1_0.b3dm"},"geometricError":1.8209316730499268,"refine":"replace"},{"boundingVolume":{"box":[4.3342628479003906,51.406547546386719,64.366836547851563,1.8641221523284912,0.0,0.0,0.0,7.0304737091064453,0.0,0.0,0.0,6.6802597045898438]},"content":{"url":"2/wb_1_2_spacer_rods_1_1.b3dm"},"geometricError":1.8209316730499268,"refine":"replace"}],"content":{"url":"1/wb_1_2_spacer_rods_1.b3dm"},"geometricError":3.6418633460998535,"refine":"replace"}],"content":{"url":"0/wb_1_2_spacer_rods.b3dm"},"geometricError":7.283726692199707,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":107.11363220214844,"properties":null,"root":{"boundingVolume":{"box":[-1.3914260864257813,34.996910095214844,66.251144409179688,10.689873695373535,0.0,0.0,0.0,23.440109252929688,0.0,0.0,0.0,8.5734634399414063]},"children":[{"boundingVolume":{"box":[-1.3914260864257813,34.996910095214844,66.251144409179688,10.689873695373535,0.0,0.0,0.0,23.440109252929688,0.0,0.0,0.0,8.5734634399414063]},"content":{"url":"Tile_+000/tileset.json"},"geometricError":19.280453109741213,"refine":"REPLACE"}],"geometricError":21.422725677490234,"refine":"REPLACE","transform":[-0.91993171545180386,-0.3920786131707536,0.0,0.0,0.18543988959986321,-0.43509650876698286,0.88108062934329323,0.0,-0.34545287124453317,0.81053401480313059,0.47296609243795334,0.0,-2204997.3636483778,5173572.1846790733,2998694.114258789,1.0]}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":29.204626464843752,"properties":null,"root":{"boundingVolume":{"box":[-1.0903282165527344,26.611465454101563,64.524810791015625,11.870662689208984,0.0,0.0,0.0,30.399162292480469,0.0,0.0,0.0,23.478780746459961]},"children":[{"boundingVolume":{"box":[-3.038400411605835,51.23626708984375,59.682624816894531,9.9225902557373047,0.0,0.0,0.0,5.7743625640869141,0.0,0.0,0.0,18.366064071655273]},"content":{"url":"wb_1_structure/tileset.json"},"geometricError":18.252891540527344,"refine":"REPLACE"},{"boundingVolume":{"box":[-0.1538238525390625,0.10823464393615723,64.524810791015625,10.934158325195313,0.0,0.0,0.0,3.8959329128265381,0.0,0.0,0.0,23.478780746459961]},"content":{"url":"wb_2_structure/tileset.json"},"geometricError":18.252891540527344,"refine":"REPLACE"}],"geometricError":25.554048156738279,"refine":"REPLACE"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":14.602313232421876,"properties":null,"root":{"boundingVolume":{"box":[-3.038400411605835,51.23626708984375,59.682624816894531,9.9225902557373047,0.0,0.0,0.0,5.7743625640869141,0.0,0.0,0.0,18.366064071655273]},"children":[{"boundingVolume":{"box":[-3.038400411605835,51.23626708984375,59.682624816894531,9.9225902557373047,0.0,0.0,0.0,5.7743625640869141,0.0,0.0,0.0,18.366064071655273]},"content":{"url":"1/wb_1_structure.b3dm"},"geometricError":6.388512134552002,"refine":"replace"}],"content":{"url":"0/wb_1_structure.b3dm"},"geometricError":12.777024269104004,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":14.602313232421876,"properties":null,"root":{"boundingVolume":{"box":[-0.1538238525390625,0.10823464393615723,64.524810791015625,10.934158325195313,0.0,0.0,0.0,3.8959329128265381,0.0,0.0,0.0,23.478780746459961]},"children":[{"boundingVolume":{"box":[-0.1538238525390625,0.10823464393615723,64.524810791015625,10.934158325195313,0.0,0.0,0.0,3.8959329128265381,0.0,0.0,0.0,23.478780746459961]},"content":{"url":"1/wb_2_structure.b3dm"},"geometricError":6.388512134552002,"refine":"replace"}],"content":{"url":"0/wb_2_structure.b3dm"},"geometricError":12.777024269104004,"refine":"replace"}}
{"asset":{"tilesetVersion":"1.2.3","version":"1.0"},"geometricError":182.52891540527344,"properties":null,"root":{"boundingVolume":{"box":[-1.0903282165527344,26.611465454101563,64.524810791015625,11.870662689208984,0.0,0.0,0.0,30.399162292480469,0.0,0.0,0.0,23.478780746459961]},"children":[{"boundingVolume":{"box":[-1.0903282165527344,26.611465454101563,64.524810791015625,11.870662689208984,0.0,0.0,0.0,30.399162292480469,0.0,0.0,0.0,23.478780746459961]},"content":{"url":"Tile_+000/tileset.json"},"geometricError":32.855204772949222,"refine":"REPLACE"}],"geometricError":36.505783081054688,"refine":"REPLACE","transform":[-0.91993171545180386,-0.3920786131707536,0.0,0.0,0.18543988959986321,-0.43509650876698286,0.88108062934329323,0.0,-0.34545287124453317,0.81053401480313059,0.47296609243795334,0.0,-2204997.3636483778,5173572.1846790733,2998694.114258789,1.0]}}
[0624/100748.863:ERROR:crash_report_database_win.cc(430)] unexpected header
[0624/115626.472:ERROR:crash_report_database_win.cc(430)] unexpected header
<!doctype html>
<html lang="en">
<head>
<head><base href="./">
<meta charset="utf-8">
<title>带电作业演示demo</title>
<title>带电作业电子围栏</title>
<!-- <base href="/"> -->
<meta name="viewport" content="width=device-width, initial-scale=1">
......@@ -14,5 +14,5 @@
<app-root></app-root>
<!-- <script src="./assets/cesium/Source/Cesium.js" type="module"></script>
<script src="./assets/smart3d/smart3d.js" type="text/javascript"></script> -->
<script type="text/javascript" src="runtime.c3906f10d5dabfa57a55.js"></script><script type="text/javascript" src="es2015-polyfills.0e3b026a1220009b1e45.js" nomodule></script><script type="text/javascript" src="polyfills.e5f40387895614d6ad96.js"></script><script type="text/javascript" src="scripts.0f4415c2bf5b47245d95.js"></script><script type="text/javascript" src="main.dbf16c586e315ada5e12.js"></script></body>
<script type="text/javascript" src="runtime.9c085f7b108346e415af.js"></script><script type="text/javascript" src="es2015-polyfills.0e3b026a1220009b1e45.js" nomodule></script><script type="text/javascript" src="polyfills.e5f40387895614d6ad96.js"></script><script type="text/javascript" src="scripts.0f4415c2bf5b47245d95.js"></script><script type="text/javascript" src="main.b6109defe5c198fb5238.js"></script></body>
</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.
!function(e){function r(r){for(var n,i,a=r[0],c=r[1],f=r[2],p=0,s=[];p<a.length;p++)o[i=a[p]]&&s.push(o[i][0]),o[i]=0;for(n in c)Object.prototype.hasOwnProperty.call(c,n)&&(e[n]=c[n]);for(l&&l(r);s.length;)s.shift()();return u.push.apply(u,f||[]),t()}function t(){for(var e,r=0;r<u.length;r++){for(var t=u[r],n=!0,a=1;a<t.length;a++)0!==o[t[a]]&&(n=!1);n&&(u.splice(r--,1),e=i(i.s=t[0]))}return e}var n={},o={0:0},u=[];function i(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,i),t.l=!0,t.exports}i.e=function(e){var r=[],t=o[e];if(0!==t)if(t)r.push(t[2]);else{var n=new Promise((function(r,n){t=o[e]=[r,n]}));r.push(t[2]=n);var u,a=document.createElement("script");a.charset="utf-8",a.timeout=120,i.nc&&a.setAttribute("nonce",i.nc),a.src=function(e){return i.p+""+({}[e]||e)+"."+{5:"39f3ea0432ff14de5a6d",6:"48ba18c6ccde11f77bda"}[e]+".js"}(e),u=function(r){a.onerror=a.onload=null,clearTimeout(c);var t=o[e];if(0!==t){if(t){var n=r&&("load"===r.type?"missing":r.type),u=r&&r.target&&r.target.src,i=new Error("Loading chunk "+e+" failed.\n("+n+": "+u+")");i.type=n,i.request=u,t[1](i)}o[e]=void 0}};var c=setTimeout((function(){u({type:"timeout",target:a})}),12e4);a.onerror=a.onload=u,document.head.appendChild(a)}return Promise.all(r)},i.m=e,i.c=n,i.d=function(e,r,t){i.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,r){if(1&r&&(e=i(e)),8&r)return e;if(4&r&&"object"==typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(i.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)i.d(t,n,(function(r){return e[r]}).bind(null,n));return t},i.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(r,"a",r),r},i.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},i.p="",i.oe=function(e){throw console.error(e),e};var a=window.webpackJsonp=window.webpackJsonp||[],c=a.push.bind(a);a.push=r,a=a.slice();for(var f=0;f<a.length;f++)r(a[f]);var l=c;t()}([]);
\ No newline at end of file
!function(e){function r(r){for(var n,i,a=r[0],c=r[1],f=r[2],p=0,s=[];p<a.length;p++)o[i=a[p]]&&s.push(o[i][0]),o[i]=0;for(n in c)Object.prototype.hasOwnProperty.call(c,n)&&(e[n]=c[n]);for(l&&l(r);s.length;)s.shift()();return u.push.apply(u,f||[]),t()}function t(){for(var e,r=0;r<u.length;r++){for(var t=u[r],n=!0,a=1;a<t.length;a++)0!==o[t[a]]&&(n=!1);n&&(u.splice(r--,1),e=i(i.s=t[0]))}return e}var n={},o={0:0},u=[];function i(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,i),t.l=!0,t.exports}i.e=function(e){var r=[],t=o[e];if(0!==t)if(t)r.push(t[2]);else{var n=new Promise((function(r,n){t=o[e]=[r,n]}));r.push(t[2]=n);var u,a=document.createElement("script");a.charset="utf-8",a.timeout=120,i.nc&&a.setAttribute("nonce",i.nc),a.src=function(e){return i.p+""+({}[e]||e)+"."+{5:"39f3ea0432ff14de5a6d",6:"a7047469a2760154d68c"}[e]+".js"}(e),u=function(r){a.onerror=a.onload=null,clearTimeout(c);var t=o[e];if(0!==t){if(t){var n=r&&("load"===r.type?"missing":r.type),u=r&&r.target&&r.target.src,i=new Error("Loading chunk "+e+" failed.\n("+n+": "+u+")");i.type=n,i.request=u,t[1](i)}o[e]=void 0}};var c=setTimeout((function(){u({type:"timeout",target:a})}),12e4);a.onerror=a.onload=u,document.head.appendChild(a)}return Promise.all(r)},i.m=e,i.c=n,i.d=function(e,r,t){i.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,r){if(1&r&&(e=i(e)),8&r)return e;if(4&r&&"object"==typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(i.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)i.d(t,n,(function(r){return e[r]}).bind(null,n));return t},i.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(r,"a",r),r},i.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},i.p="",i.oe=function(e){throw console.error(e),e};var a=window.webpackJsonp=window.webpackJsonp||[],c=a.push.bind(a);a.push=r,a=a.slice();for(var f=0;f<a.length;f++)r(a[f]);var l=c;t()}([]);
\ No newline at end of file
#pragma checksum "..\..\..\..\View\ConHardware.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "620090D7B03A353D2E2B1504964B8873898D071F"
#pragma checksum "..\..\..\..\View\ConHardware.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "F91D32B4D0FFDAAA140D25B609117FBBEE282427"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......
#pragma checksum "..\..\..\..\View\ConHardware.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "620090D7B03A353D2E2B1504964B8873898D071F"
#pragma checksum "..\..\..\..\View\ConHardware.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "F91D32B4D0FFDAAA140D25B609117FBBEE282427"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......
#pragma checksum "..\..\..\..\View\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "2E09CDE93111CEEBEAEC3471B23432F9ECE5EDB7"
#pragma checksum "..\..\..\..\View\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "EAA1ABECC0BA8C6A7F740E487EC01BF1E36295DC"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......
#pragma checksum "..\..\..\..\View\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "2E09CDE93111CEEBEAEC3471B23432F9ECE5EDB7"
#pragma checksum "..\..\..\..\View\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "EAA1ABECC0BA8C6A7F740E487EC01BF1E36295DC"
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
......
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