Files
openlayers/master/examples/test_iPhone-RoundRect.html
Éric Lemoine 5d14b9e2d4 Updated
2013-02-20 10:38:25 +01:00

27 lines
1.2 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>Round Rect</title>
<link href="../themes/iphone/base.css" rel="stylesheet">
<script type="text/javascript" src="../../../dojo/dojo.js" djConfig="parseOnLoad: true"></script>
<script language="JavaScript" type="text/javascript">
dojo.require("dojox.mobile"); // This is a mobile app.
dojo.require("dojox.mobile.parser"); // This mobile app supports running on desktop browsers
dojo.require("dojox.mobile.compat"); // This mobile app uses declarative programming with fast mobile parser
</script>
</head>
<body style="visibility:hidden;">
<div id="foo" dojoType="dojox.mobile.View" selected="true">
<h2 dojoType="dojox.mobile.RoundRectCategory">Round Rectangle</h2>
<div dojoType="dojox.mobile.RoundRect" shadow="true">
This module provides some widgets that can be used to build web-based
applications for mobile devices such as iPhone or Android.
</div>
</div>
</body>
</html>