【发布时间】:2021-02-05 09:45:03
【问题描述】:
在我的角度应用程序中,我创建了传单地图,在传单地图上,我以重叠的方式创建了另外两个面板数据,并且我在地图上创建了半径为 5 公里的圆圈。但我的问题是面板覆盖了传单地图上的圆圈
所以我的要求是将地图的中心位置,即圆圈移动到顶部位置(顶部中间),而不是只有圆圈可见,否则它将被地图上的面板覆盖。
component.ts
map = L.map('map').setView([13.0827, 80.2707], 12);
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
L.control.zoom({
position: 'bottomright',
}).addTo(map);
我是传单地图的新手,谁能帮我解决这个问题。
【问题讨论】:
标签: leaflet openstreetmap leaflet.draw angular-leaflet-directive leaflet.markercluster