Changeset 25935 in osm for applications/editors/josm/plugins/wms-turbo-challenge2/src
- Timestamp:
- 2011-05-02T20:54:39+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/wms-turbo-challenge2/src/wmsturbochallenge/FakeMapView.java
r23190 r25935 43 43 ProjectionBounds parent_bounds = parent.getProjectionBounds(); 44 44 max_east_west = 45 parent_bounds.max .east() - parent_bounds.min.east();45 parent_bounds.maxEast - parent_bounds.minEast; 46 46 } 47 47 … … 49 49 view_bounds = bounds; 50 50 51 if (bounds.max .east() - bounds.min.east()> max_east_west) {52 max_east_west = bounds.max .east() - bounds.min.east();51 if (bounds.maxEast - bounds.minEast > max_east_west) { 52 max_east_west = bounds.maxEast - bounds.minEast; 53 53 54 54 /* We need to set the parent MapView's bounds (i.e. … … 75 75 parent.getProjectionBounds(); 76 76 max_east_west = 77 new_bounds.max .east() - new_bounds.min.east();77 new_bounds.maxEast - new_bounds.minEast; 78 78 } 79 79 80 Point vmin = getPoint(bounds. min);81 Point vmax = getPoint(bounds. max);80 Point vmin = getPoint(bounds.getMin()); 81 Point vmax = getPoint(bounds.getMax()); 82 82 int w = vmax.x + 1; 83 83 int h = vmin.y + 1; … … 105 105 106 106 public Point getPoint(EastNorth p) { 107 double x = p.east() - view_bounds.min .east();108 double y = view_bounds.max .north()- p.north();107 double x = p.east() - view_bounds.minEast; 108 double y = view_bounds.maxNorth - p.north(); 109 109 x /= this.scale; 110 110 y /= this.scale; … … 115 115 public EastNorth getEastNorth(int x, int y) { 116 116 return new EastNorth( 117 view_bounds.min .east()+ x * this.scale,118 view_bounds.min .north()- y * this.scale);117 view_bounds.minEast + x * this.scale, 118 view_bounds.minNorth - y * this.scale); 119 119 } 120 120
Note:
See TracChangeset
for help on using the changeset viewer.