import type * as location from "@distilled.cloud/aws/location"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Map as LocationMap } from "./Map.ts"; /** * `GetMapGlyphs` request with `MapName` injected from the bound * resource. */ export interface GetMapGlyphsRequest extends Omit { } /** * Retrieves a glyph range (font PBF) used to render map labels. * * Runtime binding for the `GetMapGlyphs` operation (IAM action * `geo:GetMapGlyphs`), scoped to one {@link LocationMap | Map}. Provide the implementation with * `Effect.provide(AWS.Location.GetMapGlyphsHttp)`. * * ### Serving Map Assets * **Example:** Serve Glyphs * ```typescript * const getGlyphs = yield* Location.GetMapGlyphs(map); * * const glyphs = yield* getGlyphs({ * FontStack: "Arial Regular", * FontUnicodeRange: "0-255.pbf", * }); * // glyphs.Blob → protobuf-encoded glyph bytes * ``` * * @binding */ export interface GetMapGlyphs extends Binding.Service Effect.Effect<(request: GetMapGlyphsRequest) => Effect.Effect>> { } export declare const GetMapGlyphs: GetMapGlyphs; //# sourceMappingURL=GetMapGlyphs.d.ts.map