33 lines
962 B
Plaintext
33 lines
962 B
Plaintext
<%@ language="javascript"%>
|
|
<% /*
|
|
$Revision$
|
|
$Id$
|
|
|
|
File: CAD/rap_algc.asp
|
|
Description: Inhoud van het ALG-tabblad van FG
|
|
*Concept* variant
|
|
Parameters: floorKey (required)
|
|
highlight (optional list of room-keys to filter)
|
|
Context: -
|
|
|
|
*/%>
|
|
<!-- #include file="../Shared/common.inc" -->
|
|
<!-- #include file="cad_contour_list.inc" -->
|
|
<%
|
|
var floorKey = getQParamInt("vKey", -1);
|
|
var highlight_arr = getQParamIntArray("highlight", []); // Comma-separated room_key_list (terrains). Optional
|
|
|
|
var outputmode = getQParamInt("outputmode", 0);
|
|
var showall = getQParamInt("showall", 0) == 1;
|
|
|
|
contour_list ( "*",
|
|
{ outputmode: outputmode,
|
|
showall: showall,
|
|
flr_key: floorKey,
|
|
concept: true,
|
|
highlight_arr: highlight_arr
|
|
}
|
|
);
|
|
%>
|
|
<% ASPPAGE_END(); %>
|