mirror of
https://git.coop/cotech/website.git
synced 2024-11-22 06:33:07 +00:00
Enable map for technology page
This commit is contained in:
parent
8f1f83391f
commit
540417920d
@ -47,6 +47,34 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- END Grid View Content -->
|
<!-- END Grid View Content -->
|
||||||
|
|
||||||
|
<!-- START Map View Content -->
|
||||||
|
<div class="tabs-panel" id="map">
|
||||||
|
<div class="row small-up-2 medium-up-4 large-up-6 small-collapse">
|
||||||
|
<div id="map-technologies"></div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
var mapEntries = [
|
||||||
|
{% for coop in site.coops %}
|
||||||
|
{% if coop.technologies contains page.slug %}
|
||||||
|
{
|
||||||
|
lat: {{ coop.latitude }},
|
||||||
|
lng: {{ coop.longitude }},
|
||||||
|
markerText: '<b><a href=\"{{ coop.url | relative_url }}\">{{ coop.name }}</a></b><br><br>{{ coop.address | split: "," | join: "<br>" }}'
|
||||||
|
},
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
];
|
||||||
|
|
||||||
|
$(document).ready(function() {
|
||||||
|
window.app.createMapMultiMarker('map-technologies', 54.7, -4.2, 6, mapEntries);
|
||||||
|
});
|
||||||
|
|
||||||
|
// TODO fix bug with tiles not displaying properly until window resized
|
||||||
|
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- END Map View Content -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user