32 lines
1.0 KiB
HTML
32 lines
1.0 KiB
HTML
---
|
|
layout: example-verbatim.html
|
|
title: Full-Screen Mobile
|
|
shortdesc: Example of a full screen map.
|
|
tags: "fullscreen, geolocation, mobile"
|
|
cloak:
|
|
AkGbxXx6tDWf1swIhPJyoAVp06H0s0gDTYslNWWHZ6RoPqMpB9ld5FY1WutX8UoF: Your Bing Maps Key from http://www.bingmapsportal.com/ here
|
|
---
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
|
<meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width">
|
|
<title>Mobile full screen example</title>
|
|
<style type="text/css">
|
|
html, body, .map {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="map" class="map"></div>
|
|
<script src="https://code.jquery.com/jquery-2.2.3.min.js" type="text/javascript"></script>
|
|
<script src="./resources/common.js" type="text/javascript"></script>
|
|
<script src="loader.js?id=mobile-full-screen" type="text/javascript"></script>
|
|
</body>
|
|
</html>
|