Fix lat/lon order

This commit is contained in:
tsauerwein
2015-09-18 16:35:44 +09:00
parent 73b67f7a74
commit b1f56c1e98

View File

@@ -130,4 +130,4 @@ The next part of the `Map` object is the `View`. The view allow to specify the c
})
```
You will notice that the `center` specified is in lat/lon coordinates (EPSG:4326). Since the only layer we use is in Spherical Mercator projection (EPSG:3857), we can reproject them on the fly to be able to zoom the map on the right coordinates.
You will notice that the `center` specified is in lon/lat coordinates (EPSG:4326). Since the only layer we use is in Spherical Mercator projection (EPSG:3857), we can reproject them on the fly to be able to zoom the map on the right coordinates.