-
Notifications
You must be signed in to change notification settings - Fork 34
Open
Description
The documentation on KML allows and ID-attribute: e.g.<Placemark id="ID">. The comments in e.g. the placemark.rb object file, hint at this too. It is, however, not possible to set the ID, since it gets ignored.
A quick hack is a change to Placemark#render:
def render(xm=Builder::XmlMarkup.new(:indent => 2))
xm.Placemark(id: self.id) {
super
...
}
end
I've some ideas on how to refactor a little to allow the ID to be set more generic, but that is quite some work, and this project seems a bit stale. Is this a feature that would be wanted?
Metadata
Metadata
Assignees
Labels
No labels