Hi all,
I would like to run a simple tile5 test, but I have a white page.
I'm usign the .js file I have in the dist folder of sidelab-tile5-1.0alpha1-0-gf7bc56f.tar.gz file.
I'm sure it's a very stupid error, but I do not see it.
Below you have my code.
Thank you
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>tile5</title>
<script type="text/javascript" src="js/tile5.cloudmade.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<script type="text/javascript">
var map = new T5.Map('mapContainer');
map.layer('tiles', 'tile', {
generator: 'osm.cloudmade', apikey: 'mykey'
});
map.zoom(8).center('-27.4695 153.0201');
</script>
<div id="mapContainer" style="height: 350px;width: 350px" />
</body>
</html>