-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.html
34 lines (33 loc) · 1.62 KB
/
map.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
<!DOCTYPE html>
<html lang="en" class="map">
<head>
{{ include('snippets/meta.html', {"title": "Plenty Admin | Map View", "description": "This is the map view of the admin UI", "author": "Jamie McDonnell"}) }}
</head>
{{ include('snippets/header-flex.html', {"page": "map", "dashboard" : false, "settings" : false, "contact" : false, "organization" : false, "map" : true, "plans" : false, "filters": true}) }}
{{ include('snippets/field.html', {"breadcrumbs": false}) }}
<div class="filter_controls text-center">
<i class="filter_loader fa fa-refresh fa-spin"></i>
<h3 class="pull-left mls mts quickFilters" style="display:none;"><a href="" class="quickFilter quickFilter_farms"></a> in <a href="" class="quickFilter quickFilter_organizations"></a></h3>
<h3 class="pull-right mrs mts toggleFilters" style="display:none;"><a href="">Filters <span></span></a></h3>
</div>
<div class="fill-area content flexbox-item-grow">
<div class="fill-area-content flexbox-item-grow" id="map-wrapper">
<div class="col-sm-12 pln prn" id="map-container"></div>
{{ include('snippets/filters.html') }}
</div>
</div>
{{ include('snippets/footer-DOM.html') }}
</div>
{{ include('snippets/loadingOverlay.html') }}
{{ include('snippets/equipment-modals.html') }}
{{ include('snippets/activity-modal.html') }}
{{ include('snippets/crop-survey-modal.html') }}
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&signed_in=false&libraries=geometry,drawing,places"></script>
{{ include('snippets/footer-scripts.html') }}
<script type="text/javascript">
$(function() {
plenty_admin.init("map");
});
</script>
</body>
</html>