CGCS2000 map service image provider class. EPSG4490 or 4326 static tile service used to overlay ArcGIS. This class is provided because Cesium's native ArcGIS map service image provider class
ArcGisMapServerImageryProviderdoes not support the loading of these two types of static tile services.
| Name | Type | Description | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Object |
Objects have the following properties:
|
Members
-
readonlycredit : Credit
-
Get a credit showing that the map service is active.
-
Gets whether the image provided by the image service provider contains an alpha channel.
-
Get the layers contained in the image provided by the image service provider.
-
Get the maximum level of data.
-
Get the minimum level of data.
-
Get the proxy used by the map service.
-
Gets whether the map service provider is ready.
-
Get the Promise object of the map service provider.
-
readonlyrectangle : Rectangle
-
Get the extent of the map.
-
Gets the discarding policy for map tiles.
-
Get slice height.
-
Get the slice width.
-
readonlytilingScheme : TilingScheme
-
Get the segmentation strategy used by the service provider.
-
Get the authentication information token of the map service.
-
Get the URL of the map service.
-
Get whether to use the tiles pre-cached by CGCS2000MapServerImageryProvider.
-
Gets the zoom offset of the image provided by this image service provider.
Methods
-
getTileCredits(x, y, level) → Array.<Credit>
-
Gets the credits to be displayed when a given tile is displayed.
Name Type Description xNumber The tile X coordinate. yNumber The tile Y coordinate. levelNumber The tile level; Returns:
The credits to be displayed when the tile is displayed.Throws:
-
DeveloperError :
getTileCreditsmust not be called before the imagery provider is ready.
-
-
pickFeatures(x, y, level, longitude, latitude) → Promise.<Array.<ImageryLayerFeatureInfo>>|undefined
-
/** Asynchronously determines what features, if any, are located at a given longitude and latitude within a tile. This function should not be called before
ImageryProvider#readyreturns true.Name Type Description xNumber The tile X coordinate. yNumber The tile Y coordinate. levelNumber The tile level. longitudeNumber The longitude at which to pick features. latitudeNumber The latitude at which to pick features. Returns:
A promise for the picked features that will resolve when the asynchronous picking completes. The resolved value is an array ofImageryLayerFeatureInfoinstances. The array may be empty if no features are found at the given location.Throws:
-
DeveloperError :
pickFeaturesmust not be called before the imagery provider is ready.
-
