#3084 closed defect (fixed)
Can't zoom more than "58m" on scale with lambert france coordonates
Reported by: | Owned by: | team | |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | Core | Version: | latest |
Keywords: | zoom lambert france | Cc: |
Description
Hello,
We can't zoom more than "58m" scale with lambert france
projection. The cadastre can't be used easily (very precise source).
Release 1826 and maybe two/three previous ones.
Thanks in advance.
Attachments (1)
Change History (5)
follow-up: 2 comment:1 by , 15 years ago
comment:2 by , 15 years ago
Replying to stoecker:
Hmpf, somehow my new code to detect the zoom depths is not as exact as I thought it should be.
Does this happen with all zoom methods (i.e. +,-, scroolwheel and zoom bar)?
The problem seems to be in the new method getWorldBoundsLatLon() which seems to limit the zoom if the bound is -90/90 :
{
return new Bounds(
new LatLon(-90.0, -180.0),
new LatLon(90.0, 180.0));
}
I have attached a patch file called Lambert.patch if you could apply it. It's also a small code cleanup.
comment:3 by , 15 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
In r1849.
Seems I forgot to enter correct values when I changed Lambert.java.
Nevertheless there are still some quirks in the projection code but I hope they will vanish step by step :-)
Hmpf, somehow my new code to detect the zoom depths is not as exact as I thought it should be.
Does this happen with all zoom methods (i.e. +,-, scroolwheel and zoom bar)?