i cant ype this
Zoom Level | Resolution | Scale |
---|---|---|
0 | 156543.03392800014 | 5.91657527591555E8 |
1 | 78271.51696399994 | 2.95828763795777E8 |
2 | 39135.75848200009 | 1.47914381897889E8 |
3 | 19567.87924099992 | 7.3957190948944E7 |
4 | 9783.93962049996 | 3.6978595474472E7 |
5 | 4891.96981024998 | 1.8489297737236E7 |
6 | 2445.98490512499 | 9244648.868618 |
7 | 1222.992452562495 | 4622324.434309 |
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
// Build the map | |
var map = L.map('map', { | |
scrollWheelZoom: false, | |
doubleClickZoom: false, | |
zoomControl: false, | |
center: [45.539, -122.671], | |
zoom: 16 | |
}) | |
var baseLayer = L.tileLayer('http://{s}.ashbu.cartocdn.com/nikolaswise/api/v1/map/86e05ccc48f4eb1bc6e5b11531870916:1429636411308.12/{z}/{x}/{y}.png') |
Lower Albina looks at using classical analog-era metaphors to address web cartography and creating of the 'map'. At it's root, this conceptual model requires 3 layers:
- Base Layer
- Study Layer
- Reference Layer
This is similar to the ideas behind basemap/layers/labels, but simplified. Each layer has it's own, very narrow, scope.
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
[ | |
{ | |
"x": 0, | |
"y": 12, | |
"for": "Foo" | |
}, | |
{ | |
"x": 1, | |
"y": 24, | |
"for": "Foo" |
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
function md5cycle(x, k) { | |
var a = x[0], b = x[1], c = x[2], d = x[3]; | |
a = ff(a, b, c, d, k[0], 7, -680876936); | |
d = ff(d, a, b, c, k[1], 12, -389564586); | |
c = ff(c, d, a, b, k[2], 17, 606105819); | |
b = ff(b, c, d, a, k[3], 22, -1044525330); | |
a = ff(a, b, c, d, k[4], 7, -176418897); | |
d = ff(d, a, b, c, k[5], 12, 1200080426); | |
c = ff(c, d, a, b, k[6], 17, -1473231341); |
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
<html> | |
<head> | |
</head> | |
<body> | |
<div id="map"></div> | |
</body> | |
</html> | |
body, html { |