33 lines
844 B
HTML
33 lines
844 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Named Maps Tutorial | CartoDB</title>
|
|
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
|
|
<link rel="shortcut icon" href="http://cartodb.com/assets/favicon.ico" />
|
|
|
|
<style>
|
|
html, body, #map {
|
|
height: 100%;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
|
|
<link rel="stylesheet" href="https://cartodb-libs.global.ssl.fastly.net/cartodb.js/v3/3.15/themes/css/cartodb.css" />
|
|
</head>
|
|
<body>
|
|
<div id="map"></div>
|
|
|
|
<!-- include cartodb.js library -->
|
|
<script src="https://cartodb-libs.global.ssl.fastly.net/cartodb.js/v3/3.15/cartodb.js"></script>
|
|
|
|
|
|
<!-- Drop your code between the script tags below! -->
|
|
<script>
|
|
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|