P
P
prrrrrrr2020-05-12 11:13:21
Geolocation
prrrrrrr, 2020-05-12 11:13:21

Are there free location services?

I tried a bunch of different location services (country, city), as a result, after a couple of days they start to fall off and ask for money. Tell me, are there any free services for determining the location? and if so, which ones?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
B
bkosun, 2020-05-12
@prrrrrrr

Use GeoLite2:
https://dev.maxmind.com/geoip/geoip2/geolite2/

$record = geoip_record_by_name($address); // хост или IP-адрес

Array
(
    [continent_code] => NA
    [country_code] => US
    [country_code3] => USA
    [country_name] => United States
    [region] => CA
    [city] => Marina Del Rey
    [postal_code] => 
    [latitude] => 33.9776992798
    [longitude] => -118.435096741
    [dma_code] => 803
    [area_code] => 310
)

https://www.php.net/manual/en/book.geoip.php
https://pecl.php.net/package/geoip
https://dev.maxmind.com/geoip/legacy/downloadable/
https: //www.php.net/manual/ru/function.geoip-recor...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question