You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
604 B
19 lines
604 B
9 years ago
|
# 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 ->
|
||
|
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, 47), 6
|
||
|
map.addControl new OpenLayers.Control.LayerSwitcher()
|
||
|
|
||
|
map.addLayer eventsLayer
|
||
|
map.addLayer lugsLayer
|