33 lines
947 B
HTML
33 lines
947 B
HTML
---
|
|
layout: example-verbatim.html
|
|
title: Full-Screen Mobile
|
|
shortdesc: Example of a full screen map.
|
|
tags: "fullscreen, geolocation, mobile"
|
|
cloak:
|
|
- key: As1HiMj1PvLPlqc_gtM7AqZfBL8ZL3VrjaS3zIb22Uvb9WKhuJObROC-qUpa81U5
|
|
value: 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>
|
|
<link rel="stylesheet" href="../css/ol.css" type="text/css">
|
|
<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="common.js"></script>
|
|
<script src="mobile-full-screen.js"></script>
|
|
</body>
|
|
</html>
|