org.wicketstuff.gmap.api.GPolygon Maven / Gradle / Ivy
/*
*
* ==============================================================================
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package org.wicketstuff.gmap.api;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.wicketstuff.gmap.js.Array;
/**
* Represents an Google Maps API's GPolygon.
*/
public class GPolygon extends GOverlay
{
private static final long serialVersionUID = 1L;
private final GLatLng[] gLatLngs;
private final String strokeColor;
private final int strokeWeight;
private final float strokeOpacity;
private final String fillColor;
private final float fillOpacity;
public GPolygon(String strokeColor, int strokeWeight, float strokeOpacity, String fillColor, float fillOpacity,
GLatLng... gLatLngs)
{
super();
this.gLatLngs = gLatLngs;
this.strokeColor = strokeColor;
this.strokeWeight = strokeWeight;
this.strokeOpacity = strokeOpacity;
this.fillColor = fillColor;
this.fillOpacity = fillOpacity;
}
/**
* @see GOverlay#getJSconstructor()
*/
@Override
public String getJSconstructor()
{
Array array = new Array();
for (GLatLng gLatLng : gLatLngs)
{
array.add(gLatLng.getJSconstructor());
}
return ("new google.maps.Polygon({strokeWeight: " + strokeWeight + ", strokeColor: '" + strokeColor + "', strokeOpacity: " + strokeOpacity + ", fillColor: '" + fillColor + "', fillOpacity: " + fillOpacity + ", paths: " + array.toJS() + "})");
}
/**
* @see GOverlay#updateOnAjaxCall(org.apache.wicket.ajax.AjaxRequestTarget, GEvent)
*/
@Override
protected void updateOnAjaxCall(AjaxRequestTarget target, GEvent overlayEvent)
{
// empty method
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy