Files
openlayers/demo/hello.js
2012-06-22 10:44:34 +02:00

10 lines
244 B
JavaScript

/* This is a code which is going to be compiled together with the library */
function init() {
var map = ol.map()
.render('map')
.layers([ol.layer.osm()])
.center([45, 5])
.zoom(10);
}
window['init'] = init;