aws.location.get_map_sprites
Example SQL Queries
SELECT * FROMaws.location.get_map_spritesWHERE"map_name" = 'VALUE'AND "file_name" = 'VALUE';Description
Retrieves the sprite sheet corresponding to a map resource. The sprite sheet is a PNG image paired with a JSON document describing the offsets of individual icons that will be displayed on a rendered map.
Table Definition
| Column Name | Column Data Type |
|---|---|
| file_name Required Input Column The name of the sprite file. Use the following file names for the sprite sheet:
For the JSON document containing image offsets. Use the following file names:
| VARCHAR |
| map_name Required Input Column The map resource associated with the sprite file. | VARCHAR |
| key Input Column The optional API key to authorize the request. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| blob Contains the body of the sprite sheet or JSON offset file. | BLOB |
| cache_control The HTTP Cache-Control directive for the value. | VARCHAR |
| content_type The content type of the sprite sheet and offsets. For example, the sprite sheet content type is image/png, and the sprite offset JSON document is application/json. | VARCHAR |