This example is based on Jorge Arévalo example but using CartoDB.js entirely to interact with the Maps API.
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
To read | |
---------- | |
The moon is a harsh mistress - Robert A. Heinlein | |
A canticle for Leibowitz - Walter M. Miller | |
Flowers for Algernon - Daniel Keyes | |
The Forever War - Joe Haldeman | |
God is Dead - Ron Currie Jr. | |
The world without us - Alan Weisman (not really sci fi, but interesting, anyways) | |
Animal Farm - George Orwell |
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
""" | |
A heap is a recipie to represent an array as a | |
binary tree. | |
A binary tree is a convenient structure for | |
manipulating ordered data | |
Said simply: | |
we implement a binary tree abstraction on top of an array. | |
this tree as the following properties: | |
any child value is smaller than its parent's value | |
left child is greater than right child. |
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
services: | |
demo: | |
kml: | |
tms: | |
wmts: | |
wms: | |
srs: ['EPSG:900913', 'EPSG:4258'] | |
image_formats: ['image/jpeg', 'image/png'] | |
md: | |
title: PNOA MapProxy |
NewerOlder