User:TidB/Map locations

From Team Fortress Wiki
Jump to: navigation, search

Usage

This template allows you to add markers to an image. When hovering over the marker, the name of the area will appear.

This template's parameters are:

  • nobox - Use nobox = true to remove the navbox styling around the image, including the header. Useful when putting this template into {{Tabs}}. Using this setting makes collapse and title obsolete.
  • collapse - Collapses the box on load. Off by default. Use collapse = true to collapse the box.
  • title - Title of the box.
  • image - Filename of the image to be used as the base for the map location template. The image will be automatically resized to be 800 pixels wide.
  • You can add up to 15 locations on the map. Every location is controlled by three attributes.
    • arean - Name of a given area/location.
    • xn and yn - X and Y coordinates of the map marker. The best way to get those coordinates is to copy an 800px wide version of the image you will be using, then copying the map marker file, adjusting them in the appropiate places, then getting the coordinates of the upper left corner of the marker.
  • The n in the above fields' names is to be replaced with a number from the range (1-15).

Example

{{Map locations
 | title = Badlands - Middle point
 | image = Badlands2.png
 | area1 = Train
 | x1 = 325px
 | y1 = 173px
 | area2 = Balcony
 | x2 = 204px
 | y2 = 294px
 | area3 = Shithouse
 | x3 = 680px
 | y3 = 286px
 | area4 = Valley
 | x4 = 416px
 | y4 = 277px
 | area5 = Hoodoo
 | x5 = 295px
 | y5 = 213px
}}

will yield

With the nobox option activated, it will yield

Badlands2.png
Train
Balcony
Shithouse
Valley
Hoodoo

The CSS necessary for this to work is

.maploc {
    width: 810px;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
}

.maploc div.container {
    margin: 0 auto;
    position: relative;
    width: 800px;
}

.maploc div.container div.marker {
    background: url(../../w/images/d/d5/Map_marker.png);
    cursor: pointer;
    height: 31px;
    position: absolute;
    width: 21px;
    z-index: 0;
}

.maploc div.container div.marker div {
    background-color: white;
    background-image: linear-gradient( to bottom, white, #eee );
    border-radius: 10px;
    box-shadow: 0px 5px 5px rgba(0,0,0,0.5);
    display: none;
    font-size: small;
    height: 20px;
    left: -69px;
    position: relative;
    text-align: center;
    top: -25px;
    width: 160px;
}

.maploc div.container div.marker:hover div {
    display: block;
    z-index: 1;
}

@media screen and (max-width: 1024px) {
  .maploc div.container div.marker:active div {    
    display: block;    
    z-index: 1;
  }
}