<%@ page language="java" import="java.util.*" pageEncoding="UTF-8" %>
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
<%
|
String path = request.getContextPath();
|
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort()
|
+ path + "/";
|
%>
|
|
<!DOCTYPE html>
|
<html>
|
|
<head>
|
<base href="<%=basePath%>">
|
<meta http-equiv="content-type" content="text/html;charset=utf-8">
|
<meta name="viewport" content="width=device-width, user-scalable=no">
|
|
<style type="text/css">
|
.online_3d_viewer {
|
width: 100%;
|
/*border: 1px solid black;*/
|
position: relative;
|
}
|
|
html, body {
|
height: 100%;
|
margin: 0px;
|
}
|
</style>
|
|
<script type="text/javascript" src="static/plugins/o3dv/o3dv.min.js"></script>
|
<!-- website end -->
|
<!-- plugins start -->
|
<!-- plugins end -->
|
<script>
|
window.addEventListener('load', () => {
|
// init all viewers on the page
|
OV.Init3DViewerElements();
|
});
|
</script>
|
</head>
|
|
<body>
|
<div class="online_3d_viewer"
|
style="width: 100%; height: 100%;"
|
model="general/${attachViewUrl}">
|
</div>
|
</body>
|
|
</html>
|