Download the PHP package pigochu/yii2-jquery-locationpicker without Composer
On this page you can find all versions of the php package pigochu/yii2-jquery-locationpicker. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download pigochu/yii2-jquery-locationpicker
More information about pigochu/yii2-jquery-locationpicker
Files in pigochu/yii2-jquery-locationpicker
Package yii2-jquery-locationpicker
Short Description jquery location picker widget for yii2
License MIT
Homepage https://github.com/pigochu/yii2-jquery-locationpicker
Informations about the package yii2-jquery-locationpicker
jquery location picker widget for yii2
The widget implement jquery-locationpicker-plugin
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require pigochu/yii2-jquery-locationpicker ">=0.2.0"
or add
"pigochu/yii2-jquery-locationpicker": ">=0.2.0"
to the require section of your composer.json
file.
Basic Usage for Test
<?= \pigolab\locationpicker\LocationPickerWidget::widget(); ?>
Binding UI with the widget
This sample is transformed via http://logicify.github.io/jquery-locationpicker-plugin/#usage
Location: <input type="text" id="us2-address" style="width: 200px"/>
<br>
Radius: <input type="text" id="us2-radius"/>
<br>
Lat.: <input type="text" id="us2-lat"/>
<br>
Long.: <input type="text" id="us2-lon"/>
<br>
CoordinatesPicker
CoordinatesPicker let you get coordinates in ActiveForm , In addition I implemented some features not in original jquery-locationpicker-plugin :
- enable/disable search box , search box will overlay on map
- enable/disable all googlemap's control
Example :
Get coordinates :
Default valueTemplate is '{latitude},{longtitude} , So we will get resulit like : '25.023308046766083,121.46041916878664'
We can convert it via explode() :
Deprecated options : enableMapTypeControl
Since version 0.2.0 , don't use 'enableMapTypeControl' , I added 'mapOptions' for set googlemap options. You can enable/disable all controlls or set control's style , position now.
Example : enable rotateControl , streetViewControl , mapTypeControl and set style/position
Please visit GoogleMaps Full Control document : https://developers.google.com/maps/documentation/javascript/controls
Other DocumentS
- CoordinatesPicker with two fields Model
- How to use PHP trait do simple conversion MySQL Spatial Type between ActiveRecord