git-svn-id: http://svn.openlayers.org/trunk/openlayers@11260 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
45 lines
1.2 KiB
HTML
45 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>OpenLayers Mobile</title>
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0;">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<link rel="stylesheet" href="style.mobile.css" type="text/css">
|
|
<script src="../lib/OpenLayers.js"></script>
|
|
<script src="mobile.js"></script>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
}
|
|
#map {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.olControlAttribution {
|
|
font-size: 10px;
|
|
bottom: 5px;
|
|
right: 5px;
|
|
}
|
|
#title, #tags, #shortdesc {
|
|
display: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1 id="title">Basic Mobile Example</h1>
|
|
<div id="tags">
|
|
mobile
|
|
</div>
|
|
<p id="shortdesc">
|
|
A basic full-screen map for mobile devices.
|
|
</p>
|
|
<div id="map"></div>
|
|
<script>
|
|
init();
|
|
</script>
|
|
</body>
|
|
</html>
|