With angular cesium you can define your map provider in a declarative way using ac-map-layer-provider
:
map-imagery.component.html<ac-map-layer-provider[provider]="MapLayerProviderOptions.ArcGisMapServer"[options]="{url : 'https://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer'}"></ac-map-layer-provider>
All cesium imagery map layers are supported , defined with [provider]
according to the MapLayerProviderOptions
enum
Pass additional configuration to [options]
. url
is mandatory.
Support multi map layers, map ordering and map image layer configuration.
Check out usage example from our demo here