23 lines
841 B
Plaintext
23 lines
841 B
Plaintext
<%@ Page Title="" Language="C#" MasterPageFile="~/Standard.Master" AutoEventWireup="true" CodeBehind="MapTypC.aspx.cs" Inherits="TALAS_V5.MessagesMap.MapTypC" %>
|
|
|
|
<%@ Register assembly="DevExpress.Web.v19.2, Version=19.2.6.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" namespace="DevExpress.Web" tagprefix="dx" %>
|
|
|
|
<asp:Content ID="NaviContent" ContentPlaceHolderID="NaviContent" runat="server">
|
|
|
|
</asp:Content>
|
|
|
|
|
|
<asp:Content ID="Content" ContentPlaceHolderID="MainContent" runat="server" >
|
|
|
|
<iframe src="../TileMap/index.html" style="width: 100%; border: none;" onload="resizeIframe(this)" scrolling="no"></iframe>
|
|
<script type="text/javascript">
|
|
var intFrameHeight = window.innerHeight-50;
|
|
function resizeIframe(iframe) {
|
|
if(iframe) {
|
|
iframe.height = intFrameHeight+"px";
|
|
}
|
|
}
|
|
</script>
|
|
</asp:Content>
|
|
|