another round of LatLon -> LonLat [99] revisions

git-svn-id: http://svn.openlayers.org/trunk/openlayers@103 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
euzuro
2006-05-17 16:20:12 +00:00
parent 1720fee550
commit fe360c91e5
9 changed files with 15 additions and 15 deletions

View File

@@ -148,7 +148,7 @@ OpenLayers.Size.prototype = {
};
/**
* @class This class represents a latitude and longitude pair
* @class This class represents a longitude and latitude pair
*/
OpenLayers.LonLat = Class.create();
OpenLayers.LonLat.prototype = {
@@ -160,8 +160,8 @@ OpenLayers.LonLat.prototype = {
* @param {float} lat
*/
initialize: function(lon, lat) {
this.lat = lat;
this.lon = lon;
this.lat = lat;
},
/**
@@ -233,7 +233,7 @@ OpenLayers.LonLat.fromString = function(str) {
/**
* @class This class represents a bounding box.
* Data stored as Min and Max Latitudes and Longitudes
* Data stored as Min and Max Longitudes and Latitudes
*/
OpenLayers.Bounds = Class.create();
OpenLayers.Bounds.prototype = {