| OLD | NEW |
| 1 library googleapis.mapsengine.v1; | 1 library googleapis.mapsengine.v1; |
| 2 | 2 |
| 3 import "dart:core" as core; | 3 import "dart:core" as core; |
| 4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
| 5 import "dart:async" as async; | 5 import "dart:async" as async; |
| 6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
| 7 | 7 |
| 8 import "package:crypto/crypto.dart" as crypto; | 8 import "package:crypto/crypto.dart" as crypto; |
| 9 import 'package:http/http.dart' as http; | 9 import 'package:http/http.dart' as http; |
| 10 import '../src/common_internal.dart' as common_internal; | 10 import '../src/common_internal.dart' as common_internal; |
| 11 import '../common/common.dart' as common; | 11 import '../common/common.dart' as common; |
| 12 | 12 |
| 13 export '../common/common.dart' show ApiRequestError; | 13 export '../common/common.dart' show ApiRequestError; |
| 14 export '../common/common.dart' show DetailedApiRequestError; | 14 export '../common/common.dart' show DetailedApiRequestError; |
| 15 | 15 |
| 16 /** | 16 /** |
| 17 * The Google Maps Engine API allows developers to store and query geospatial | 17 * The Google Maps Engine API allows developers to store and query geospatial |
| 18 * vector and raster data. | 18 * vector and raster data. |
| 19 */ | 19 */ |
| 20 class MapsengineApi { | 20 class MapsengineApi { |
| 21 /** View and manage your Google Maps Engine data */ | 21 /** View and manage your Google My Maps data */ |
| 22 static const MapsengineScope = "https://www.googleapis.com/auth/mapsengine"; | 22 static const MapsengineScope = "https://www.googleapis.com/auth/mapsengine"; |
| 23 | 23 |
| 24 /** View your Google Maps Engine data */ | 24 /** View your Google My Maps data */ |
| 25 static const MapsengineReadonlyScope = "https://www.googleapis.com/auth/mapsen
gine.readonly"; | 25 static const MapsengineReadonlyScope = "https://www.googleapis.com/auth/mapsen
gine.readonly"; |
| 26 | 26 |
| 27 | 27 |
| 28 final common_internal.ApiRequester _requester; | 28 final common_internal.ApiRequester _requester; |
| 29 | 29 |
| 30 AssetsResourceApi get assets => new AssetsResourceApi(_requester); | 30 AssetsResourceApi get assets => new AssetsResourceApi(_requester); |
| 31 LayersResourceApi get layers => new LayersResourceApi(_requester); | 31 LayersResourceApi get layers => new LayersResourceApi(_requester); |
| 32 MapsResourceApi get maps => new MapsResourceApi(_requester); | 32 MapsResourceApi get maps => new MapsResourceApi(_requester); |
| 33 ProjectsResourceApi get projects => new ProjectsResourceApi(_requester); | 33 ProjectsResourceApi get projects => new ProjectsResourceApi(_requester); |
| 34 RasterCollectionsResourceApi get rasterCollections => new RasterCollectionsRes
ourceApi(_requester); | 34 RasterCollectionsResourceApi get rasterCollections => new RasterCollectionsRes
ourceApi(_requester); |
| (...skipping 8876 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8911 _json["max"] = max; | 8911 _json["max"] = max; |
| 8912 } | 8912 } |
| 8913 if (min != null) { | 8913 if (min != null) { |
| 8914 _json["min"] = min; | 8914 _json["min"] = min; |
| 8915 } | 8915 } |
| 8916 return _json; | 8916 return _json; |
| 8917 } | 8917 } |
| 8918 } | 8918 } |
| 8919 | 8919 |
| 8920 | 8920 |
| OLD | NEW |