嗨,我尝试在传单地图中设置maxbaounds,但是它不起作用。我的第一个问题是maxbounds停在我设置的边界之外吗?我遵循了这些示例,但是我的代码有问题
Leaflet maxBounds - bounds do not work
https://docs.mapbox.com/mapbox.js/example/v1.0.0/maxbounds/
我的代码
public function import( Request $request)
{
if ($request->hasFile('import_file')) {
Excel::import(new UsersImport, request()->file('import_file'));
}
return redirect('/')->with('success', 'All good!');
}
答案 0 :(得分:2)
在maxBounds
上使用L.map
来设置边界限制。
var map = L.map('map')
.setView([35.126411,33.429859], 9)
.setMaxBounds(bounds);
另外-不要将mapbox.js
与leaflet.js
混淆-它们是不同的。