2014-04-28 00:33:21 +02:00
|
|
|
# Place all the behaviors and hooks related to the matching controller here.
|
|
|
|
# All this logic will automatically be available in application.js.
|
|
|
|
# You can use CoffeeScript in this file: http://coffeescript.org/
|
|
|
|
|
|
|
|
#= require openlayers-rails
|
|
|
|
|
|
|
|
$(document).ready ->
|
2014-06-25 13:47:56 +02:00
|
|
|
if $('#map').size() > 0
|
|
|
|
map = new OpenLayers.Map 'map'
|
|
|
|
layer = new OpenLayers.Layer.WMS 'OpenLayers WMS',
|
|
|
|
'http://vmap0.tiles.osgeo.org/wms/vmap0', {
|
|
|
|
layers: 'basic'
|
|
|
|
}
|
|
|
|
map.addLayer layer
|
|
|
|
map.setCenter new OpenLayers.LonLat(2.5, 46.4), 7
|
|
|
|
map.addControl new OpenLayers.Control.LayerSwitcher()
|
2014-04-28 00:33:21 +02:00
|
|
|
|
2014-06-25 13:47:56 +02:00
|
|
|
map.addLayer eventsLayer
|
|
|
|
map.addLayer lugsLayer
|