fgh151 / yii2-latlng-finder
Find Latitude and Longitude using google maps
Installs: 42
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 5
Type:yii2-extension
Requires
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2024-10-28 22:45:01 UTC
README
Find Latitude and Longitude using Google Maps
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist fgh151/yii2-latlng-finder "dev-master"
or add
"fgh151/yii2-latlng-finder": "dev-master"
to the require section of your composer.json
file.
Usage
Once the extension is installed, simply use it in your code mentioned below. Click once on the map to the get the marker and coordinates then you can drag the marker around to the desired place on the map.
- Default usage
<div class="form-group"> <label class="control-label" for="lat">Latitude</label> <input class="form-control" type="text" name="lat" id="lat"> </div> <div class="form-group"> <label class="control-label" for="lng">Longitude</label> <input class="form-control" type="text" name="lng" id="lng"> </div> <div class="form-group"> <label class="control-label" for="zoom">Zoom</label> <input class="form-control" type="text" name="zoom" id="zoom"> </div> <?= \fgh151\latlngfinder\LatLngFinder::widget(); ?>
- Default usage without Zoom Field
<div class="form-group"> <label class="control-label" for="lat">Latitude</label> <input class="form-control" type="text" name="lat" id="lat"> </div> <div class="form-group"> <label class="control-label" for="lng">Longitude</label> <input class="form-control" type="text" name="lng" id="lng"> </div> <?= \fgh151\latlngfinder\LatLngFinder::widget([ 'enableZoom' => false // true, false ]); ?>
- Default usage with optional parameters
<div class="form-group"> <label class="control-label" for="lat">Latitude</label> <input class="form-control" type="text" name="lat" id="lat"> </div> <div class="form-group"> <label class="control-label" for="lng">Longitude</label> <input class="form-control" type="text" name="lng" id="lng"> </div> <div class="form-group"> <label class="control-label" for="zoom">Zoom</label> <input class="form-control" type="text" name="zoom" id="zoom"> </div> <?= \fgh151\latlngfinder\LatLngFinder::widget([ 'latAttribute' => 'lat', // Latitude text field id 'lngAttribute' => 'lng', // Longitude text field id 'zoomAttribute' => 'zoom', // Zoom text field id 'mapCanvasId' => 'map', // Map Canvas id 'mapWidth' => 450, // Map Canvas width 'mapHeight' => 300, // Map Canvas mapHeight 'defaultLat' => -34.397, // Default latitude for the map 'defaultLng' =>150.644, // Default Longitude for the map 'defaultZoom' => 8, // Default zoom for the map 'enableZoomField' => true, // True: for assigning zoom values to the zoom field, False: Do not assign zoom value to the zoom field ]); ?>
- Default usage with model
<?= $form->field($model, 'lat') ?> <?= $form->field($model, 'lng') ?> <?= $form->field($model, 'zoom') ?> <?= \fgh151\latlngfinder\LatLngFinder::widget([ 'model' => $model, // model object ]); ?>
- Default usage with model without zoom field
<?= $form->field($model, 'lat') ?> <?= $form->field($model, 'lng') ?> <?= \fgh151\latlngfinder\LatLngFinder::widget([ 'model' => $model, // model object 'enableZoom' => false // true, false ]); ?>
- Default usage with model and optional parameters
<?= $form->field($model, 'lat') ?> <?= $form->field($model, 'lng') ?> <?= $form->field($model, 'zoom') ?> <?= \fgh151\latlngfinder\LatLngFinder::widget([ 'model' => $model, // model object 'latAttribute' => 'lat', // Latitude attribute 'lngAttribute' => 'lng', // Longitude attribute 'zoomAttribute' => 'zoom', // Zoom text attribute 'mapCanvasId' => 'map', // Map Canvas id 'mapWidth' => 450, // Map Canvas width 'mapHeight' => 300, // Map Canvas mapHeight 'defaultLat' => -34.397, // Default latitude for the map 'defaultLng' =>150.644, // Default Longitude for the map 'defaultZoom' => 8, // Default zoom for the map 'enableZoomField' => true, // True: for assigning zoom values to the zoom field, False: Do not assign zoom value to the zoom field ]); ?>