updated annotation text to be selectable/moveable, save annotation text with other shapes and reload from xml

This commit is contained in:
Blake Harnden 2019-12-06 22:10:27 -08:00
parent 2824ae09b0
commit 71df2a3b7f
5 changed files with 45 additions and 53 deletions

View file

@ -123,9 +123,9 @@ class NodeElement:
if x is not None and y is not None:
lat, lon, alt = self.session.location.getgeo(x, y, z)
position = etree.SubElement(self.element, "position")
add_attribute(position, "x", x)
add_attribute(position, "y", y)
add_attribute(position, "z", z)
add_attribute(position, "x", int(x))
add_attribute(position, "y", int(y))
add_attribute(position, "z", int(z))
add_attribute(position, "lat", lat)
add_attribute(position, "lon", lon)
add_attribute(position, "alt", alt)