diff --git a/src/Provider/it_IT/Address.php b/src/Provider/it_IT/Address.php index b9930ff820..1071f56ac6 100644 --- a/src/Provider/it_IT/Address.php +++ b/src/Provider/it_IT/Address.php @@ -94,4 +94,19 @@ public static function stateAbbr() { return static::randomElement(static::$stateAbbr); } + + /** + * Coordinates inside the border of Italy + * + * @example array('36.653819', '18.524718') + * + * @return array | latitude, longitude + */ + public static function localCoordinates(): array + { + return [ + 'latitude' => static::latitude(36.650000, 47.100000), + 'longitude' => static::longitude(6.630000, 18.520000), + ]; + } }