Created
September 26, 2017 08:25
-
-
Save ramiroaznar/4c89ac7ff6eb52bea70a252f505bcbd0 to your computer and use it in GitHub Desktop.
CARTO.js | createLayer + close popup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>CARTO.js | createLayer + close popup</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="https://cartodb.com/assets/favicon.ico" /> | |
<link rel="stylesheet" href="https://cartodb-libs.global.ssl.fastly.net/cartodb.js/v3/3.15/themes/css/cartodb.css" /> | |
<script src="https://cartodb-libs.global.ssl.fastly.net/cartodb.js/v3/3.15/cartodb.js"></script> | |
<style> | |
html, body, #map { | |
height: 100%; | |
padding: 0; | |
margin: 0; | |
} | |
button { | |
top: 20px; | |
bottom: auto; | |
position: absolute; | |
z-index: 100; | |
left: 20px; | |
background-color: white; | |
width: 100px; | |
height: 40px; | |
border-radius: 5px; | |
} | |
</style> | |
</head> | |
<body> | |
<!-- map div --> | |
<div id="map"></div> | |
<!-- define a button object--> | |
<div id="button"> | |
<button>Close!</button> | |
</div> | |
<!-- infowindow div --> | |
<script type="infowindow/html" id="infowindow_template"> | |
<div class="cartodb-popup v2"> | |
<a href="#close" class="cartodb-popup-close-button close">x</a> | |
<div class="cartodb-popup-content-wrapper"> | |
<div class="cartodb-popup-content"> | |
<h3>{{name}}</h3> | |
<h4>{{adm0name}}</h4> | |
<p>{{pop_max}} inhabitants</p> | |
</div> | |
<div class="cartodb-popup-tip-container"></div> | |
</div> | |
</script> | |
<script type="text/cartocss" id="style"> | |
#layer { | |
marker-width: 10; | |
marker-fill: ramp([featurecla], (#5F4690, #1D6996, #38A6A5, #0F8554, #73AF48, #EDAD08, #E17C05, #CC503E, #94346E), ("Populated place", "Admin-1 capital", "Admin-0 capital", "Admin-1 region capital", "Scientific station", "Admin-0 region capital", "Admin-0 capital alt", "Historic place", "Meteorological Station"), "="); | |
marker-fill-opacity: 0.7; | |
marker-allow-overlap: true; | |
marker-line-width: 0; | |
} | |
</script> | |
<script type="text/sql" id="query"> | |
SELECT | |
* | |
FROM | |
populated_places WHERE pop_max > 700000 | |
</script> | |
<script> | |
function main() { | |
// get styles & query | |
var style = $("#style").text(), | |
query = $("#query").text(), | |
// declare map variable | |
map = L.map('map', { | |
zoomControl: false, | |
center: [41, -3], | |
zoom: 3 | |
}); | |
// add basemap | |
L.tileLayer('http://{s}.basemaps.cartocdn.com/light_nolabels/{z}/{x}/{y}.png', {attribution: '© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors, © <a href="http://cartodb.com/attributions">CARTO</a>'}).addTo(map); | |
// add cartodb layer | |
cartodb.createLayer(map, { | |
user_name: 'ramirocartodb', | |
type: 'cartodb', | |
sublayers: [{ | |
sql: query, | |
cartocss: style, | |
}] | |
}, {https:true}).addTo(map) | |
.done(function(layer){ | |
// declare sublayer variable | |
var cityLayer = layer.getSubLayer(0); | |
// set layer interactivity | |
cityLayer.setInteractivity("name, adm0name, pop_max"); | |
cityLayer.setInteraction(true); | |
// add popup | |
cdb.vis.Vis.addInfowindow( | |
map, layer, ["name", "adm0name", "pop_max"], | |
{ | |
infowindowTemplate: $('#infowindow_template').html() | |
}); | |
// add button action | |
$('button').on('click', function() { | |
$('.cartodb-infowindow').css('visibility', 'hidden'); | |
return false; | |
}); | |
}); | |
} | |
window.onload = main; | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment