mirror of
https://github.com/dataforcanada/d4c-datapkg-statistical.git
synced 2026-06-13 14:10:55 +02:00
36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>2021 Census of Population Characteristics</title>
|
|
<meta property="og:description"
|
|
content="Visualize vector tile fields of all 2021 Census of Population characteristics, with dynamic classification." />
|
|
<meta charset='utf-8'>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="./src/styles.css">
|
|
</head>
|
|
<body>
|
|
<div id="map"></div>
|
|
|
|
<div class="search-container">
|
|
<input type="text" class="search-input" placeholder="Search fields..." id="fieldSearch">
|
|
<div class="search-results" id="searchResults"></div>
|
|
</div>
|
|
|
|
<button class="recalculate-btn" id="recalculateBtn">Recalculate Classes (CKMeans)</button>
|
|
|
|
<div class="current-field" id="currentField">
|
|
Current field: total_1
|
|
</div>
|
|
|
|
<div class="classification-info" id="classificationInfo">
|
|
Classification: Loading...
|
|
</div>
|
|
|
|
<div class="legend" id="legend">
|
|
<div class="legend-title">Legend</div>
|
|
<div id="legendContent"></div>
|
|
</div>
|
|
|
|
<script type="module" src="./src/main.js"></script>
|
|
</body>
|
|
</html> |