All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.github.abel533.echarts.series.Map Maven / Gradle / Ivy
/*
* The MIT License (MIT)
*
* Copyright (c) 2014-2015 [email protected]
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.github.abel533.echarts.series;
import com.github.abel533.echarts.code.Calculation;
import com.github.abel533.echarts.code.SelectedMode;
import com.github.abel533.echarts.code.SeriesType;
/**
* 地图
*
* @author liuzh
*/
public class Map extends Series {
/**
* 选中模式,默认关闭,可选single,multiple
*
* @see com.github.abel533.echarts.code.SelectedMode
*/
private Object selectedMode;
/**
* 地图类型,支持world,china及全国34个省市自治区。省市自治区的mapType直接使用简体中文
* 支持子区域模式,通过主地图类型扩展出所包含的子区域地图,格式为'主地图类型|子区域名称',如
* 'world|Brazil','china|广东'
*/
private String mapType;
/**
* 地图位置设置,默认只适应上下左右居中可配x,y,width,height,任意参数为空都将根据其他参数自适应
*/
private MapLocation mapLocation;
/**
* 地图数值计算方式,默认为加和,可选为:'sum'(总数) | 'average'(均值)
*
* @see com.github.abel533.echarts.code.Calculation
*/
private Calculation mapValueCalculation;
/**
* 地图数值计算结果小数精度,mapValueCalculation为average时有效,默认为取整,需要小数精度时设置大于0的整数
*/
private Integer mapValuePrecision;
/**
* 显示图例颜色标识(系列标识的小圆点),存在legend时生效
*/
private Boolean showLegendSymbol;
/**
* 是否启用值域漫游组件(dataRange)hover时的联动响应
*/
private Boolean dataRangeHoverLink;
/**
* 是否开启滚轮缩放和拖拽漫游
*/
private Boolean roam;
/**
* 滚轮缩放的极限控制,可指定{max:number, min:number},其中max为放大系数,有效值应大于1,min为缩小系数,有效值应小于1
*/
private ScaleLimit scaleLimit;
/**
* 自定义地区的名称映射,如{'China' : '中国'}
*/
private Object nameMap;
/**
* 地区的名称文本位置修正,数值单位为px,正值为左下偏移,负值为右上偏移,如{'China' : [10, -10]}
*/
private Object textFixed;
/**
* 通过绝对经纬度指定地区的名称文本位置,如{'Islands':[113.95, 22.26]},香港离岛区名称显示定位到东经113.95,北纬22.26上
*/
private GeoCoord geoCoord;
/**
* 构造函数
*/
public Map() {
this.type(SeriesType.map);
}
/**
* 构造函数,参数:name
*
* @param name
*/
public Map(String name) {
super(name);
this.type(SeriesType.map);
}
/**
* 设置mapLocation值
*
* @param mapLocation
*/
public Map mapLocation(MapLocation mapLocation) {
this.mapLocation = mapLocation;
return this;
}
/**
* 获取selectedMode值
*/
public Object selectedMode() {
return this.selectedMode;
}
/**
* 设置selectedMode值
*
* @param selectedMode
*/
public Map selectedMode(Object selectedMode) {
this.selectedMode = selectedMode;
return this;
}
/**
* 设置selectedMode值
*
* @param selectedMode
*/
public Map selectedMode(SelectedMode selectedMode) {
this.selectedMode = selectedMode;
return this;
}
/**
* 获取mapType值
*/
public String mapType() {
return this.mapType;
}
/**
* 设置mapType值
*
* @param mapType
*/
public Map mapType(String mapType) {
this.mapType = mapType;
return this;
}
/**
* 地图位置设置,默认只适应上下左右居中可配x,y,width,height,任意参数为空都将根据其他参数自适应
*/
public MapLocation mapLocation() {
if (this.mapLocation == null) {
this.mapLocation = new MapLocation();
}
return this.mapLocation;
}
/**
* 获取mapValueCalculation值
*/
public Calculation mapValueCalculation() {
return this.mapValueCalculation;
}
/**
* 设置mapValueCalculation值
*
* @param mapValueCalculation
*/
public Map mapValueCalculation(Calculation mapValueCalculation) {
this.mapValueCalculation = mapValueCalculation;
return this;
}
/**
* 获取mapValuePrecision值
*/
public Integer mapValuePrecision() {
return this.mapValuePrecision;
}
/**
* 设置mapValuePrecision值
*
* @param mapValuePrecision
*/
public Map mapValuePrecision(Integer mapValuePrecision) {
this.mapValuePrecision = mapValuePrecision;
return this;
}
/**
* 获取showLegendSymbol值
*/
public Boolean showLegendSymbol() {
return this.showLegendSymbol;
}
/**
* 设置showLegendSymbol值
*
* @param showLegendSymbol
*/
public Map showLegendSymbol(Boolean showLegendSymbol) {
this.showLegendSymbol = showLegendSymbol;
return this;
}
/**
* 获取dataRangeHoverLink值
*/
public Boolean dataRangeHoverLink() {
return this.dataRangeHoverLink;
}
/**
* 设置dataRangeHoverLink值
*
* @param dataRangeHoverLink
*/
public Map dataRangeHoverLink(Boolean dataRangeHoverLink) {
this.dataRangeHoverLink = dataRangeHoverLink;
return this;
}
/**
* 获取roam值
*/
public Boolean roam() {
return this.roam;
}
/**
* 设置roam值
*
* @param roam
*/
public Map roam(Boolean roam) {
this.roam = roam;
return this;
}
/**
* 获取scaleLimit值
*/
public ScaleLimit scaleLimit() {
if (this.scaleLimit == null) {
this.scaleLimit = new ScaleLimit();
}
return this.scaleLimit;
}
/**
* 设置scaleLimit值
*
* @param scaleLimit
*/
public Map scaleLimit(ScaleLimit scaleLimit) {
this.scaleLimit = scaleLimit;
return this;
}
/**
* 获取nameMap值
*/
public Object nameMap() {
return this.nameMap;
}
/**
* 设置nameMap值
*
* @param nameMap
*/
public Map nameMap(Object nameMap) {
this.nameMap = nameMap;
return this;
}
/**
* 获取textFixed值
*/
public Object textFixed() {
return this.textFixed;
}
/**
* 设置textFixed值
*
* @param textFixed
*/
public Map textFixed(Object textFixed) {
this.textFixed = textFixed;
return this;
}
/**
* 获取geoCoord值
*/
public GeoCoord geoCoord() {
if (this.geoCoord == null) {
this.geoCoord = new GeoCoord();
}
return this.geoCoord;
}
/**
* 设置name,x,y值
*
* @param name
* @param x
* @param y
*/
public Map geoCoord(String name, String x, String y) {
this.geoCoord().put(name, x, y);
return this;
}
/**
* 获取selectedMode值
*/
public Object getSelectedMode() {
return selectedMode;
}
/**
* 设置selectedMode值
*
* @param selectedMode
*/
public void setSelectedMode(Object selectedMode) {
this.selectedMode = selectedMode;
}
/**
* 获取mapType值
*/
public String getMapType() {
return mapType;
}
/**
* 设置mapType值
*
* @param mapType
*/
public void setMapType(String mapType) {
this.mapType = mapType;
}
/**
* 获取mapLocation值
*/
public MapLocation getMapLocation() {
return mapLocation;
}
/**
* 设置mapLocation值
*
* @param mapLocation
*/
public void setMapLocation(MapLocation mapLocation) {
this.mapLocation = mapLocation;
}
/**
* 获取mapValueCalculation值
*/
public Calculation getMapValueCalculation() {
return mapValueCalculation;
}
/**
* 设置mapValueCalculation值
*
* @param mapValueCalculation
*/
public void setMapValueCalculation(Calculation mapValueCalculation) {
this.mapValueCalculation = mapValueCalculation;
}
/**
* 获取mapValuePrecision值
*/
public Integer getMapValuePrecision() {
return mapValuePrecision;
}
/**
* 设置mapValuePrecision值
*
* @param mapValuePrecision
*/
public void setMapValuePrecision(Integer mapValuePrecision) {
this.mapValuePrecision = mapValuePrecision;
}
/**
* 获取showLegendSymbol值
*/
public Boolean getShowLegendSymbol() {
return showLegendSymbol;
}
/**
* 设置showLegendSymbol值
*
* @param showLegendSymbol
*/
public void setShowLegendSymbol(Boolean showLegendSymbol) {
this.showLegendSymbol = showLegendSymbol;
}
/**
* 获取dataRangeHoverLink值
*/
public Boolean getDataRangeHoverLink() {
return dataRangeHoverLink;
}
/**
* 设置dataRangeHoverLink值
*
* @param dataRangeHoverLink
*/
public void setDataRangeHoverLink(Boolean dataRangeHoverLink) {
this.dataRangeHoverLink = dataRangeHoverLink;
}
/**
* 获取roam值
*/
public Boolean getRoam() {
return roam;
}
/**
* 设置roam值
*
* @param roam
*/
public void setRoam(Boolean roam) {
this.roam = roam;
}
/**
* 获取scaleLimit值
*/
public ScaleLimit getScaleLimit() {
return scaleLimit;
}
/**
* 设置scaleLimit值
*
* @param scaleLimit
*/
public void setScaleLimit(ScaleLimit scaleLimit) {
this.scaleLimit = scaleLimit;
}
/**
* 获取nameMap值
*/
public Object getNameMap() {
return nameMap;
}
/**
* 设置nameMap值
*
* @param nameMap
*/
public void setNameMap(Object nameMap) {
this.nameMap = nameMap;
}
/**
* 获取textFixed值
*/
public Object getTextFixed() {
return textFixed;
}
/**
* 设置textFixed值
*
* @param textFixed
*/
public void setTextFixed(Object textFixed) {
this.textFixed = textFixed;
}
/**
* 获取geoCoord值
*/
public GeoCoord getGeoCoord() {
return geoCoord;
}
/**
* 设置geoCoord值
*
* @param geoCoord
*/
public void setGeoCoord(GeoCoord geoCoord) {
this.geoCoord = geoCoord;
}
}