summaryrefslogtreecommitdiff
path: root/libs/js/jquery-geo-1.0a4/docs/examples/simplest.html
diff options
context:
space:
mode:
authorYoumin Ha <youmin.ha@samsung.com>2012-08-23 16:13:20 +0900
committerYoumin Ha <youmin.ha@samsung.com>2012-08-23 16:13:20 +0900
commitf476ccb6d18ed0c7392ad5508a4c7108c1297f2a (patch)
treebbdda31334a8da5bef6e1869a375075e1b8447a8 /libs/js/jquery-geo-1.0a4/docs/examples/simplest.html
parent1ebd5ca39c5801e5c53b0d339223713e898d0b10 (diff)
downloadweb-ui-fw-f476ccb6d18ed0c7392ad5508a4c7108c1297f2a.tar.gz
web-ui-fw-f476ccb6d18ed0c7392ad5508a4c7108c1297f2a.tar.bz2
web-ui-fw-f476ccb6d18ed0c7392ad5508a4c7108c1297f2a.zip
2.0_beta sync to rsa
Diffstat (limited to 'libs/js/jquery-geo-1.0a4/docs/examples/simplest.html')
-rwxr-xr-xlibs/js/jquery-geo-1.0a4/docs/examples/simplest.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/libs/js/jquery-geo-1.0a4/docs/examples/simplest.html b/libs/js/jquery-geo-1.0a4/docs/examples/simplest.html
new file mode 100755
index 00000000..a294173a
--- /dev/null
+++ b/libs/js/jquery-geo-1.0a4/docs/examples/simplest.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+
+ <title>simplest</title>
+
+ <meta name="description" content="A very simple instantiation of the geomap widget">
+ <meta name="author" content="Ryan Westphal">
+ <link rel="stylesheet" type="text/css" href="css/style.css" />
+ </head>
+<body>
+ <div>
+ <a href="../" class="docLink">&lt; docs</a>
+ <h1>simplest</h1>
+ <p>A 256x256 pixel div...geomap called with no arguments.</p>
+ <div id="map" style="width: 256px; height: 256px;"></div>
+ </div>
+
+ <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
+ <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
+ <script src="http://code.jquerygeo.com/jquery.geo-1.0a4.min.js"></script>
+ <script>
+ $(function () {
+ $("#map").geomap();
+ });
+ </script>
+</body>
+</html>