You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
495 B
24 lines
495 B
2 years ago
|
package com.fr.plugin.heatpointmapbox.vo;
|
||
|
|
||
|
import com.fr.json.JSONObject;
|
||
|
|
||
|
/**
|
||
|
* @author :xx
|
||
|
* @date :2022/8/25 18:33
|
||
|
* @description:
|
||
|
*/
|
||
|
public class CustomJsonObject {
|
||
|
private JSONObject obj = JSONObject.create();
|
||
|
|
||
|
public JSONObject get() {
|
||
|
return obj;
|
||
|
}
|
||
|
|
||
|
public void put(JSONObject obj) {
|
||
|
this.obj = obj;
|
||
|
}
|
||
|
|
||
|
public static final String POINT_MAP_TITLE = "pointmap";
|
||
|
public static final String CLUSTER_POINT_MAP_TITLE = "clusterpointmap";
|
||
|
}
|