2amigos / yii2-leaflet-geosearch-plugin
Yii2 LeafLet Plugin to provide support for address lookup (a.k.a. geocoding / geoseaching) to Leaflet.
Installs: 25 461
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 18
Forks: 6
Open Issues: 1
Language:JavaScript
Type:yii2-extension
Requires
Requires (Dev)
- phpunit/phpunit: 4.*
README
Yii 2 LeafletJs Plugin that adds support for address lookup (a.k.a. geocoding / geoseaching) to Leaflet. This Plugin works in conjunction with LeafLet library for Yii 2 framework.
Installation
The preferred way to install this extension is through composer.
Either run
composer require 2amigos/yii2-leaflet-geosearch-plugin:~1.0
or add
"2amigos/yii2-leaflet-geosearch-plugin" : "~1.0"
to the require section of your application's composer.json
file.
Usage
use dosamigos\leaflet\layers\TileLayer;
use dosamigos\leaflet\LeafLet;
use dosamigos\leaflet\types\LatLng;
use dosamigos\leaflet\plugins\geosearch\GeoSearch;
$center = new LatLng(['lat' => 39.67442740076734, 'lng' => 2.9347229003906246]);
$geoSearchPlugin = new GeoSearch([
'service' => GeoSearch::SERVICE_OPENSTREETMAP,
// uncomment following block to define custom labels
/*
'clientOptions' => [
'searchLabel' => 'enter address here',
'notFoundMessage' => 'no address found',
],
*/
]);
$tileLayer = new TileLayer([
'urlTemplate' => 'https://a.tile.openstreetmap.org/{z}/{x}/{y}.png',
'clientOptions' => [
'attribution' => 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors',
'subdomains' => '1234'
]
]);
$leafLet = new LeafLet([
'name' => 'geoMap',
'tileLayer' => $tileLayer,
'center' => $center,
'zoom' => 10,
'clientEvents' => [
// setting up one of the geo search events for fun
'geosearch_showlocation' => 'function(e){
console.log(e.target);
}'
]
]);
// add the plugin
$leafLet->installPlugin($geoSearchPlugin);
// run the widget (you can also use dosamigos\leaflet\widgets\Map::widget([...]))
echo $leafLet->widget();
Contributing
Please see CONTRIBUTING for details.
Credits
License
The BSD License (BSD). Please see License File for more information.
Web development has never been so fun!
www.2amigos.us