This commit is contained in:
2018-09-17 17:01:14 +02:00
parent 0d5a955bcf
commit edcd40d2c4
3 changed files with 39 additions and 48 deletions
+37
View File
@@ -1,3 +1,38 @@
function map() {
var mymap = L.map('mapid').setView([48.866667, 2.333333], 14);
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw', {
maxZoom: 18,
attribution: '<a href="https://www.openstreetmap.org/"></a>'
+ '<a href="https://creativecommons.org/licenses/by-sa/2.0/"></a>'
+ '<a href="https://www.mapbox.com/"></a>',
id: 'mapbox.streets'
}).addTo(mymap);
var LeafIcon = L.Icon.extend({
options: {
iconSize: [50, 50],
iconAnchor: [25, 25],
}
});
var greenIcon = new LeafIcon({iconUrl: 'user/themes/r2c/images/handler.svg'})
L.marker([48.866667, 2.333333], {icon: greenIcon}).bindPopup("Coucou").addTo(mymap);
// $(document).ready(function() {
//
// var array = []
// console.log(array);
//
// var $mappoint = $('#streetmap > div:nth-child(n+2)');
// array.push('{{module.header.id}}');
// console.log(array);
//
// });
};
function scrollbar(){
$(window).on("load",function(){
$("#start > div > div").mCustomScrollbar({
@@ -291,5 +326,7 @@ $(document).ready(function() {
clickhand();
drag();
dragcanvas();
map();
// scrollbar();
});
@@ -3,57 +3,11 @@
{% macro pageLinkName(text) %}{{ text|lower|replace({' ':'_'}) }}{% endmacro %}
{% block body %}
<script>
function map() {
var mymap = L.map('mapid').setView([48.866667, 2.333333], 14);
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw', {
maxZoom: 18,
attribution: '<a href="https://www.openstreetmap.org/"></a>'
+ '<a href="https://creativecommons.org/licenses/by-sa/2.0/"></a>'
+ '<a href="https://www.mapbox.com/"></a>',
id: 'mapbox.streets'
}).addTo(mymap);
var LeafIcon = L.Icon.extend({
options: {
iconSize: [50, 50],
iconAnchor: [25, 25],
}
});
var greenIcon = new LeafIcon({iconUrl: 'user/themes/r2c/images/handler.svg'})
L.marker([48.866667, 2.333333], {icon: greenIcon}).bindPopup("Coucou").addTo(mymap);
};
$(document).ready(function() {
map();
});
</script>
<div id="mapid"></div>
<script>
{% for module in page.collection %}
$(document).ready(function() {
var array = []
console.log(array);
var $mappoint = $('#streetmap > div:nth-child(n+2)');
array.push('{{module.header.id}}');
console.log(array);
});
</script>
<div id="{{module.header.id}} {{module.header.lat}} {{module.header.long}}">
{{ module.content }}
{{ module.content }}
</div>
{% endfor %}
{% endblock %}
@@ -29,11 +29,11 @@
{% block javascripts %}
{% do assets.addJs('jquery', 101) %}
{% do assets.addJs('theme://js/jquery-ui.js', {group:'bottom'}) %}
{% do assets.addJs('theme://js/script.js', {group:'bottom'}) %}
{% do assets.addJs('theme://js/d3.js', {group:'bottom'}) %}
{% do assets.addJs('theme://js/script_d3js.js', {group:'bottom'}) %}
{% do assets.addJs('theme://js/paper_full.js', {group:'bottom'}) %}
{% do assets.addJs('theme://js/jquery.ui.touch-punch.min.js', {group:'bottom'}) %}
{% do assets.addJs('theme://js/script.js', {group:'bottom'}) %}
{# % do assets.addJs('theme://js/leaflet.js', {group:'bottom'}) % #}
{# do assets.addJs('theme://js/script_paperjs.js', {type:'text/paperscript', canvas:'canvas', group:'bottom'}) #}