| OLD | NEW |
| (Empty) | |
| 1 <!-- Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 for details. All rights reserved. Use of this source code is governed by a |
| 3 BSD-style license that can be found in the LICENSE file. --> |
| 4 |
| 5 <!DOCTYPE html> |
| 6 <html> |
| 7 <head> |
| 8 <meta name="viewport" content="initial-scale=1.0, user-scalable=no"> |
| 9 <meta charset="UTF-8"> |
| 10 <title>Google Maps Dart API v3 Example: Directions Complex with |
| 11 Proxy Objects</title> |
| 12 <link href="directions.css" |
| 13 rel="stylesheet" type="text/css"> |
| 14 <script src="https://maps.googleapis.com/maps/api/js?sensor=false" type="tex
t/javascript"></script> |
| 15 <script type="application/dart" src="directions.dart"> |
| 16 </script> |
| 17 </head> |
| 18 <body> |
| 19 <div id="control"> |
| 20 <strong>Start:</strong> |
| 21 <select id="start"> |
| 22 <option value="aarhus, denmark">Aarhus, DK</option> |
| 23 <option value="london, uk">London, UK</option> |
| 24 <option value="mountain view, ca">Mountain View, CA</option> |
| 25 <option value="munich, de">Munich, DE</option> |
| 26 <option value="portland, or">Portland, OR</option> |
| 27 <option value="seattle, wa" selected>Seattle, WA</option> |
| 28 <option value="st. petersburg, russia">St. Petersburg, RU</option> |
| 29 </select> |
| 30 <strong>End:</strong> |
| 31 <select id="end"> |
| 32 <option value="aarhus, denmark">Aarhus, DK</option> |
| 33 <option value="london, uk">London, UK</option> |
| 34 <option value="mountain view, ca">Mountain View, CA</option> |
| 35 <option value="munich, de">Munich, DE</option> |
| 36 <option value="portland, or">Portland, OR</option> |
| 37 <option value="seattle, wa" selected>Seattle, WA</option> |
| 38 <option value="st. petersburg, russia">St. Petersburg, RU</option> |
| 39 </select> |
| 40 </div> |
| 41 <div id="directions_panel"></div> |
| 42 <div id="map_canvas"></div> |
| 43 <script src="packages/browser/dart.js"></script> |
| 44 <script src="packages/browser/interop.js"></script> |
| 45 </body> |
| 46 </html> |
| OLD | NEW |