| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 4 BSD-style license that can be found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <!-- | 7 <!-- |
| 8 This code is derived from | 8 This code is derived from |
| 9 https://developers.google.com/maps/documentation/javascript/tutorial#HelloWorl
d | 9 https://developers.google.com/maps/documentation/javascript/tutorial#HelloWorl
d |
| 10 You can view the original JavaScript example at | 10 You can view the original JavaScript example at |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 src="https://maps.googleapis.com/maps/api/js?sensor=false"> | 24 src="https://maps.googleapis.com/maps/api/js?sensor=false"> |
| 25 </script> | 25 </script> |
| 26 </head> | 26 </head> |
| 27 <body> | 27 <body> |
| 28 <div id="map-canvas"></div> | 28 <div id="map-canvas"></div> |
| 29 <script type="application/dart" src="index.dart"></script> | 29 <script type="application/dart" src="index.dart"></script> |
| 30 <script src="packages/browser/dart.js"></script> | 30 <script src="packages/browser/dart.js"></script> |
| 31 <script src="packages/browser/interop.js"></script> | 31 <script src="packages/browser/interop.js"></script> |
| 32 </body> | 32 </body> |
| 33 </html> | 33 </html> |
| OLD | NEW |