kopia lustrzana https://github.com/robhawkes/vizicities
39 wiersze
691 B
HTML
39 wiersze
691 B
HTML
<!DOCTYPE html5>
|
|
|
|
<html>
|
|
<head>
|
|
<title>ViziCities Architecture Example</title>
|
|
|
|
<link href="reset.css" rel="stylesheet" type="text/css">
|
|
|
|
<link href="../css/loading.css" rel="stylesheet" type="text/css">
|
|
|
|
<style type="text/css">
|
|
html, body {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
body {
|
|
background: #ccc;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<script src="../build/vizi.js"></script>
|
|
|
|
<script>
|
|
// Enable debug output
|
|
VIZI.DEBUG = true;
|
|
|
|
var city = new VIZI.City();
|
|
city.init({
|
|
coords: [-0.01924, 51.50358] // Canary Wharf
|
|
// coords: [-0.1159894466, 51.5045487479] // London Eye
|
|
// coords: [-73.984762, 40.7516199] // Empire State
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html> |