PHP code example of pigochu / yii2-jquery-locationpicker
1. Go to this page and download the library: Download pigochu/yii2-jquery-locationpicker library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
pigochu / yii2-jquery-locationpicker example snippets
use yii\web\JsExpression;
echo \pigolab\locationpicker\LocationPickerWidget::widget([
'key' => 'abcabcabcabc ...', // ght
] ,
'clientOptions' => [
'location' => [
'latitude' => 46.15242437752303 ,
'longitude' => 2.7470703125,
],
'radius' => 300,
'addressFormat' => 'street_number',
'inputBinding' => [
'latitudeInput' => new JsExpression("$('#us2-lat')"),
'longitudeInput' => new JsExpression("$('#us2-lon')"),
'radiusInput' => new JsExpression("$('#us2-radius')"),
'locationNameInput' => new JsExpression("$('#us2-address')")
]
]
]);
echo $form->field($model, 'coordinates')->widget('\pigolab\locationpicker\CoordinatesPicker' , [
'key' => 'abcabcabc...' , // h: 100%; height: 400px', // map canvas width and height
] ,
'enableSearchBox' => true , // Optional , default is true
'searchBoxOptions' => [ // searchBox html attributes
'style' => 'width: 300px;', // Optional , default width and height defined in css coordinates-picker.css
],
'searchBoxPosition' => new JsExpression('google.maps.ControlPosition.TOP_LEFT'), // optional , default is TOP_LEFT
'mapOptions' => [
// google map options
// visit https://developers.google.com/maps/documentation/javascript/controls for other options
'mapTypeControl' => true, // Enable Map Type Control
'mapTypeControlOptions' => [
'style' => new JsExpression('google.maps.MapTypeControlStyle.HORIZONTAL_BAR'),
'position' => new JsExpression('google.maps.ControlPosition.TOP_LEFT'),
],
'streetViewControl' => true, // Enable Street View Control
],
'clientOptions' => [
// jquery-location-picker options
'radius' => 300,
'addressFormat' => 'street_number',
]
]);
list($latitude,$longitude) = explode(',' , $model->coordinates);
echo $form->field($model, 'coordinates')->widget('\pigolab\locationpicker\CoordinatesPicker' , [
'clientOptions' => [ 'zoom' => 20 ], // rotateControl will display when zoom is 20
// .... other options ...
'mapOptions' => [
// set google map optinos
'rotateControl' => true,
'scaleControl' => false,
'streetViewControl' => true,
'mapTypeId' => new JsExpression('google.maps.MapTypeId.SATELLITE'),
'heading'=> 90,
'tilt' => 45 ,
'mapTypeControl' => true,
'mapTypeControlOptions' => [
'style' => new JsExpression('google.maps.MapTypeControlStyle.HORIZONTAL_BAR'),
'position' => new JsExpression('google.maps.ControlPosition.TOP_CENTER'),
]
]
]);