-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
115 lines (89 loc) · 4.7 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
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
<!-- Projeto Mapa de Ribeirão Grande SP
projetorgmsp@gmail.com
Copyright (c) Edil Queiroz de Araujo
MIT License
Projeto Desde 2012
Aplicativo Desde 2016
-->
<!DOCTYPE html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KRVR053FS2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-KRVR053FS2');
</script>
<meta property="og:locale" content="pt_BR">
<meta property="og:url" content="https://mapaderibeirao.github.io/mapa/">
<meta property="og:title" content="Mapa de Ribeirão Grande - SP">
<meta property="og:site_name" content="Mapa de Ribeirão Grande - SP">
<meta property="og:description" content="O mapa atualizado que acompanha o desenvolvimento de Ribeirão Grande e região.">
<meta property="og:image" content="https://mapaderibeirao.github.io/mapa/img/screenshot-main.jpg">
<meta property="og:image:type" content="image/jpeg">
<meta property="og:image:width" content="1280">
<meta property="og:image:height" content="720">
<meta property="og:type" content="website">
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="description" content="O mapa atualizado que acompanha o desenvolvimento de Ribeirão Grande e região.">
<title>Mapa de Ribeirão Grande - SP</title>
<!-- Custom styles -->
<link rel="shortcut icon" href="img/favicon.png" />
<link href="css/map.css" rel="stylesheet" type="text/css"/>
<script src="inc/jquery.min.js" ></script>
<!-- LEAFLET 1.6.0 -->
<script src="leaflet/leaflet.js" ></script>
<link href="leaflet/leaflet.css" rel="stylesheet" type="text/css"/>
<!-- Font Awesome's -->
<script src="https://kit.fontawesome.com/bb2d4f0dd8.js" crossorigin="anonymous"></script>
<script src="plugins/leaflet-providers.js"></script>
<script src="plugins/locatecontrol/L.Control.Locate.min.js"></script>
<link href="plugins/locatecontrol/L.Control.Locate.css" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" href="https://ppete2.github.io/Leaflet.PolylineMeasure/Leaflet.PolylineMeasure.css" />
<script src="https://ppete2.github.io/Leaflet.PolylineMeasure/Leaflet.PolylineMeasure.js"></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet-control-geocoder/dist/Control.Geocoder.css" />
<script src="https://unpkg.com/leaflet-control-geocoder/dist/Control.Geocoder.js"></script>
<script src="plugins/leaflet-easyprint/bundle.js"></script>
<link rel="stylesheet" href="plugins/leaflet-side-by-side/layout.css" />
<script src="plugins/leaflet-side-by-side/leaflet-side-by-side.min.js"></script>
<script src="plugins/Leaflet.Control.Custom.js"></script>
<link rel="stylesheet" href="plugins/iconlayers/iconlayers.css" />
<script src="plugins/iconlayers/iconlayers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet-easybutton@2/src/easy-button.css">
<script src="https://cdn.jsdelivr.net/npm/leaflet-easybutton@2/src/easy-button.js"></script>
<script src="plugins/leaflet-hash.js"></script>
<script src="plugins/leaflet.edgescalebar.js"></script>
<script src="plugins/leaflet-omnivore.min.js"></script>
<!-- Leaflet.awesome-markers plugin v2.0 -->
<link rel="stylesheet" href="plugins/awesome-markers/leaflet.awesome-markers.css" />
<script src="plugins/awesome-markers/leaflet.awesome-markers.js"></script>
<!-- Leaflet.MarkerCluster plugin v1.4.1 -->
<link rel="stylesheet" href="plugins/markercluster/MarkerCluster.css" />
<link rel="stylesheet" href="plugins/markercluster/MarkerCluster.Default.css" />
<script src="plugins/markercluster/leaflet.markercluster.js"></script>
<!-- Leaflet.heat -->
<script src="plugins/leaflet-heat.js"></script>
<!--Overlapping Marker Spiderfier for Leaflet https://github.com/jawj/OverlappingMarkerSpiderfier-Leaflet/ -->
<script src="plugins/oms.min.js"></script>
<!-- https://github.com/zostera/leaflet-legend -->
<link rel="stylesheet" href="plugins/leaflet-legend/leaflet-legend.css" />
<script src="plugins/leaflet-legend/leaflet-legend.js"></script>
<!-- https://github.com/ghybs/Leaflet.FeatureGroup.SubGroup -->
<script src="plugins/subgroup.js"></script>
<script src="inc/functions.js"></script>
<script src="inc/urlparams.js"></script>
</head>
<body >
<main>
<div id='mapdiv' class="" ></div>
<script src="inc/urlparam-get.js"></script>
<script src='inc/initlang.js'></script>
<script src='inc/initmap.js'></script>
<script src='inc/initplugins.js'></script>
<script src="inc/urlparam-proc.js"></script>
</main>
</body>
</html>