-
ecommand changed the public information on the GWT-OpenLayers project.
2009-11-19 22:11:25 UTC by ecommand
-
ecommand changed the public information on the GWT-OpenLayers project.
2009-11-19 22:11:25 UTC by ecommand
-
ecommand changed the public information on the GWT-OpenLayers project.
2009-11-19 22:11:25 UTC by ecommand
-
ecommand changed the public information on the GWT-OpenLayers project.
2009-11-19 22:11:25 UTC by ecommand
-
In SelectFeature.java
public interface UnselectFeatureListener {
void onFeatureUnselected(JSObject vectorFeature);
}
should be
public interface UnselectFeatureListener {
void onFeatureUnselected(VectorFeature vectorFeature);
}
Because in SelectFeatureImpl.java it says
public static native JSObject createUnselectFeatureCallback(UnselectFeatureListener...
2009-11-19 11:54:39 UTC by cmadsen_dk
-
Using the following code:
SelectFeatureOptions opts = new SelectFeatureOptions();
opts.onSelect(new SelectFeature.SelectFeatureListener() {
@Override
public void onFeatureSelected(VectorFeature vectorFeature) {
System.out.println("selected " + vectorFeature);
}
});
opts.onUnSelect(new SelectFeature.UnselectFeatureListener() {
@Override
public void...
2009-11-19 11:09:10 UTC by cmadsen_dk
-
please add methods to class org.gwtopenmaps.openlayers.client.layer.WMSParams (and maybe others as well) to enable setting of custom url parameters (e.g. timestamp). I use this to prevent caching of the wms images.
See attached modified code
Thanks,
Johan.
2009-11-19 01:02:28 UTC by jswinnen
-
It seems that the method setVisibility in class org.gwtopenmaps.openlayers.client.layer.LayerOptions uses the wrong property name ("visible" instead of "visibility").
Replacing getJSObject().setProperty("visible", visible) with getJSObject().setProperty("visibility", visible) fixes it.
Thanks,
Johan.
2009-11-18 23:52:17 UTC by jswinnen
-
Anonymous committed revision 198 to the GWT-OpenLayers Mercurial repository, changing 2 files.
2009-11-17 21:13:20 UTC by nobody
-
Anonymous committed revision 197 to the GWT-OpenLayers Mercurial repository, changing 1 files.
2009-11-04 13:48:02 UTC by nobody