public class Mapsengine extends AbstractGoogleJsonClient
The Google Maps Engine API allows developers to store and query geospatial vector and raster data.
For more information about this service, see the API Documentation
This service uses MapsengineRequestInitializer to initialize global parameters via its
Mapsengine.Builder.
| Modifier and Type | Class and Description |
|---|---|
class |
Mapsengine.Assets
The "assets" collection of methods.
|
static class |
Mapsengine.Builder
Builder for
Mapsengine. |
class |
Mapsengine.Layers
The "layers" collection of methods.
|
class |
Mapsengine.Maps
The "maps" collection of methods.
|
class |
Mapsengine.Projects
The "projects" collection of methods.
|
class |
Mapsengine.RasterCollections
The "rasterCollections" collection of methods.
|
class |
Mapsengine.Rasters
The "rasters" collection of methods.
|
class |
Mapsengine.Tables
The "tables" collection of methods.
|
| Modifier and Type | Field and Description |
|---|---|
static String |
DEFAULT_BASE_URL
The default encoded base URL of the service.
|
static String |
DEFAULT_ROOT_URL
The default encoded root URL of the service.
|
static String |
DEFAULT_SERVICE_PATH
The default encoded service path of the service.
|
| Constructor and Description |
|---|
Mapsengine(HttpTransport transport,
JsonFactory jsonFactory,
HttpRequestInitializer httpRequestInitializer)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
Mapsengine.Assets |
assets()
An accessor for creating requests from the Assets collection.
|
protected void |
initialize(AbstractGoogleClientRequest<?> httpClientRequest) |
Mapsengine.Layers |
layers()
An accessor for creating requests from the Layers collection.
|
Mapsengine.Maps |
maps()
An accessor for creating requests from the Maps collection.
|
Mapsengine.Projects |
projects()
An accessor for creating requests from the Projects collection.
|
Mapsengine.RasterCollections |
rasterCollections()
An accessor for creating requests from the RasterCollections collection.
|
Mapsengine.Rasters |
rasters()
An accessor for creating requests from the Rasters collection.
|
Mapsengine.Tables |
tables()
An accessor for creating requests from the Tables collection.
|
getJsonFactory, getObjectParserbatch, batch, getApplicationName, getBaseUrl, getGoogleClientRequestInitializer, getRequestFactory, getRootUrl, getServicePath, getSuppressPatternChecks, getSuppressRequiredParameterCheckspublic static final String DEFAULT_ROOT_URL
public static final String DEFAULT_SERVICE_PATH
public static final String DEFAULT_BASE_URL
public Mapsengine(HttpTransport transport, JsonFactory jsonFactory, HttpRequestInitializer httpRequestInitializer)
Use Mapsengine.Builder if you need to specify any of the optional parameters.
transport - HTTP transport, which should normally be:
com.google.api.client.extensions.appengine.http.UrlFetchTransportnewCompatibleTransport from
com.google.api.client.extensions.android.http.AndroidHttpGoogleNetHttpTransport
jsonFactory - JSON factory, which may be:
com.google.api.client.json.jackson2.JacksonFactorycom.google.api.client.json.gson.GsonFactorycom.google.api.client.extensions.android.json.AndroidJsonFactoryhttpRequestInitializer - HTTP request initializer or null for noneprotected void initialize(AbstractGoogleClientRequest<?> httpClientRequest) throws IOException
initialize in class AbstractGoogleClientIOExceptionpublic Mapsengine.Assets assets()
The typical use is:
Mapsengine mapsengine = new Mapsengine(...);Mapsengine.Assets.List request = mapsengine.assets().list(parameters ...)
public Mapsengine.Layers layers()
The typical use is:
Mapsengine mapsengine = new Mapsengine(...);Mapsengine.Layers.List request = mapsengine.layers().list(parameters ...)
public Mapsengine.Maps maps()
The typical use is:
Mapsengine mapsengine = new Mapsengine(...);Mapsengine.Maps.List request = mapsengine.maps().list(parameters ...)
public Mapsengine.Projects projects()
The typical use is:
Mapsengine mapsengine = new Mapsengine(...);Mapsengine.Projects.List request = mapsengine.projects().list(parameters ...)
public Mapsengine.RasterCollections rasterCollections()
The typical use is:
Mapsengine mapsengine = new Mapsengine(...);Mapsengine.RasterCollections.List request = mapsengine.rasterCollections().list(parameters ...)
public Mapsengine.Rasters rasters()
The typical use is:
Mapsengine mapsengine = new Mapsengine(...);Mapsengine.Rasters.List request = mapsengine.rasters().list(parameters ...)
public Mapsengine.Tables tables()
The typical use is:
Mapsengine mapsengine = new Mapsengine(...);Mapsengine.Tables.List request = mapsengine.tables().list(parameters ...)