latlong icon indicating copy to clipboard operation
latlong copied to clipboard

A latitude & longitude selector

Results 19 latlong issues
Sort by recently updated
recently updated
newest added

Hello, here's my case: Laravel-admin: v1.8.19 laravel-admin-ext/latlong: v1.2.4 My code: admin.php ``` 'latlong' => [ // Whether to enable this extension, defaults to true 'enable' => true, // Specify the...

在地点搜索框中搜索位置,地图不变化,始终定位在本市

Laravel 8.51.0 laravel-admin:1.8.13 latlong:1.2.4 当使用以下命令时,所传递的值不会被正常显示,而是直接将定位跳转到当前电脑定位 $show->field('Position')->latlong('dizhi.lat_column', 'dizhi.long_column', $height = 400, $zoom = 16);

Fix yandex api url: add api_key

"laravel-admin-ext/latlong": "1.2", "laravel-admin": "1.8.11", "laravel": "^5.7", 已经跑 php artisan view:clear 了。还是有这个问题 ErrorException In 18d91ce0cba1ef8f7ac4eda2b84c2bde221bda8b.php line 17 : Undefined variable: provider (View: C:\xampp\htdocs\vending\vendor\laravel-admin-ext\latlong\resources\views\latlong.blade.php) (View: C:\xampp\htdocs\vending\vendor\laravel-admin-ext\latlong\resources\views\latlong.blade.php) (View: C:\xampp\htdocs\vending\vendor\laravel-admin-ext\latlong\resources\views\latlong.blade.php)

现在为了点选坐标,会被搜索结果的坐标图标遮挡,导致无法点选精确。

I wonder how can I disable the map from all interactions (selecting, zooming). I want the map to stay stationary.

环境: "require": { "php": "^7.1.3", "encore/laravel-admin": "^1.8", "fideloper/proxy": "^4.0", "laravel-admin-ext/latlong": "^1.2", "laravel/framework": "5.8.*", "laravel/tinker": "^1.0", "overtrue/laravel-lang": "~3.0", "symfony/translation": "4.3.8" }, 包代码: /** * {@inheritdoc} * * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View|string */ public...

**环境:PHP 7.4.7 + LA 1.8.1** ### 报错信息 ``` Trying to access array offset on value of type null (View: /code/vendor/laravel-admin-ext/latlong/resources/views/latlong.blade.php) (View: /code/vendor/laravel-admin-ext/latlong/resources/views/latlong.blade.php) ``` 经调试,问题出在 [这里](https://github.com/laravel-admin-extensions/latlong/blob/master/resources/views/latlong.blade.php#L11) $value 是 null,直接使用 $value['lat'],下边 14...

$form->hasMany('mixing_station','搅拌站', function (Form\NestedForm $form) { $form->text('title', '搅拌站名称')->rules('max:45')->required(); $form->latlong('latitude', 'longitude', '坐标') ->default(['lat' => 30.807874, 'lng' => 108.408663]) ->required(); }); 新增数量大于1后,坐标不渲染