Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Side by Side Diff: src/site/samples/google_maps/example/index.html

Issue 1387723002: Updating the samples page to reflect the examples that have been retired. (Closed) Base URL: https://github.com/dart-lang/www.dartlang.org.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW
« no previous file with comments | « src/site/samples/google_maps/example/index.dart ('k') | src/site/samples/google_maps/example/index.dart.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698