-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclubs.html
130 lines (102 loc) · 4.65 KB
/
clubs.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="assets/favicon.png">
<title>Junioren Segeln Stadt Zürich</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-theme.min.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<link rel="stylesheet" href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" type="text/css">
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>
<script>
function InitMap()
{
var map = new atlas.Map('map-canvas', {
center: [8.5421348, 47.3576382],
zoom: 14,
language: 'de-CH',
showLogo: false,
showFeedbackLink: false,
authOptions: {
authType: 'subscriptionKey',
subscriptionKey: 'Mkp0vYI_X_H1EdpzsKSorVdlc3jgf-cSaGLDnOtg7mI'
}
});
// map.setStyle({ style: 'satelite' }); // requires non-free tier
map.events.add('ready', function () {
//Create a data source and add it to the map.
var dataSource = new atlas.source.DataSource();
map.sources.add(dataSource);
//Create a symbol layer to render icons and/or text at points on the map.
var layer = new atlas.layer.SymbolLayer(dataSource, null, { iconOptions: { image: "marker-red"}});
//Add the layer to the map.
map.layers.add(layer);
//Create a point and add it to the data source.
dataSource.add(new atlas.data.Point([8.5523696, 47.3545622])); // zsc
dataSource.add(new atlas.data.Point([8.5353166, 47.3488226])); // sce
dataSource.add(new atlas.data.Point([8.5383252, 47.364244])); // zyc
});
}
</script>
</head>
<body onload="InitMap()">
<header class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="boats.html">Bootsklassen</a></li>
<li class="active"><a href="#">Clubs</a></li>
<li><a href="subscription.html">Anmeldung</a></li>
<li><a href="contact.html">Kontakt</a></li>
</ul>
</div>
</div>
</header>
<div class="container">
<br />
<div id="js-club-intro">
Die Junioren können an allen Trainingsangeboten der drei Clubs teilnehmen. Dabei spielt es keine Rolle
in welchem der drei Clubs sie Mitglied sind.
</div>
<div class="row">
<div class="col-md-4">
<h2><img src="assets/sce.png" alt="SCE" height="30" />Segel-Club Enge</h2>
<p>
<a href="https://www.segelclubenge.ch/junioren">www.segelclubenge.ch/junioren</a>
</p>
</div>
<div class="col-md-4">
<h2><img src="assets/zyc.jpg" alt="zyc" height="30" /> Zürcher Yacht Club</h2>
<p>
<a href="http://www.zyc.ch/site/index.cfm?id_art=60631&actMenuItemID=26006">www.zyc.ch</a>
</p>
</div>
<div class="col-md-4">
<h2><img src="assets/zsc.png" alt="ZSC" height="30" /> Zürcher Segel Club</h2>
<p>
<a href="https://www.z-s-c.ch/youth">www.z-s-c.ch/youth</a>
</p>
</div>
</div>
<div id="map-canvas" class="hidden-xs hidden-sm"></div>
</div>
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>