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

Side by Side Diff: lib/google_maps_api.dart

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 years, 1 month 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
« no previous file with comments | « lib/google_map_search.dart ('k') | lib/google_signin.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // DO NOT EDIT: auto-generated with `pub run custom_element_apigen:update` 1 // DO NOT EDIT: auto-generated with `pub run custom_element_apigen:update`
2 2
3 /// Dart API for the polymer element `google_maps_api`. 3 /// Dart API for the polymer element `google_maps_api`.
4 @HtmlImport('google_maps_api_nodart.html') 4 @HtmlImport('google_maps_api_nodart.html')
5 library polymer_elements.lib.src.google_apis.google_maps_api; 5 library polymer_elements.lib.src.google_apis.google_maps_api;
6 6
7 import 'dart:html'; 7 import 'dart:html';
8 import 'dart:js' show JsArray, JsObject; 8 import 'dart:js' show JsArray, JsObject;
9 import 'package:web_components/web_components.dart'; 9 import 'package:web_components/web_components.dart';
10 import 'package:polymer_interop/polymer_interop.dart'; 10 import 'package:polymer_interop/polymer_interop.dart';
(...skipping 30 matching lines...) Expand all
41 set clientId(String value) { jsElement[r'clientId'] = value; } 41 set clientId(String value) { jsElement[r'clientId'] = value; }
42 42
43 /// The localized language to load the Maps API with. For more information 43 /// The localized language to load the Maps API with. For more information
44 /// see https://developers.google.com/maps/documentation/javascript/basics#Lan guage 44 /// see https://developers.google.com/maps/documentation/javascript/basics#Lan guage
45 /// 45 ///
46 /// Note: the Maps API defaults to the preffered language setting of the brows er. 46 /// Note: the Maps API defaults to the preffered language setting of the brows er.
47 /// Use this parameter to override that behavior. 47 /// Use this parameter to override that behavior.
48 String get language => jsElement[r'language']; 48 String get language => jsElement[r'language'];
49 set language(String value) { jsElement[r'language'] = value; } 49 set language(String value) { jsElement[r'language'] = value; }
50 50
51 /// The libraries to load with this map. For more information
52 /// see https://developers.google.com/maps/documentation/javascript/libraries.
53 String get libraries => jsElement[r'libraries'];
54 set libraries(String value) { jsElement[r'libraries'] = value; }
55
56 /// Name of event fired when library is loaded and available. 51 /// Name of event fired when library is loaded and available.
57 String get notifyEvent => jsElement[r'notifyEvent']; 52 String get notifyEvent => jsElement[r'notifyEvent'];
58 set notifyEvent(String value) { jsElement[r'notifyEvent'] = value; } 53 set notifyEvent(String value) { jsElement[r'notifyEvent'] = value; }
59 54
60 /// If true, sign-in is enabled. 55 /// If true, sign-in is enabled.
61 /// See https://developers.google.com/maps/documentation/javascript/signedin#e nable_sign_in 56 /// See https://developers.google.com/maps/documentation/javascript/signedin#e nable_sign_in
62 bool get signedIn => jsElement[r'signedIn']; 57 bool get signedIn => jsElement[r'signedIn'];
63 set signedIn(bool value) { jsElement[r'signedIn'] = value; } 58 set signedIn(bool value) { jsElement[r'signedIn'] = value; }
64 59
65 /// Version of the Maps API to use. 60 /// Version of the Maps API to use.
66 String get version => jsElement[r'version']; 61 String get version => jsElement[r'version'];
67 set version(String value) { jsElement[r'version'] = value; } 62 set version(String value) { jsElement[r'version'] = value; }
68 63
69 String get libraryUrl => jsElement[r'libraryUrl']; 64 String get libraryUrl => jsElement[r'libraryUrl'];
70 set libraryUrl(String value) { jsElement[r'libraryUrl'] = value; } 65 set libraryUrl(String value) { jsElement[r'libraryUrl'] = value; }
71 66
72 String get mapsUrl => jsElement[r'mapsUrl']; 67 String get mapsUrl => jsElement[r'mapsUrl'];
73 set mapsUrl(String value) { jsElement[r'mapsUrl'] = value; } 68 set mapsUrl(String value) { jsElement[r'mapsUrl'] = value; }
74 } 69 }
OLDNEW
« no previous file with comments | « lib/google_map_search.dart ('k') | lib/google_signin.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698