vaszloy / yii2-geocoder
Yii 2 Geocoder with Yandex Geocoder API and Google Maps API
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 5
Type:yii2-extension
Requires
- php: >=7.1
- php-curl-class/php-curl-class: *
- yiisoft/yii2: ~2.0
Requires (Dev)
This package is not auto-updated.
Last update: 2025-03-23 10:57:32 UTC
README
Description
This module need to find the coordinates by address using The Google Maps Geocoding API or Yandex Geocoder API.
Installation
This document will guide you through the process of installing Yii2-geocoder using composer.
Download Yii2-geocoder using composer
Add "deka6pb/yii2-geocoder": "*"
to the require section of your composer.json file and run
composer update
to download and install Yii2-autoparser.
Geocoders:
- Geocoder::TYPE_GOOGLE
- Geocoder::TYPE_YANDEX
Methods:
findByAddress($address, array $params = [], $results = 10)
findOneByAddress($address, array $params = [])
findByPoint(Point $point, $kind, Point $radius = null, array $params = [], $results = 10)
findByOnePoint(Point $point, $kind, Point $radius = null, array $params = [])
For example:
$address = "2707 Congress St., San Diego, CA 92110";
/* @var CoderInterface $coder */
$coder = Geocoder::build(Geocoder::TYPE_GOOGLE);
$object = $coder::findOneByAddress($address);