antv-l7/examples/point/marker/demo/marker.js

57 lines
1.3 KiB
JavaScript
Raw Normal View History

2019-11-21 17:52:18 +08:00
import { Scene, Marker } from '@antv/l7';
import { GaodeMap } from '@antv/l7-maps';
2019-11-14 17:25:16 +08:00
const scene = new Scene({
id: 'map',
map: new GaodeMap({
style: 'light',
center: [ 105.790327, 36.495636 ],
pitch: 0,
2019-11-26 19:17:39 +08:00
zoom: 4
})
2019-11-14 17:25:16 +08:00
});
2020-03-15 20:09:16 +08:00
scene.on('loaded', () => {
addMarkers();
scene.render();
});
2019-11-14 17:25:16 +08:00
function addMarkers() {
2019-11-20 17:26:24 +08:00
fetch(
'https://gw.alipayobjects.com/os/basement_prod/67f47049-8787-45fc-acfe-e19924afe032.json'
)
.then(res => res.json())
.then(nodes => {
for (let i = 0; i < nodes.length; i++) {
2019-12-02 15:16:45 +08:00
if (nodes[i].g !== '1' || nodes[i].v === '') {
continue;
}
2019-11-20 17:26:24 +08:00
const el = document.createElement('label');
2020-01-17 00:40:37 +08:00
el.className = 'labelclass';
2019-11-20 17:26:24 +08:00
el.textContent = nodes[i].v + '℃';
el.style.background = getColor(nodes[i].v);
el.style.borderColor = getColor(nodes[i].v);
2019-11-28 17:25:56 +08:00
const marker = new Marker({
2019-11-20 17:26:24 +08:00
element: el
2019-12-02 15:16:45 +08:00
}).setLnglat({ lng: nodes[i].x * 1, lat: nodes[i].y });
2019-11-28 17:25:56 +08:00
scene.addMarker(marker);
2019-11-20 17:26:24 +08:00
}
});
2019-11-14 17:25:16 +08:00
}
2019-11-20 17:26:24 +08:00
function getColor(v) {
return v > 50
? '#800026'
: v > 40
? '#BD0026'
: v > 30
? '#E31A1C'
: v > 20
? '#FC4E2A'
: v > 10
? '#FD8D3C'
: v > 5
? '#FEB24C'
: v > 0
? '#FED976'
: '#FFEDA0';
}