2.0_beta sync to rsa
[framework/web/web-ui-fw.git] / libs / js / jquery-geo-1.0a4 / docs / examples / simplest.html
1 <!DOCTYPE html>
2 <html>
3   <head>
4     <meta charset="utf-8">
5
6     <title>simplest</title>
7
8     <meta name="description" content="A very simple instantiation of the geomap widget">
9     <meta name="author" content="Ryan Westphal">
10     <link rel="stylesheet" type="text/css" href="css/style.css" />
11   </head>
12 <body>
13   <div>
14     <a href="../" class="docLink">&lt; docs</a>
15     <h1>simplest</h1>
16     <p>A 256x256 pixel div...geomap called with no arguments.</p>
17     <div id="map" style="width: 256px; height: 256px;"></div>
18   </div>
19
20   <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
21   <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
22   <script src="http://code.jquerygeo.com/jquery.geo-1.0a4.min.js"></script>
23   <script>
24     $(function () {
25       $("#map").geomap();
26     });  
27   </script>
28 </body>
29 </html>