View Single Post
gnuite's Avatar
Posts: 1,245 | Thanked: 421 times | Joined on Dec 2005
#206
Originally Posted by jaska k View Post
Ok, I can try to use EXCEPTIONS=INIMAGE parameters, WMS server returns then error message as an image. Does it matter if I use for exampe png, png24 or jpeg image format? The Server I use is MapServer, and it is working very well with PC-clients like OpenLayers and ka-Map.
png, png24, and jpeg are all fine. Any image format understood by gdk-pixbuf should work (since that's what maemo-mapper uses).

Originally Posted by jaska k View Post
Should I use BBOX=%.6f,%.6f,%.6f,%.6f or BBOX=%.2f,%.2f,%.2f,%.2f with epsg:3067?
If you're familiar with C and/or printf, you'd understand the differences between the two. Both should work, but %.2f will be less accurate, so I'd use %.6f.

(Basically, %.2f means to format a floating point number such that it has at most 2 digits after the decimal point. %.6f means 6 digits.)