forked from lyzidiamond/web-map-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcarto-iframe.html
More file actions
22 lines (18 loc) · 807 Bytes
/
carto-iframe.html
File metadata and controls
22 lines (18 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html>
<head>
<!-- Adding in the Leaflet CSS file -->
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.5/leaflet.css" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.ie.css" />
<![endif]-->
<!-- Adding Leaflet JavaScript file -->
<script src="http://cdn.leafletjs.com/leaflet-0.7.5/leaflet.js"></script>
</head>
<body>
<h2>My map in an iFrame!</h2>
<!-- Substitute your own CartoDB iFrame code below -->
<iframe width="100%" height="520" frameborder="0" src="https://danswick.carto.com/viz/1e746444-f056-11e5-9527-0ecfd53eb7d3/embed_map" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
<!-- Good job. -->
</body>
</html>