代码拉取完成,页面将自动刷新
<template>
<div id="map"></div>
</template>
<script>
import mapboxgl from "mapbox-gl";
export default {
data() {
return {
map: null
}
},
mounted() {
this.map = new mapboxgl.Map({
container: 'map',
zoom: 1,
});
this.map.addSource('osm', {
type: 'raster',
tiles: ['https://a.tile.openstreetmap.org/{z}/{x}/{y}.png', 'https://b.tile.openstreetmap.org/{z}/{x}/{y}.png', 'https://c.tile.openstreetmap.org/{z}/{x}/{y}.png'],
tileSize: 256 });
this.map.addLayer({
id: 'osm',
type: 'raster',
source: 'osm'
});
let url = 'http://localhost:8000/world-cities.geojson';
this.map.addSource('cities-population', { type: 'geojson', data: url });
this.map.addLayer({
'id': 'cities-population',
'type': 'circle',
'source': 'cities-population',
'paint': {
'circle-radius': [
"interpolate",
["linear"],
["get", "population"],
40000, 2,
2000000, 12
],
'circle-color': [
"interpolate",
["linear"],
["get", "population"],
40000, 'DarkSlateGrey',
2000000, 'DarkSlateGray'
],
'circle-opacity': 0.6
}
});
this.map.addLayer({
'id': 'cities-population-heatmap',
'type': 'heatmap',
'source': 'cities-population',
'paint': {
'heatmap-radius': [
"interpolate",
["linear"],
["get", "population"],
40000, 2,
2000000, 12
],
'heatmap-intensity': 0.5
}
});
this.map.addControl(new mapboxgl.NavigationControl());
}
}
</script>
<style scoped>
#map {
height: 100%;
}
</style>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。