Template:UF-coord-classes: Difference between revisions

From Zoophilia Wiki
Jump to navigationJump to search
meta>Fryed-peach
mNo edit summary
Ookami (talk | contribs)
m 32 revisions imported
 
(23 intermediate revisions by 18 users not shown)
Line 1: Line 1:
By default coordinates are displayed in the format in which they are specified.
To always display coordinates as DMS values, add this to [[Special:Mypage/common.css|your common.css]]:
<syntaxhighlight lang="css" style="display:table; padding:0.5em; margin-left:1em; border-radius:2px">
.geo-default { display: inline }
.geo-nondefault { display: inline }
.geo-dec { display: none }
.geo-dms { display: inline }
</syntaxhighlight>


To always display coordinates as DMS values, add this to [[Special:Mypage/monobook.css|your monobook.css]]:
To always display coordinates as decimal values, add this to [[Special:Mypage/common.css|your common.css]]:
:<code>.geo-default { display: inline }<br />.geo-nondefault { display: inline }<br />.geo-dec { display: none }<br />.geo-dms { display: inline }</code>
<syntaxhighlight lang="css" style="display:table; padding:0.5em; margin-left:1em; border-radius:2px">
.geo-default { display: inline }
.geo-nondefault { display: inline }
.geo-dec { display: inline }
.geo-dms { display: none }
</syntaxhighlight>


To always display coordinates as decimal values, add this to [[Special:Mypage/monobook.css|your monobook.css]]:
To display coordinates in both formats, add this to [[Special:Mypage/common.css|your common.css]]:
:<code>.geo-default { display: inline }<br />.geo-nondefault { display: inline }<br />.geo-dec { display: inline }<br />.geo-dms { display: none }</code>
<syntaxhighlight lang="css" style="display:table; padding:0.5em; margin-left:1em; border-radius:2px">
.geo-default { display: inline }
.geo-nondefault { display: inline }
.geo-dec { display: inline }
.geo-dms { display: inline }
.geo-multi-punct { display: inline }
</syntaxhighlight>


To display coordinates in both formats, add this to [[Special:Mypage/monobook.css|your monobook.css]]:
If CSS is disabled, or you have an old copy of [[MediaWiki:Common.css]] cached, you will see both formats. (You can either clear your cache or manually refresh this URL: {{Plain link|url=//en.wikipedia.org/w/index.php?title=MediaWiki:Common.css&usemsgcache=yes&action=raw&ctype=text/css&smaxage=2678400}}.)
:<code>.geo-default { display: inline }<br />.geo-nondefault { display: inline }<br />.geo-dec { display: inline }<br />.geo-dms { display: inline }<br />.geo-multi-punct { display: inline }</code>


If CSS is disabled, or you have an old copy of [[MediaWiki:Common.css]] cached, you will see both formats. (You can either clear your cache or manually refresh this URL: [http://en.wikipedia.org/w/index.php?title=MediaWiki:Common.css&usemsgcache=yes&action=raw&ctype=text/css&smaxage=2678400].)
To disable display of the blue globe adjacent to coordinates, add this to [[Special:Mypage/common.js|your common.js]]:
<syntaxhighlight lang="javascript" style="display:table; padding:0.5em; margin-left:1em; border-radius:2px">
var wma_settings = {enabled:false}
</syntaxhighlight>
Note that this will disable [[meta:WikiMiniAtlas|WikiMiniAtlas]].


See also [[Wikipedia:Manual of Style (dates and numbers)#Geographical coordinates]].
See also [[Wikipedia:Manual of Style (dates and numbers)#Geographical coordinates]].<noinclude>
<noinclude>
 
{{uncategorized template}}
 
[[Category:Coord template]]
[[Category:Microformat (uF) message templates]]
[[Category:WikiProject Geographical coordinates|τ]]
</noinclude>
</noinclude>

Latest revision as of 01:08, 3 September 2020

To always display coordinates as DMS values, add this to your common.css: <syntaxhighlight lang="css" style="display:table; padding:0.5em; margin-left:1em; border-radius:2px"> .geo-default { display: inline } .geo-nondefault { display: inline } .geo-dec { display: none } .geo-dms { display: inline } </syntaxhighlight>

To always display coordinates as decimal values, add this to your common.css: <syntaxhighlight lang="css" style="display:table; padding:0.5em; margin-left:1em; border-radius:2px"> .geo-default { display: inline } .geo-nondefault { display: inline } .geo-dec { display: inline } .geo-dms { display: none } </syntaxhighlight>

To display coordinates in both formats, add this to your common.css: <syntaxhighlight lang="css" style="display:table; padding:0.5em; margin-left:1em; border-radius:2px"> .geo-default { display: inline } .geo-nondefault { display: inline } .geo-dec { display: inline } .geo-dms { display: inline } .geo-multi-punct { display: inline } </syntaxhighlight>

If CSS is disabled, or you have an old copy of MediaWiki:Common.css cached, you will see both formats. (You can either clear your cache or manually refresh this URL: [1].)

To disable display of the blue globe adjacent to coordinates, add this to your common.js: <syntaxhighlight lang="javascript" style="display:table; padding:0.5em; margin-left:1em; border-radius:2px"> var wma_settings = {enabled:false} </syntaxhighlight> Note that this will disable WikiMiniAtlas.

See also Wikipedia:Manual of Style (dates and numbers)#Geographical coordinates.