Difference between revisions of "Module:Mapframe KML"
MyWikiBiz, Author Your Legacy — Monday October 27, 2025
Jump to navigationJump to search (Pywikibot 6.4.0) |
(No difference)
|
Latest revision as of 04:45, 16 July 2021
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