Module:Mapframe KML

MyWikiBiz, Author Your Legacy — Monday September 23, 2024
Jump to navigationJump to search

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