Module:Mapframe KML
Revision as of 10:07, 1 October 2019 by Wikipedia>Frietjes (default to pagename)
Documentation for this module may be created at Module:Mapframe KML/doc
local p = {}
function p.main(frame)
local args = frame.args
if args['KML'] then
args['raw'] = frame:expandTemplate{title = 'Wikipedia:Map data/Wikipedia KML/' .. args['KML']}
else
args['raw'] = frame:expandTemplate{title = 'Wikipedia:Map data/Wikipedia KML/' .. frame:getParent():getTitle()}
end
return frame:preprocess(require('Module:Mapframe')._main(args))
end
return p