forked from openlayers/openlayers
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request openlayers#2207 from probins/projdocs
Improve docs for projection/transform functions
- Loading branch information
Showing
5 changed files
with
49 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
/** | ||
* The ol.proj namespace stores: | ||
* * a list of {@link ol.proj.Projection} | ||
* objects, one for each projection supported by the application | ||
* * a list of transform functions needed to convert coordinates in one projection | ||
* into another. | ||
* | ||
* The static functions are the methods used to maintain these. | ||
* Each transform function can handle not only simple coordinate pairs, but also | ||
* large arrays of coordinates such as vector geometries. | ||
* | ||
* When loaded, the library adds projection objects for EPSG:4326 (WGS84 | ||
* geographic coordinates) and EPSG:3857 (Web or Spherical Mercator, as used | ||
* for example by Bing Maps or OpenStreetMap), together with the relevant | ||
* transform functions. | ||
* | ||
* @namespace ol.proj | ||
*/ |