La carte des evts est automatiquement centrée et zoomée en fonction des evts pris en compte
This commit is contained in:
parent
8b3c580f33
commit
d240cf25b1
@ -7,13 +7,14 @@ $(document).ready ->
|
|||||||
).addTo map
|
).addTo map
|
||||||
|
|
||||||
$.getJSON '/maps.json', (json) ->
|
$.getJSON '/maps.json', (json) ->
|
||||||
L.geoJson(json,
|
layer = L.geoJson(json,
|
||||||
onEachFeature: (feature, layer) ->
|
onEachFeature: (feature, layer) ->
|
||||||
# Does this feature have a property named popupContent?
|
# Does this feature have a property named popupContent?
|
||||||
if (feature.properties && feature.properties.popupContent)
|
if (feature.properties && feature.properties.popupContent)
|
||||||
layer.bindPopup(feature.properties.popupContent)
|
layer.bindPopup feature.properties.popupContent
|
||||||
).addTo map
|
).addTo map
|
||||||
|
|
||||||
|
map.fitBounds layer.getBounds()
|
||||||
|
|
||||||
$('.events #map, .moderations #map').each ->
|
$('.events #map, .moderations #map').each ->
|
||||||
coord = [$(this).attr('latitude'), $(this).attr('longitude')]
|
coord = [$(this).attr('latitude'), $(this).attr('longitude')]
|
||||||
|
@ -21,7 +21,7 @@ en:
|
|||||||
suisse: Suisse
|
suisse: Suisse
|
||||||
propose: Propose an event
|
propose: Propose an event
|
||||||
feeds: RSS/iCal feed
|
feeds: RSS/iCal feed
|
||||||
map: map
|
map: Map
|
||||||
tags: Tags
|
tags: Tags
|
||||||
infos: Informations
|
infos: Informations
|
||||||
stats: Statistics
|
stats: Statistics
|
||||||
|
Loading…
Reference in New Issue
Block a user