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.
23 lines
495 B
23 lines
495 B
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"; |
|
}
|
|
|