diff --git a/src/Faker/Provider/me_ME/Address.php b/src/Faker/Provider/me_ME/Address.php index a734ca05..90854c46 100644 --- a/src/Faker/Provider/me_ME/Address.php +++ b/src/Faker/Provider/me_ME/Address.php @@ -108,4 +108,21 @@ class Address extends \Faker\Provider\Address { return static::randomElement(static::$cityNames); } + + /** + * @example '77.147489' + */ + public static function latitude() + { + return number_format(mt_rand(42430000, 42450000)/1000000, 6); + } + + /** + * @example '86.211205' + */ + public static function longitude() + { + return number_format(mt_rand(19260000, 19270000)/1000000, 6); + } + }