-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (58 loc) · 2.81 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Web Development Learn.</title>
</head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<script src="vue.js" charset="utf-8"></script>
<script src="vueComponents.js" charset="utf-8"></script>
<script src="model.js" charset="utf-8"></script>
<link rel="stylesheet" type="text/css" href="style/style.css">
<body >
<section>
<section id='HeaderControls' class='navbar-default'>
<div class='conteiner-fluid input-group input-group-justified'>
<div class='btn-group btn-group-justified'>
<button v-bind:class='class_button' v-on:click='setRoute'>Set Route</button>
<input id="headerColorInput" v-bind:class='class_button' :style="{ 'background-color': color }" v-model="color" type="color" >
<button v-bind:class='class_button' v-on:click='clearMap'>Clear Map</button>
<button v-bind:class='class_button' v-on:click='markOnMap'>Mark Points</button>
</div>
<!-- <input class='form__input--large' v-model='routePoints' >
<button v-bind:class='class_button' v-on:click='loadLocations' >capture</button>
-->
<div class='conteiner-fluid input-group input-group-justified'>
<div class="input-group-addon">Beta</div>
<input type="text" v-model="bhtrans.searchText" />
<button v-bind:class='class_button' v-on:click="bhtrans.search" >Load</button>
</div>
</div>
</section>
</section>
<section class="aside__content" >
<aside id='sideArea' class="sideArea" data-spy="scroll">
<section>
<add-location v-bind:content='newLocation'></add-location>
</section>
<list-message
v-for='item in locations' v-bind:content="item" v-bind:key='item.id'>
</list-message>
</aside>
<section class="mapArea">
<div id="map" > </div>
</section>
</section>
<footer class="">
<a href="https://github.com/rafaelhrezende/webMap" target="_blank">GITHUB</a>
<a href="https://github.com/rafaelhrezende/webMap/blob/master/README.md" target="_blank">Read ME</a>
</footer>
<script src="busInfo.js" charset="utf-8"></script>
<script src="Integrations\BHTrans.js" charset="utf-8"></script>
<script src="Integrations\apiwebscraping.js" charset="utf-8"></script>
<script src="vueController.js" charset="utf-8"></script>
<script src="mapController.js" charset="utf-8"></script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDxMzWIsimtbOffUz7lpjGA1M9WzSeylgM&v=3&callback=initMap" charset="utf-8"></script>
</body>
</html>