net.sf.jasperreports.components.map.MapUtils Maven / Gradle / Ivy
/*
* JasperReports - Free Java Reporting Library.
* Copyright (C) 2001 - 2023 Cloud Software Group, Inc. All rights reserved.
* http://www.jaspersoft.com
*
* Unless you have purchased a commercial license agreement from Jaspersoft,
* the following license terms apply:
*
* This program is part of JasperReports.
*
* JasperReports is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* JasperReports is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with JasperReports. If not, see .
*/
package net.sf.jasperreports.components.map;
import net.sf.jasperreports.engine.JRGenericPrintElement;
import net.sf.jasperreports.engine.JasperReportsContext;
import net.sf.jasperreports.jackson.util.JacksonUtil;
import java.util.List;
import java.util.Map;
/**
* @author Narcis Marcu ([email protected])
*/
public class MapUtils {
public static final String MAP_API_SCRIPT = "net/sf/jasperreports/components/map/resources/scripts/jasperreportsMapApi.js";
public static void prepareContextForVelocityTemplate(
Map velocityContext,
JasperReportsContext jasperReportsContext,
JRGenericPrintElement element) {
JacksonUtil jacksonUtil = JacksonUtil.getInstance(jasperReportsContext);
Float latitude = (Float) element.getParameterValue(MapComponent.ITEM_PROPERTY_latitude);
latitude = latitude == null ? MapComponent.DEFAULT_LATITUDE : latitude;
Float longitude = (Float) element.getParameterValue(MapComponent.ITEM_PROPERTY_longitude);
longitude = longitude == null ? MapComponent.DEFAULT_LONGITUDE : longitude;
Integer zoom = (Integer) element.getParameterValue(MapComponent.PARAMETER_ZOOM);
zoom = zoom == null ? MapComponent.DEFAULT_ZOOM : zoom;
String mapType = (String) element.getParameterValue(MapComponent.ATTRIBUTE_MAP_TYPE);
mapType = (mapType == null ? MapComponent.DEFAULT_MAP_TYPE.getName() : mapType).toUpperCase();
Boolean markerClustering = (Boolean) element.getParameterValue(MapComponent.ATTRIBUTE_MARKER_CLUSTERING);
markerClustering = markerClustering != null ? markerClustering.booleanValue() : false;
Boolean markerSpidering = (Boolean) element.getParameterValue(MapComponent.ATTRIBUTE_MARKER_SPIDERING);
markerSpidering = markerSpidering != null ? markerSpidering.booleanValue() : false;
velocityContext.put("latitude", latitude);
velocityContext.put("longitude", longitude);
velocityContext.put("zoom", zoom);
velocityContext.put("mapType", mapType);
velocityContext.put("useMarkerClustering", markerClustering);
velocityContext.put("useMarkerSpidering", markerSpidering);
Map legendPropertiesParam = (Map) element.getParameterValue(MapComponent.PARAMETER_LEGEND_PROPERTIES);
String legendProperties = legendPropertiesParam == null ? "{}" : jacksonUtil.getIndentedJsonString(legendPropertiesParam);
velocityContext.put("legendProperties", legendProperties);
Map resetMapPropertiesParam = (Map) element.getParameterValue(MapComponent.PARAMETER_RESET_MAP_PROPERTIES);
String resetMapProperties = resetMapPropertiesParam == null ? "{}" : jacksonUtil.getIndentedJsonString(resetMapPropertiesParam);
velocityContext.put("resetMapProperties", resetMapProperties);
Map markerSeries = (Map) element.getParameterValue(MapComponent.PARAMETER_MARKERS);
String markers = markerSeries == null || markerSeries.isEmpty() ? "{}" : jacksonUtil.getIndentedJsonString(markerSeries);
velocityContext.put("markerList", markers);
List