27 lines
1,009 B
TypeScript
27 lines
1,009 B
TypeScript
import UploadTraceToOsmUI from "../BigComponents/UploadTraceToOsmUI"
|
|
import { SpecialVisualization, SpecialVisualizationState } from "../SpecialVisualization"
|
|
import { UIEventSource } from "../../Logic/UIEventSource"
|
|
import { GeoOperations } from "../../Logic/GeoOperations"
|
|
|
|
/**
|
|
* Wrapper around 'UploadTraceToOsmUI'
|
|
*/
|
|
export class UploadToOsmViz implements SpecialVisualization {
|
|
funcName = "upload_to_osm"
|
|
docs =
|
|
"Uploads the GPS-history as GPX to OpenStreetMap.org; clears the history afterwards. The actual feature is ignored."
|
|
args = []
|
|
|
|
constr(
|
|
state: SpecialVisualizationState,
|
|
_: UIEventSource<Record<string, string>>,
|
|
__: string[]
|
|
) {
|
|
const locations = state.historicalUserLocations.features.data
|
|
return new UploadTraceToOsmUI((title) => GeoOperations.toGpx(locations, title), state, {
|
|
whenUploaded: async () => {
|
|
state.historicalUserLocations.features.setData([])
|
|
},
|
|
})
|
|
}
|
|
}
|