Sauf indication contraire, le contenu de cette page est régi par une licence Creative Commons Attribution 4.0, et les échantillons de code sont régis par une licence Apache 2.0. Pour en savoir plus, consultez les Règles du site Google Developers. Java est une marque déposée d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2025/07/26 (UTC).
[[["Facile à comprendre","easyToUnderstand","thumb-up"],["J'ai pu résoudre mon problème","solvedMyProblem","thumb-up"],["Autre","otherUp","thumb-up"]],[["Il n'y a pas l'information dont j'ai besoin","missingTheInformationINeed","thumb-down"],["Trop compliqué/Trop d'étapes","tooComplicatedTooManySteps","thumb-down"],["Obsolète","outOfDate","thumb-down"],["Problème de traduction","translationIssue","thumb-down"],["Mauvais exemple/Erreur de code","samplesCodeIssue","thumb-down"],["Autre","otherDown","thumb-down"]],["Dernière mise à jour le 2025/07/26 (UTC)."],[[["\u003cp\u003e\u003ccode\u003eMaps.Format\u003c/code\u003e is an enum used to specify the format of a map image.\u003c/p\u003e\n"],["\u003cp\u003eAvailable formats include PNG (8-bit and 32-bit), GIF, and JPEG (including a non-progressive option).\u003c/p\u003e\n"],["\u003cp\u003eThe enum is called using the syntax \u003ccode\u003eMaps.Format.<format_property>\u003c/code\u003e, such as \u003ccode\u003eMaps.Format.PNG\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eMore details about image formats can be found in the Google Static Maps API documentation.\u003c/p\u003e\n"]]],["The `Maps.Format` enum defines the image format for maps, accessed via its parent class, name, and property (e.g., `Maps.Format.PNG`). Available formats include `PNG`, `PNG8`, `PNG32` (all PNG variations), `GIF`, `JPG`, and `JPG_BASELINE` (non-progressive JPEG). Each property represents a different image encoding, with the `Type` specified as `Enum` and providing information on whether the image is 8 or 32 bit.\n"],null,["Format\n\nAn enum representing the format of the map image.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nMaps.Format.PNG`.\n\nSee also\n\n- [Google Static Maps API](/maps/documentation/staticmaps#ImageFormats) \n\nProperties\n\n| Property | Type | Description |\n|----------------|--------|------------------------------|\n| `PNG` | `Enum` | 8-bit PNG format. |\n| `PNG8` | `Enum` | 8-bit PNG format. |\n| `PNG32` | `Enum` | 32-bit PNG format. |\n| `GIF` | `Enum` | GIF format. |\n| `JPG` | `Enum` | JPEG format. |\n| `JPG_BASELINE` | `Enum` | Non-progressive JPEG format. |"]]