From 6252e4e9e9f71b4ee245067b2ac23f6c3615357b Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Thu, 28 Jul 2016 05:21:24 -0400 Subject: [PATCH] syntax, comments with output --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 29f1c8a..8b37ab9 100644 --- a/README.md +++ b/README.md @@ -30,8 +30,8 @@ You can get the previous and next S2CellId from any given Key: 3. Convert the Key to an Id (uint64 string) ```javascript -var key = S2.latLngToKey(40.2574448, -111.7089464); -var id = S2.toId(key); +var key = S2.latLngToKey(40.2574448, -111.7089464); // '4/032212303102210' +var id = S2.toId(key); // '9749618446378729472' var nextKey = S2.nextKey(key); var nextId = S2.toId(nextKey); @@ -40,9 +40,9 @@ var prevKey = S2.prevKey(key); var prevId = S2.toId(prevKey); // See it -console.log(prevKey); -console.log(key); -console.log(nextKey); +console.log(prevKey); // '4/032212303102203' +console.log(key); // '4/032212303102210' +console.log(nextKey); // '4/032212303102211' console.log(nextId); ``` @@ -71,7 +71,7 @@ Convert from hilbert quadtree id to s2 cell id: Example '9749618446378729472' becomes '4/032212303102210' -``` +```javascript 'use strict'; var cellId = '9749618446378729472';