diff options
author | Youmin Ha <youmin.ha@samsung.com> | 2012-08-23 16:13:20 +0900 |
---|---|---|
committer | Youmin Ha <youmin.ha@samsung.com> | 2012-08-23 16:13:20 +0900 |
commit | f476ccb6d18ed0c7392ad5508a4c7108c1297f2a (patch) | |
tree | bbdda31334a8da5bef6e1869a375075e1b8447a8 /libs/js/jquery-geo-1.0a4/docs/examples/simplest.html | |
parent | 1ebd5ca39c5801e5c53b0d339223713e898d0b10 (diff) | |
download | web-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-x | libs/js/jquery-geo-1.0a4/docs/examples/simplest.html | 29 |
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">< 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> |