![JAR search and dependency download from the Maven repository](/logo.png)
org.gwtopenmaps.openlayers.client.control.ModifyFeatureImpl Maven / Gradle / Ivy
/**
*
* Copyright 2015 sourceforge.
*
* 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.gwtopenmaps.openlayers.client.control;
import org.gwtopenmaps.openlayers.client.control.ModifyFeature.OnModificationEndListener;
import org.gwtopenmaps.openlayers.client.control.ModifyFeature.OnModificationListener;
import org.gwtopenmaps.openlayers.client.control.ModifyFeature.OnModificationStartListener;
import org.gwtopenmaps.openlayers.client.util.JSObject;
/**
* @author Edwin Commandeur - Atlis EJS
*
*/
public class ModifyFeatureImpl
{
public static native JSObject create(JSObject vectorLayer) /*-{
return new $wnd.OpenLayers.Control.ModifyFeature(vectorLayer);
}-*/;
public static native JSObject create(JSObject vectorLayer, JSObject options) /*-{
return new $wnd.OpenLayers.Control.ModifyFeature(vectorLayer, options);
}-*/;
public static native JSObject createOnModificationStartCallback(OnModificationStartListener listener) /*-{
var callback = function(obj){
var vectorFeatureObj = @org.gwtopenmaps.openlayers.client.feature.VectorFeature::narrowToVectorFeature(Lorg/gwtopenmaps/openlayers/client/util/JSObject;)(obj);
listener.@org.gwtopenmaps.openlayers.client.control.ModifyFeature.OnModificationStartListener::onModificationStart(Lorg/gwtopenmaps/openlayers/client/feature/VectorFeature;)(vectorFeatureObj);
}
return callback;
}-*/;
public static native JSObject createOnModificationCallback(OnModificationListener listener) /*-{
var callback = function(obj){
var vectorFeatureObj = @org.gwtopenmaps.openlayers.client.feature.VectorFeature::narrowToVectorFeature(Lorg/gwtopenmaps/openlayers/client/util/JSObject;)(obj);
listener.@org.gwtopenmaps.openlayers.client.control.ModifyFeature.OnModificationListener::onModification(Lorg/gwtopenmaps/openlayers/client/feature/VectorFeature;)(vectorFeatureObj);
}
return callback;
}-*/;
public static native JSObject createOnModificationEndCallback(OnModificationEndListener listener) /*-{
var callback = function(obj){
var vectorFeatureObj = @org.gwtopenmaps.openlayers.client.feature.VectorFeature::narrowToVectorFeature(Lorg/gwtopenmaps/openlayers/client/util/JSObject;)(obj);
listener.@org.gwtopenmaps.openlayers.client.control.ModifyFeature.OnModificationEndListener::onModificationEnd(Lorg/gwtopenmaps/openlayers/client/feature/VectorFeature;)(vectorFeatureObj);
}
return callback;
}-*/;
public static native boolean isSelectedFeatureModified(JSObject obj) /*-{
return obj.modified;
}-*/;
public static native void selectFeature(JSObject obj, JSObject feature)/*-{
obj.selectFeature(feature);
}-*/;
public static native void unselectFeature(JSObject obj, JSObject feature)/*-{
obj.unselectFeature(feature);
}-*/;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy