L7 plot 世界地图显示语言问题

359 阅读1分钟

查看数据源字段名

微信截图_20220726181525.png

配置label的 "field"显示字段

微信截图_20220726181652.png

    new Choropleth('container', {
  map: {
    type: 'mapbox',
    style: 'blank',
    center: [120.19382669582967, 30.258134],
    zoom: 4,
    pitch: 0,
  },

  source: {
    data: [],
    joinBy: {
      sourceField: 'name', 
      geoField: 'english',
    },
  },
  viewLevel: {
    level: 'world',
    adcode: 'all',
  },
  autoFit: true,
  color: {
    field: 'value',
    value: ['#B8E1FF', '#7DAAFF', '#3D76DD', '#0047A5', '#001D70'],
    scale: { type: 'quantize' },
  },
  style: {
    opacity: 1,
    stroke: '#ccc',
    lineWidth: 0.6,
    lineOpacity: 1,
    fillBottomColor: '#d8d8d84d',
  },
  chinaBorder: false,
  label: {
    visible: true,
    field: 'english', 
    style: {
      fill: '#000',
      opacity: 0.8,
      fontSize: 10,
      stroke: '#fff',
      strokeWidth: 1.5,
      textAllowOverlap: false,
      padding: [5, 5],
    },
  },
  state: {
    active: true,
    select: {
      stroke: 'black',
      lineWidth: 1.5,
      lineOpacity: 0.8,
    },
  },
  tooltip: {
    items: ['name', 'adcode', 'value'],
  },
  zoom: {
    position: 'bottomright',
  },
  legend: {
    position: 'bottomleft',
  },
});