UNPKG

openlayers

Version:

Build tools and sources for developing OpenLayers based mapping applications

32 lines (31 loc) 1.03 kB
--- layout: example-verbatim.html title: Full-Screen Mobile shortdesc: Example of a full screen map. tags: "fullscreen, geolocation, mobile" cloak: As1HiMj1PvLPlqc_gtM7AqZfBL8ZL3VrjaS3zIb22Uvb9WKhuJObROC-qUpa81U5: 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>