-
-
Save dhcole/2853899 to your computer and use it in GitHub Desktop.
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html> | |
<head> | |
<title>foursquare :: Explore Sample</title> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" id="jquery"></script> | |
<link href="/styles/leaflet.css" type="text/css" rel="stylesheet" /> | |
<link href="/styles/apisamples.css" type="text/css" rel="stylesheet" /> | |
<script src="/scripts/apisamples.js" type="text/javascript"></script> | |
<script src="/scripts/third_party/jquery.ba-bbq.js" type="text/javascript"></script> | |
<script src="/scripts/third_party/leaflet.js" type="text/javascript"></script> | |
<script src="/scripts/third_party/wax.leaf.min.js" type="text/javascript"></script> | |
<style type="text/css"> | |
html { height: 100%; } | |
body { height: 100%; margin: 0; padding: 0; } | |
/* Give our markers a background image */ | |
.leaflet-marker-icon { | |
background: url(https://foursquare.com/img/pin-blue-transparent.png); | |
padding: 6px; | |
padding-bottom: 17px; | |
top: -6px; | |
left: -6px; | |
} | |
</style> | |
<script type="text/javascript"> | |
var config = { | |
apiKey: 'XXXXXXXXXXXXXX', | |
authUrl: 'https://foursquare.com/', | |
apiUrl: 'https://api.foursquare.com/' | |
}; | |
//<![CDATA[ | |
/* Attempt to retrieve access token from URL. */ | |
function doAuthRedirect() { | |
var redirect = window.location.href.replace(window.location.hash, ''); | |
var url = config.authUrl + 'oauth2/authenticate?response_type=token&client_id=' + config.apiKey + | |
'&redirect_uri=' + encodeURIComponent(redirect) + | |
'&state=' + encodeURIComponent($.bbq.getState('req') || 'users/self'); | |
window.location.href = url; | |
}; | |
if ($.bbq.getState('access_token')) { | |
// If there is a token in the state, consume it | |
var token = $.bbq.getState('access_token'); | |
$.bbq.pushState({}, 2) | |
} else if ($.bbq.getState('error')) { | |
} else { | |
doAuthRedirect(); | |
} | |
//]]> | |
</script> | |
</head> | |
<body> | |
<div style="width: 100%; height: 100%;" id="map_canvas"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment