mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-17 14:30:28 +00:00
30 lines
710 B
HTML
30 lines
710 B
HTML
<!DOCTYPE HTML>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
|
|
<title>Main Page</title>
|
|
<link rel="stylesheet" href="../../themes/default/" />
|
|
<script src="../../js/jquery.js"></script>
|
|
<script src="../../js"></script>
|
|
|
|
<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
|
|
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div data-role="page" class="page-map">
|
|
<script src="map.js"></script>
|
|
<link rel="stylesheet" href="map.css" />
|
|
|
|
<div data-role="header"><h1>Map View</h1></div>
|
|
<div data-role="content">
|
|
<div id="map-canvas">
|
|
<!-- map loads here... -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|