Module:Mapframe KML

From English Wikipedia @ Freddythechick

This is the current revision of this page, as edited by imported>Frietjes at 16:07, 1 October 2019 (default to pagename). The present address (URL) is a permanent link to this version.

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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