Small fixes.

This commit is contained in:
Tim Schaub
2012-06-19 09:43:20 +02:00
parent e84a0473d5
commit f24b518f61
7 changed files with 18 additions and 15 deletions

View File

@@ -1,11 +1,13 @@
goog.provide('ol');
goog.require('ol.Map');
goog.require('ol.map');
goog.require('goog.dom');
ol.main = function() {
goog.dom.getElement('output').innerHTML = 'test';
goog.dom.getElement('output').innerHTML = 'test';
var map = ol.map().center([45, 5]);
window.console.log(map.center());
}
window['main'] = ol.main;