我想在 mapboxgl 视图中添加如下图标。使用 Angular2
当我单击图标时,它应该会自动切换样式(streets-v9,satelllite-v9)
我正在关注链接mapboxgl 示例
你看到这个 API 方法了吗? https://www.mapbox.com/mapbox-gl-js/api/#map#setstyle
有了它,您可以在单击图标或按下按钮或任何您想要的任何东西时为地图设置新样式。
以此为参考来构建:
https://jsfiddle.net/andi_lo/706pot8L/
mapboxgl.accessToken = 'pk.eyJ1IjoiZmFyYWRheTIiLCJhIjoiTUVHbDl5OCJ9.buFaqIdaIM3iXr1BOYKpsQ';
let map = new mapboxgl.Map({
container: 'map',
style: 'mapbox://styles/mapbox/streets-v9',
center: [-1.77, 52.73],
zoom: 3,
});
let icon = document.getElementById('icon');
icon.addEventListener('click', function(e) {
map.setStyle('mapbox://styles/mapbox/light-v9');
}, false)
#icon {
position: absolute;
top: 15px;
left: 15px;
color: black;
}
#map {
height: 500px;
}
<link href="https://api.tiles.mapbox.com/mapbox-gl-js/v0.38.0/mapbox-gl.css" rel="stylesheet"/>
<script src="https://api.tiles.mapbox.com/mapbox-gl-js/v0.38.0/mapbox-gl.js"></script>
<div id="map"></div>
<button id="icon">
Switch layers
</button>
你想要的是一个切换层的“控件”。Mapbox-GL-JS 不包含这样的东西,也没有被列为插件(目前)。
您应该使用 Mapbox-GL-JS 的iControl类来创建控件,然后按照 Mapbox 的说明添加样式和行为:
function LayerSwitchControl() { }
LayerSwitchControl.prototype.onAdd = function(map) {
this._map = map;
this._container = document.createElement('div');
this._container.className = 'mapboxgl-ctrl';
// change this next line to include a layer-switching icon
this._container.textContent = 'Hello, world';
return this._container;
};
LayerSwitchControl.prototype.onRemove = function () {
this._container.parentNode.removeChild(this._container);
this._map = undefined;
};
然后,您需要将代码添加到:
click
适当地响应事件。