---
title: "standard(elevation:emphasis:pointsOfInterest:showsTraffic:)"
framework: mapkit
role: symbol
role_heading: Type Method
path: "mapkit/mapstyle/standard(elevation:emphasis:pointsofinterest:showstraffic:)"
---

# standard(elevation:emphasis:pointsOfInterest:showsTraffic:)

Creates a standard map style that includes the elevation, point of interest, and traffic characteristics you specify.

## Declaration

```swift
static func standard(elevation: MapStyle.Elevation = .automatic, emphasis: MapStyle.StandardEmphasis = .automatic, pointsOfInterest: PointOfInterestCategories = .all, showsTraffic: Bool = false) -> MapStyle
```

## Parameters

- `elevation`: One of the doc://com.apple.mapkit/documentation/MapKit/MapStyle/Elevation values that determines whether the framework renders map elevation.
- `emphasis`: One of the doc://com.apple.mapkit/documentation/MapKit/MapStyle/StandardEmphasis values that controls how the framework emphasizes map features.
- `pointsOfInterest`: A collection of doc://com.apple.mapkit/documentation/MapKit/PointOfInterestCategories displayed on the map.
- `showsTraffic`: A Boolean value that indicates whether the map displays traffic.

## Return Value

Return Value A MapStyle with the configuration you specified.

## See Also

### Creating map styles

- [hybrid(elevation:pointsOfInterest:showsTraffic:)](mapkit/mapstyle/hybrid(elevation:pointsofinterest:showstraffic:).md)
- [imagery(elevation:)](mapkit/mapstyle/imagery(elevation:).md)
- [MapStyle.Elevation](mapkit/mapstyle/elevation.md)
- [MapStyle.StandardEmphasis](mapkit/mapstyle/standardemphasis.md)
