forked from GuillaumeLeclerc/vue-google-maps
-
Notifications
You must be signed in to change notification settings - Fork 475
/
index.html
99 lines (86 loc) · 2.62 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
<!doctype html>
<html>
<head>
<title>Vue2 Google Maps Examples</title>
</head>
<body>
<h1>Vue2 Google Maps - Examples</h1>
<h2>Demo Samples (using Vue component files)</h2>
<ol>
<li>
<a href="all-components.html">All Components</a>.
A semi-unofficial suite of most features. Until automated tests are
available, please ensure that all features on this page works.
<em>Built using Webpack</em>
</li>
<li>
<a href="index-app.html">List of simple demos</a>.
</li>
<li>
<a href="autoapi.html">Semi-automatically generated API <s>documentation</s> dump</a>.
</li>
</ol>
<h2>Demo Samples (using pure HTML+JS)</h2>
<ol>
<li>
<a href="overlay.html">Ground overlay on a Google Map</a>.
Demonstrates how custom components can be written for Google Maps
using this library.
<em>Built using Standalone</em>
</li>
<li>
<a href="test-map-center.html">Basic tests on map centering and zoom</a>.
</li>
<li>
<a href="test-map-center-twoway.html">Basic tests on map centering two-way binding</a>.
</li>
<li>
<a href="maptypeid.html">Test Map Type Id Changes (#117)</a>.
</li>
<li>
<a href="basic-marker.html">Basic markers on a map</a>.
</li>
<li>
<a href="infowindow.html">Single infowindow with multiple markers</a>.
A quick and easy solution to have only 1 infowindow shown with multiple markers.
</li>
<li>
<a href="basic-marker-clusterer.html">Basic markers with clustering</a>.
</li>
<li>
<a href="basic-marker-shape.html">Basic markers with shape</a>.
</li>
<li>
<a href="basic-place-input.html">Place Input (deprecated)</a>.
</li>
<li>
<a href="basic-autocomplete.html">Autocomplete</a>.
</li>
<li>
<a href="basic-map-functions.html">Map Functions</a>.
</li>
<li>
<a href="street-view-pano.html">Street View Panorama</a> (Experimental).
</li>
<li>
<a href="resize-bus.html">Resize Bus</a>.
</li>
<li>
<a href="resize-bus-destroy.html">Map Destroy</a>.
</li>
<li>
<a href="info-bar.html">Info bars</a>.
</li>
<li>
<a href="polyline-editing.html">Polyline editing</a>.
</li>
<li>
<a href="polygon-editing.html">Polygon editing (simple)</a>.
</li>
<li>
<a href="polygon-editing-geojson.html">Polygon editing (advanced)</a>.
</li>
</ol>
<hr/>
</body>
</html>