fix typo in manhattan grid example
This commit is contained in:
parent
29950d2a10
commit
5d8ec4be71
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ Ox.load('Image', function() {
|
||||||
Before we start drawing, we define a few helper functions.
|
Before we start drawing, we define a few helper functions.
|
||||||
`getXYByLatLng` returns screen coordinates for a given point.
|
`getXYByLatLng` returns screen coordinates for a given point.
|
||||||
We use Ox.getXYByLatLng, which takes a lat/lng pair and returns its x/y
|
We use Ox.getXYByLatLng, which takes a lat/lng pair and returns its x/y
|
||||||
position on a 1×1 Mercator position, with `{x: 0, y: 0}` at the
|
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.
|
bottom left and `{x: 1, y: 1}` at the top right.
|
||||||
*/
|
*/
|
||||||
function getXYByLatLng(point) {
|
function getXYByLatLng(point) {
|
||||||
|
|
Loading…
Reference in a new issue