20 lines
325 B
HTML
20 lines
325 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>cartodb demo template</title>
|
|
</head>
|
|
|
|
<body>
|
|
</body>
|
|
|
|
<script src="../cartodb.js"></script>
|
|
<script>
|
|
window.onload = function() {
|
|
cdb.load('../', function() {
|
|
console.log("CARTODB LOADED");
|
|
// your code here
|
|
});
|
|
};
|
|
</script>
|
|
</html>
|