-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
74 lines (62 loc) · 3.15 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
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Genêro e nomes de rua - mapa interativo</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<meta property="og:title" content="Genêro e nomes de rua - mapa interativo" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://medidasp.com/projetos/genero-ruas/" />
<meta property="og:image" content="https://medidasp.com/projetos/genero-ruas/assets/images/screenshot.jpg" />
<meta property="og:image:width" content="1439" />
<meta property="og:image:height" content="715" />
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.47.0/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.47.0/mapbox-gl.css' rel='stylesheet' />
<script src='https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-geocoder/v2.3.0/mapbox-gl-geocoder.min.js'></script>
<link href='https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-geocoder/v2.3.0/mapbox-gl-geocoder.css' rel='stylesheet' />
<script src='https://unpkg.com/cheap-ruler@2.5.1/cheap-ruler.js'></script>
<script src='https://bundle.run/lineclip@1.1.5'></script>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div id="map"></div>
<div class="overlay tooltip" id="legend">
<div id="legend-wrapper"></div>
<div class="tooltiptext" id="tooltiptext"></div>
</div>
<a href="http://www.medidasp.com">
<div class="logo"></div>
</a>
<span class="about"><a id="about" href="#">Sobre</a></span>
<div id="modal" class="modal">
<div class="modal-content">
<div class="modal-header">
<h2>Gênero nos nomes de rua - mapa interativo</h2>
</div>
<div class="modal-body">
<p>Este mapa mostra as ruas do Brasil classificadas por gênero, visualizadas nas cores:</p>
<p>
<div class="legend-line"><span class="legend-key" style="background: #f55656"></span>Feminino</div>
<div class="legend-line"><span class="legend-key" style="background: #08bcd4"></span>Masculino</div>
<div class="legend-line"><span class="legend-key" style="background: #bababa"></span>Sem gênero</div>
<div class="legend-line"><span class="legend-key" style="background: #ffffff"></span>Sem dados</div>
</p>
<p>A barra na direita do mapa mostra a soma do comprimento das ruas.</p>
<p>Este mapa for feito por <a href="http://www.medidasp.com">Medida SP</a>. Para saber mais, <a href="https://medium.com/@medidasp/genero-ruas-brasil-mapa-618c7f61e082">clique aqui</a>.</p>
<p style="text-align: center;">
<button class="btn close">Veja o mapa</button>
</p>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-87495739-1', 'auto');
ga('send', 'pageview');
</script>
</html>