Releases: westnordost/osmapi
Releases · westnordost/osmapi
v3.6
MapDataParser
does now not require elements to have a version
attribute
v3.5
Major non-breaking update:
Instead of including as a dependency the whole library, you can include only parts of it. For example, just the parts that enable you to handle map data etc.
See readme for mor information.
v3.4
- add setter for
isModified
onOsmElement
- add
changesCount
field toChangesetInfo
v3.3
Fix: Do not output lat/lon coordinates in scientific notation. F.e. output 0.0000001
and not 1e-7
v3.2
- extend
NotesDao
byfind
andgetAll
method - document that the OSM API does not return a conflict anymore when (un)subscribing to an unclosed changeset
- parse
maxNotesQueryAreaInSquareDegrees
intoCapabilities
from API response
v3.1
Fix: Never use default locale when upper- or lowercasing strings
v3.0
Breaking update
Use OsmLatLon
(based on two doubles) by default instead of Fixed1E7LatLon
(based on two ints).
Using Fixed1E7LatLon
saves 8 byte per coordinate from an implementation based on doubles, but every access involves a division operation which is of course a lot slower, so it is hardly what should be the default behavior.