---
title: "CLLocationCoordinate2DMake(_:_:)"
framework: corelocation
role: symbol
role_heading: Function
path: "corelocation/cllocationcoordinate2dmake(_:_:)"
---

# CLLocationCoordinate2DMake(_:_:)

Formats a latitude and longitude value into a coordinate data structure format.

## Declaration

```swift
func CLLocationCoordinate2DMake(_ latitude: CLLocationDegrees, _ longitude: CLLocationDegrees) -> CLLocationCoordinate2D
```

## Parameters

- `latitude`: The latitude for the new coordinate.
- `longitude`: The longitude for the new coordinate.

## Return Value

Return Value A coordinate structure encompassing the latitude and longitude values.

## See Also

### Creating a location coordinate

- [init()](corelocation/cllocationcoordinate2d/init().md)
- [init(latitude:longitude:)](corelocation/cllocationcoordinate2d/init(latitude:longitude:).md)
