34 lines
1016 B
HTML
34 lines
1016 B
HTML
---
|
|
layout: example-verbatim.html
|
|
title: Full-Screen Mobile
|
|
shortdesc: Example of a full screen map.
|
|
tags: "fullscreen, geolocation, mobile"
|
|
cloak:
|
|
- key: AlEoTLTlzFB6Uf4Sy-ugXcRO21skQO7K8eObA5_L-8d20rjqZJLs2nkO1RMjGSPN
|
|
value: Your Bing Maps Key from https://www.bingmapsportal.com/ here
|
|
---
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width">
|
|
<title>Mobile full screen example</title>
|
|
<link rel="stylesheet" type="text/css" href="/theme/ol.css">
|
|
<link rel="stylesheet" type="text/css" href="/theme/site.css">
|
|
<style>
|
|
html, body, .map {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="map" class="map"></div>
|
|
<script src="https://unpkg.com/elm-pep@1.0.6/dist/elm-pep.js"></script>
|
|
<script src="mobile-full-screen.js"></script>
|
|
<script src="common.js"></script>
|
|
</body>
|
|
</html>
|