From 70f4aec2cbd24d51c35f3ccce140663aebd02fe5 Mon Sep 17 00:00:00 2001 From: rolux Date: Tue, 19 Nov 2013 03:31:15 +0100 Subject: [PATCH] fix error in manhattan grid example --- examples/maps/manhattan_grid/js/example.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/maps/manhattan_grid/js/example.js b/examples/maps/manhattan_grid/js/example.js index aa661988..b2455ca1 100644 --- a/examples/maps/manhattan_grid/js/example.js +++ b/examples/maps/manhattan_grid/js/example.js @@ -220,7 +220,7 @@ Ox.load('Image', function() { `getXYByLatLng` returns screen coordinates for a given point. We use Ox.getXYByLatLng, which takes a lat/lng pair and returns its x/y position on a 1×1 Mercator projection, with `{x: 0, y: 0}` at the - bottom left and `{x: 1, y: 1}` at the top right. + top left and `{x: 1, y: 1}` at the bottom right. */ function getXYByLatLng(point) { return Ox.map(Ox.getXYByLatLng(point), function(v) {