dev-master
9999999-devYii 2 Geocoder with Yandex Geocoder API and Google Maps API
MIT
The Requires
The Development Requires
by Mikhail Maklashov
yii2 geocoder deka6pb yii2-geocoder
Yii 2 Geocoder with Yandex Geocoder API and Google Maps API
This module need to find the coordinates by address using The Google Maps Geocoding API or Yandex Geocoder API., (*1)
This document will guide you through the process of installing Yii2-geocoder using composer., (*2)
Add "deka6pb/yii2-geocoder": "*"
to the require section of your composer.json file and run
composer update
to download and install Yii2-autoparser., (*3)
Geocoders: - Geocoder::TYPE_GOOGLE - Geocoder::TYPE_YANDEX
Methods:, (*4)
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 = [])
$address = "2707 Congress St., San Diego, CA 92110"; /* @var CoderInterface $coder */ $coder = Geocoder::build(Geocoder::TYPE_GOOGLE); $object = $coder::findOneByAddress($address);
Yii 2 Geocoder with Yandex Geocoder API and Google Maps API
MIT
yii2 geocoder deka6pb yii2-geocoder