-
Notifications
You must be signed in to change notification settings - Fork 46
/
apps_maps.html
77 lines (67 loc) · 2.32 KB
/
apps_maps.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
---
layout: admin
title: APPs - Maps
section: apps
module: apps_maps
header:
icon: map
title: Maps
description: Some maps with Google Maps and AmCharts.
stylesheets:
- css/apps/maps.css
javascripts:
- bower_components/ammap3/ammap/ammap.js
- bower_components/ammap3/ammap/maps/js/worldLow.js
- bower_components/ammap3/ammap/themes/light.js
- js/apps/maps.js
---
<script src="https://maps.googleapis.com/maps/api/js?key={{ site.googleKey }}"></script>
<section id="apps_maps">
<div class="maps-app">
<div class="row">
<div class="col s12">
<div class="card-panel alternative lighten-1">
You can download and use all <b>amCharts</b> products for free. The only limitation of the free version is that a small link to this web site will be displayed in the top left corner of your charts. If you would like to use charts without this link, or you appreciate the software and would like to support its creators, <a href="https://www.amcharts.com/online-store/" target="_blank">please purchase a commercial license</a>.
</div>
</div>
</div>
<div class="row">
<!-- ########### -->
<!-- Google Maps -->
<!-- ########### -->
<div class="col s12 l6">
<div class="panel panel-bordered">
<div class="panel-header">
<div class="title">
Google Maps
</div>
<div class="subtitle">
<a href="https://developers.google.com/maps/documentation/javascript/tutorial" target="_blank">Click here</a> to see the documentation.
</div>
</div>
<div class="panel-body">
<div id="gmap"></div>
</div>
</div>
</div>
<!-- ######## -->
<!-- AmCharts -->
<!-- ######## -->
<div class="col s12 l6">
<div class="panel panel-bordered panel-map z-depth-1">
<div class="panel-header">
<div class="title">
AmCharts
</div>
<div class="subtitle">
<a href="https://docs.amcharts.com/3/javascriptmaps/AmMap" target="_blank">Click here</a> to see the documentation.
</div>
</div>
<div class="panel-body">
<div id="ammap"></div>
</div>
</div>
</div>
</div>
</div>
</section>