Skip to content

Commit

Permalink
Merged branch master into master
Browse files Browse the repository at this point in the history
  • Loading branch information
designgears committed Jun 10, 2016
2 parents ff89fff + 454ab7c commit 4855f2d
Showing 1 changed file with 97 additions and 0 deletions.
97 changes: 97 additions & 0 deletions assets/markup/markers/hierarch_square.html
@@ -0,0 +1,97 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hierarch Square - Witcher 3 Interactive Maps</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta property="og:title" content="Hierarch Square - Witcher 3 Interactive Maps">
<meta property="og:type" content="website">
<meta property="og:url" content="http://witcher3map.com/">
<meta property="og:image" content="http://witcher3map.com/files/maps/velen/preview.jpg">
<meta property="og:description" content="Hierarch Square on Witcher 3 interactive maps. All locations including shopkeepers, gwent players, merchants, places of power">
<meta name="description" content="Hierarch Square on Witcher 3 interactive maps. All locations including shopkeepers, gwent players, merchants, places of power">
<meta name="keywords" content="Hierarch Square, Witcher 3 location, Witcher 3, Witcher 3 map, Witcher 3 interactive map, gwent player map, gwent map, shopkeeper map, merchant map">
<link type="text/css" rel="stylesheet" href="../files/styles/home.min.css">
<style type="text/css">
iframe {
border: 0;
display: block;
width: 100%;
height: 100%;
display: none;
}
#marker-map-wrap{
width: 800px;
height: 600px;
margin: 50px auto;
position: relative;
}
#marker-map-spacer {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
cursor: pointer;
}
#marker-map-info {
font-family: PFDinTextCondPro, Arial, sans-serif;
color: #AF834E;
background: rgba(0,0,0,.7);
padding: 10px;
font-size: 18px;
line-height: 21px;
position: absolute;
bottom: 0;
left: 0;
}
#marker-map-info h1 {
text-transform: uppercase;
margin: 0;
padding: 0 0 5px;
font-size: 20px;
}
</style>
</head>
<body>
<div id="wrap">
<div id="wrap2">
<div id="content">
<div id="logo"></div>
<div id="text" data-i18n="[html]home.tagline">Unofficial The Witcher 3 Interactive Map</div>
<div id="marker-map-wrap">
<iframe src="../v/#6/207.617/103.938/m=207.375,103.75"></iframe>
<div id="marker-map-spacer">
<div id="marker-map-info">
<h1>Hierarch Square</h1>
Until quite recently a great many mages lived near Novigrad's main square. They fled when the witch hunters began their reign of terror, leaving many of the city's most beautiful townhouses abandoned and uncared for
</div>
</div>
</div>
</div>
</div>
<div id="push"></div>
</div>
<script type="text/javascript" src="../files/scripts/vendor.bundle.js"></script>
<script type="text/javascript">
var iframeSrc = $('iframe').attr('src')
$('iframe').on('load', function () {
var iframe = $(this).contents().eq(0);
iframe.find('#sidebar').remove();
iframe.find('#sidebar-border').remove();
iframe.find('#hide-sidebar').remove();
iframe.find('#warn').remove();
iframe.find('#info-wrap').remove();
iframe.find('.leaflet-top').remove();
iframe.find('#map').css('left', '0');
$(this).show();
});

$(document).on('click', '#marker-map-spacer', function(){
window.location = iframeSrc;
return false;
});
</script>
</body>
</html>

0 comments on commit 4855f2d

Please sign in to comment.