モジュールの解説[表示] [編集] [履歴] [キャッシュを破棄]

{{Marker}}のパラメータに関する設定ファイル

ウィキデータでのバージョン: 2025-04-12 問題あり

使用状況

[編集]

このモジュールを使用しているモジュールは以下の通りです:

-- Parameter lists and localization return { 	-- administration 	moduleInterface = { 		suite  = 'Marker', 		sub    = 'Params', 		serial = '2024-12-21', 		item   = 65451902 	},  	-- The item key is used by the Marker module. 	-- The value like ['no-gpx'] is the parameter name used in the template. 	-- Use values for localization. 	p = { 		-- module name = template arg 		alt        = 'alt', 		commonscat = 'commonscat', 		copyMarker = { 'copy-marker', 'marker-copy' }, 		country    = 'country', 		group      = 'group', 		id         = 'id', 		image      = 'image', 		lat        = { 'lat', 'latitude', 'coord' }, 		long       = { 'long', 'lon', 'longitude' }, 		mapGroup   = 'map-group', 		noGpx      = 'no-gpx', 		name       = 'name', 		nameExtra  = 'name-extra', 		nameLatin  = 'name-latin', 		nameLocal  = 'name-local', 		nameMap    = 'name-map', 		show       = 'show', 		status     = 'status', 		styles     = 'styles', 		symbol     = { 'symbol', 'icon' }, 		text       = 'text', 		type       = { 'type', 'types' }, 		url        = 'url', 		wikidata   = 'wikidata', 		zoom       = 'zoom' 	},  	-- corresponding Wikidata properties 	wd = { 		applemaps     = { p = 'P10046' }, 		coord         = { p =  'P625' }, 		googlemaps    = { p = 'P3749' }, 		iata          = { p =  'P238', c = 3 }, 		icao          = { p =  'P239' }, 		image         = { p = { { p = 'P18' }, 		                  { p = 'P3451' }, -- nighttime view 		                  { p = 'P8592' }, -- aerial view 		                  { p = 'P5775' } } }, -- interior image 		osmNodeId     = { p = 'P11693' }, 		osmRelationId = { p = 'P402' }, 		osmWayId      = { p = 'P10689' }, 		 		rss           = { p = 'P1019' }, 		stationNumber = { p =  'P954' }, -- intl station number 		tripadvisor   = { p = 'P3134' }, 		url           = { p =  'P856' },  		facebook      = { p = { { p = 'P2013', f = 'https://www.facebook.com/%s' }, -- Facebook username 					      { p = 'P1997', f = 'https://www.facebook.com/%s' }, -- Facebook places ID 					      { p = 'P4003', f = 'https://www.facebook.com/pages/%s' }, -- Facebook page ID 					      { p = 'P11705', f = 'https://www.facebook.com/pages/%s' } } }, -- Facebook numeric ID 		flickr        = { p = 'P3267', f = 'https://www.flickr.com/photos/%s' }, 		instagram     = { p = { { p = 'P2003', f = 'https://www.instagram.com/%s/' }, 		                  { p = 'P4173', f = 'https://www.instagram.com/explore/locations/%s/' } } }, 		tiktok        = { p = { { p = 'P7085', f = 'https://www.tiktok.com/@%s' }, -- TikTok username 		                  { p = 'P11559', f = 'https://www.tiktok.com/place/_-%s' } } }, -- TikTok place ID 		twitter       = { p = 'P2002', f = 'https://twitter.com/%s' }, 		youtube       = { p = { { p = 'P11245', f = 'https://www.youtube.com/@%s' }, -- Youtube channel @ alias 		                  { 'P2397', f = 'https://www.youtube.com/channel/%s' } } } -- Youtube channel 	},  	-- default Wikidata requests 	-- iata, icao, rss, social media links only from Wikidata 	wdContent = { 		applemaps     = true,  -- fetch it by default 		googlemaps    = true, 		iata          = true, 		icao          = true, 		image         = true, 		osmNodeId     = true, 		osmRelationId = true, 		osmWayId      = true, 		rss           = true, 		stationNumber = true, 		tripadvisor   = true, 		url           = true 	},  	-- check for fetch from Wikidata 	ynCheckList = { 'facebook', 'flickr', 'image', 'instagram', 'nameLocal', 		'tiktok', 'twitter', 'url', 'youtube' },  	defaultShow = 'poi, name',  	-- parameters for wrapper tag 	markerData = { 		applemaps       = 'data-apple-maps-id', 		color           = 'data-color', 		commonscat      = 'data-commonscat', 		googlemaps      = 'data-google-maps-cid', 		group           = 'data-group', 		groupTranslated = 'data-group-translated', -- for MapTools.js 		image           = 'data-image', 		mapGroup        = 'data-map-group', 		nameLocal       = 'data-name-local', 		osmNodeId       = 'data-osm-node-id', 		osmRelationId   = 'data-osm-relation-id', 		osmWayId        = 'data-osm-way-id', 		rss             = 'data-rss', 		stationNumber   = 'data-station-number', 		symbol          = 'data-symbol', 		type            = 'data-type', 		url             = 'data-url', 		tripadvisor     = 'data-tripadvisor-com', 		wikidata        = 'data-wikidata'		 	},  	-- possible values for show parameter 	show = { 		all         = 1, 		coord       = 1, 		copy        = 1, 		noairport   = 1, 		noname      = 1, 		none        = 1, 		nositelinks = 1, 		poi         = 1, 		socialmedia = 1, 		symbol      = 1, 		wikilink    = 1 	} }