hjg
2024-07-09 30304784e82d4bba24121328da8eb8490aec4f4f
提交 | 用户 | 时间
58d006 1 <!DOCTYPE html>
A 2 <html>
3 <head>
4   <meta charset="utf-8">
5   <title>GMaps.js &mdash; Basic</title>
6   <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
7   <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
8   <script type="text/javascript" src="../gmaps.js"></script>
9   <link rel="stylesheet" href="http://twitter.github.com/bootstrap/1.3.0/bootstrap.min.css" />
10   <link rel="stylesheet" type="text/css" href="examples.css" />
11   <script type="text/javascript">
12     var map;
13     $(document).ready(function(){
14       map = new GMaps({
15         el: '#map',
16         lat: -12.043333,
17         lng: -77.028333,
18         zoomControl : true,
19         zoomControlOpt: {
20             style : 'SMALL',
21             position: 'TOP_LEFT'
22         },
23         panControl : false,
24         streetViewControl : false,
25         mapTypeControl: false,
26         overviewMapControl: false
27       });
28     });
29   </script>
30 </head>
31 <body>
32   <h1>GMaps.js &mdash; Basic</h1>
33   <div class="row">
34     <div class="span11">
35       <div id="map"></div>
36     </div>
37     <div class="span6">
38       <p>Using GMaps.js is as easy as:</p>
39       <pre>new GMaps({
40   el: '#map',
41   lat: -12.043333,
42   lng: -77.028333
43 });</pre>
44       <p>You must define <strong>container ID</strong>, <strong>latitude</strong> and <strong>longitude</strong> of the map's center.</p>
45       <p><span class="label notice">Note: </span>You also can define <strong>zoom</strong>, <strong>width</strong> and <strong>height</strong>. By default, zoom is 15. Width and height in a CSS class will replace these values.</p>
46     </div>
47   </div>
48 </body>
49 </html>