-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (59 loc) · 2.67 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"/>
<title>Google Haritalar API Projesi</title>
<style>
#map {
height: 650px;
width: 100%;
}
</style>
</head>
<body>
<div class="col-12">
<div class="row mt-2 mb-2">
<div class="col-4">
<div>
<!-- Yıllık Ciro Filtresi Seçenekleri -->
<label for="ciro-filter">Yıllık Ciro Filtresi:</label>
<select id="ciro-filter" onchange="applyFilters()">
<option value="0">Aralık seçiniz</option>
<option value="0-500000">0 - 500,000</option>
<option value="500000-1000000">500,000 - 1,000,000</option>
<option value="1000000-2000000">1,000,000 - 2,000,000</option>
<option value="2000000-">2,000,000 ve üzeri</option>
</select>
<span class="img-fluid">
<img src="./color-scale.png" width="75px">
</span>
</div>
</div>
<div class="col-4">
<!-- Çalışan Sayısı Filtresi Seçenekleri -->
<div>
<label for="employee-filter">Çalışan Sayısı Filtresi:</label>
<input type="radio" id="employee-10-20" name="employee-filter" value="10-20" onchange="applyFilters()">10-20
<input type="radio" id="employee-20-50" name="employee-filter" value="20-50" onchange="applyFilters()">20-50
<input type="radio" id="employee-50+" name="employee-filter" value="50+" onchange="applyFilters()">50 ve üzeri
</div>
</div>
<div class="col-2">
<!-- Tüm Şirketleri Göster Butonu -->
<button onclick="showAllLocations()">Tüm Şirketleri Göster</button>
</div>
<div class="col-2">
<!-- Tüm Filtreleri Sıfırla Butonu -->
<button onclick="resetFilters()">Tüm Filtreleri Sıfırla</button>
</div>
</div>
</div>
<div id="map"></div>
<script src="./app.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=[YOUR_API_KEY]&callback=initMap" async defer></script>
<script src="./markerclusterer.js"></script>
</body>
</html>