OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 <!-- Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
3 for details. All rights reserved. Use of this source code is governed by a | |
4 BSD-style license that can be found in the LICENSE file. | |
5 --> | |
6 | |
7 <!-- | |
8 This code is derived from | |
9 https://developers.google.com/maps/documentation/javascript/tutorial#HelloWorl
d | |
10 You can view the original JavaScript example at | |
11 https://developers.google.com/maps/documentation/javascript/examples/map-simpl
e | |
12 --> | |
13 | |
14 <html> | |
15 <head> | |
16 <meta charset="utf-8"> | |
17 <title>Map</title> | |
18 <style type="text/css"> | |
19 html { height: 100% } | |
20 body { height: 100%; margin: 0; padding: 0 } | |
21 #map-canvas { height: 100% } | |
22 </style> | |
23 <script type="text/javascript" | |
24 src="https://maps.googleapis.com/maps/api/js?sensor=false"> | |
25 </script> | |
26 </head> | |
27 <body> | |
28 <div id="map-canvas"></div> | |
29 <script type="application/dart" src="index.dart"></script> | |
30 <script src="packages/browser/dart.js"></script> | |
31 <script src="packages/browser/interop.js"></script> | |
32 </body> | |
33 </html> | |
OLD | NEW |