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:
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user