Created
September 7, 2015 09:16
-
-
Save iriberri/5ddc98ec31697c339f53 to your computer and use it in GitHub Desktop.
Enable geolocation with CartoDB
This file contains hidden or 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>Easy example | CartoDB.js</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="http://libs.cartocdn.com/cartodb.js/v3/3.14/themes/css/cartodb.css" /> | |
</head> | |
<body> | |
<div id="map"></div> | |
<!-- include cartodb.js library --> | |
<script src="http://libs.cartocdn.com/cartodb.js/v3/3.14/cartodb.js"></script> | |
<script> | |
function main() { | |
cartodb.createVis('map', 'http://documentation.cartodb.com/api/v2/viz/2b13c956-e7c1-11e2-806b-5404a6a683d5/viz.json') | |
.done(function(vis, layers) { | |
// you can get the native map to work with it | |
var map = vis.getNativeMap(); | |
// now, perform any operations you need | |
// map.setZoom(3); | |
// map.panTo([50.5, 30.5]); | |
map.options.maxZoom =10; | |
// Try HTML5 geolocation | |
if(navigator.geolocation) { | |
navigator.geolocation.getCurrentPosition(function(position) { | |
L.marker([position.coords.latitude, position.coords.longitude]).addTo(map); | |
map.setView([position.coords.latitude, position.coords.longitude], 8); | |
console.log("hola"); | |
}, function() { | |
}); | |
} else { | |
// Browser doesn't support Geolocation | |
alert("Geolocation is disabled"); | |
} | |
}) | |
.error(function(err) { | |
console.log(err); | |
}); | |
} | |
window.onload = main; | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment