--- layout: page title: "Map Card" sidebar_label: Map description: "A card that allows you to display entities on a map" date: 2018-07-08 10:28 +00:00 sidebar: true comments: false sharing: true footer: true --- A card that allows you to display entities on a map.

Screenshot of the map card Screenshot of the map card.

{% configuration %} type: required: true description: map type: string entities: required: true description: List of entity IDs. type: list title: required: false description: The card title. type: string aspect_ratio: required: false description: "Forces the height of the image to be a ratio of the width. You may enter a value such as: `16x9`, `16:9`, `1.78`." type: string default_zoom: required: false description: The default zoom level of the map. type: integer default: 14 (or whatever zoom level is required to fit all visible markers) {% endconfiguration %}

Only entities that have latitude and longitude attributes will be displayed on the map.

The `default_zoom` value will be ignored if it is set higher than the current zoom level after fitting all visible entity markers in the map window. In other words, this can only be used to zoom the map _out_ by default.

## {% linkable_title Examples %} ```yaml - type: map aspect_ratio: 16:9 default_zoom: 8 entities: - device_tracker.demo_paulus - zone.home ```