当前位置: 首页>>代码示例>>Java>>正文


Java SearchByLocationRequest.addLayerWithFilter方法代码示例

本文整理汇总了Java中org.geomajas.command.dto.SearchByLocationRequest.addLayerWithFilter方法的典型用法代码示例。如果您正苦于以下问题:Java SearchByLocationRequest.addLayerWithFilter方法的具体用法?Java SearchByLocationRequest.addLayerWithFilter怎么用?Java SearchByLocationRequest.addLayerWithFilter使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.geomajas.command.dto.SearchByLocationRequest的用法示例。


在下文中一共展示了SearchByLocationRequest.addLayerWithFilter方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getSnappingSources

import org.geomajas.command.dto.SearchByLocationRequest; //导入方法依赖的package包/类
/**
 * Get the geometries of all features within the map view bounds.
 */
public void getSnappingSources(final GeometryArrayFunction callback) {
	GwtCommand commandRequest = new GwtCommand(SearchByLocationRequest.COMMAND);
	SearchByLocationRequest request = new SearchByLocationRequest();
	request.addLayerWithFilter(layer.getServerLayerId(), layer.getServerLayerId(), layer.getFilter());
	request.setFeatureIncludes(GeomajasConstant.FEATURE_INCLUDE_GEOMETRY);
	request.setLocation(boundsAsGeometry());
	request.setCrs(layer.getMapModel().getCrs());
	request.setQueryType(SearchByLocationRequest.QUERY_INTERSECTS);
	request.setSearchType(SearchByLocationRequest.SEARCH_ALL_LAYERS);
	commandRequest.setCommandRequest(request);
	GwtCommandDispatcher.getInstance().execute(commandRequest,
			new AbstractCommandCallback<SearchByLocationResponse>() {

		public void execute(SearchByLocationResponse response) {
			if (response.getFeatureMap().size() > 0) {
				List<Feature> features = response.getFeatureMap().values().iterator().next();
				Geometry[] geometries = new Geometry[features.size()];
				for (int i = 0; i < features.size(); i++) {
					geometries[i] = features.get(i).getGeometry();
				}
				callback.execute(geometries);
			}
		}
	});
}
 
开发者ID:geomajas,项目名称:geomajas-project-client-gwt,代码行数:29,代码来源:VectorLayerSourceProvider.java

示例2: firstLayer

import org.geomajas.command.dto.SearchByLocationRequest; //导入方法依赖的package包/类
@Test
public void firstLayer() throws Exception {
	// prepare command
	SearchByLocationRequest request = new SearchByLocationRequest();
	request.setCrs("EPSG:4326");
	request.setQueryType(SearchByLocationRequest.QUERY_INTERSECTS);
	request.setSearchType(SearchByLocationRequest.SEARCH_FIRST_LAYER);
	
	final String region1ResultTag = "countries layer region 1";
	final String region2ResultTag = "countries layer region 2";
	request.addLayerWithFilter(region1ResultTag, LAYER_ID, "region='Region 1'");
	request.addLayerWithFilter(region2ResultTag, LAYER_ID, "region='Region 2'");
	
	request.setLocation(GeometryService.toPolygon(new Bbox(-180, -90, 360, 180)));

	// execute
	SearchByLocationResponse response = (SearchByLocationResponse) dispatcher.execute(
			SearchByLocationRequest.COMMAND, request, null, "en");

	// test
	Assert.assertFalse(response.isError());
	Assert.assertEquals(1, response.getFeatureMap().size());
	Assert.assertNotNull(response.getFeatureMap().get(region1ResultTag));
}
 
开发者ID:geomajas,项目名称:geomajas-project-server,代码行数:25,代码来源:SearchByLocationCommandTest.java

示例3: searchInBounds

import org.geomajas.command.dto.SearchByLocationRequest; //导入方法依赖的package包/类
/**
 * Search all features within a certain layer that intersect a certain bounding box.
 * 
 * @param layer
 *            The features supported layer wherein to search.
 * @param bbox
 *            The bounding box wherein to search.
 * @param callback
 *            Call-back method executed on return (when features have been found).
 */
public void searchInBounds(final FeaturesSupported layer, Bbox bbox, final FeatureArrayCallback callback) {
	MapModel mapModel = map.getMapWidget().getMapModel();
	Layer<?> gwtLayer = mapModel.getLayer(layer.getId());
	if (gwtLayer != null && gwtLayer instanceof VectorLayer) {
		final VectorLayer vLayer = (VectorLayer) gwtLayer;

		SearchByLocationRequest request = new SearchByLocationRequest();
		request.addLayerWithFilter(vLayer.getId(), vLayer.getServerLayerId(), layer.getFilter());

		GeometryFactory factory = new GeometryFactory(mapModel.getSrid(), GeometryFactory.PARAM_DEFAULT_PRECISION);
		org.geomajas.gwt.client.spatial.Bbox box = new org.geomajas.gwt.client.spatial.Bbox(bbox.getX(),
				bbox.getY(), bbox.getWidth(), bbox.getHeight());
		request.setLocation(GeometryConverter.toDto(factory.createPolygon(box)));

		request.setCrs(mapModel.getCrs());
		request.setSearchType(SearchByLocationRequest.QUERY_INTERSECTS);
		request.setSearchType(SearchByLocationRequest.SEARCH_ALL_LAYERS);
		request.setFeatureIncludes(GeomajasConstant.FEATURE_INCLUDE_ALL);

		GwtCommand commandRequest = new GwtCommand(SearchByLocationRequest.COMMAND);
		commandRequest.setCommandRequest(request);
		GwtCommandDispatcher.getInstance().execute(commandRequest,
				new AbstractCommandCallback<SearchByLocationResponse>() {

			public void execute(SearchByLocationResponse response) {
				Map<String, List<org.geomajas.layer.feature.Feature>> featureMap = response.getFeatureMap();
				List<org.geomajas.layer.feature.Feature> dtos = featureMap.get(vLayer.getId());
				Feature[] features = new Feature[dtos.size()];
				for (int i = 0; i < dtos.size(); i++) {
					features[i] = new FeatureImpl(dtos.get(i), layer);
				}
				callback.execute(new FeatureArrayHolder(features));
			}
		});
	}
}
 
开发者ID:geomajas,项目名称:geomajas-project-client-gwt,代码行数:47,代码来源:FeatureSearchServiceImpl.java

示例4: getData

import org.geomajas.command.dto.SearchByLocationRequest; //导入方法依赖的package包/类
private void getData() {
	Point point = mapWidget.getMapModel().getGeometryFactory().createPoint(worldPosition);
	final Coordinate coordUsedForRetrieval = worldPosition;

	SearchByLocationRequest request = new SearchByLocationRequest();
	request.setLocation(GeometryConverter.toDto(point));
	request.setCrs(mapWidget.getMapModel().getCrs());
	request.setQueryType(SearchByLocationRequest.QUERY_INTERSECTS);
	int layersToSearch = SearchByLocationRequest.SEARCH_ALL_LAYERS;
	request.setSearchType(layersToSearch);
	request.setBuffer(calculateBufferFromPixelTolerance());
	request.setFeatureIncludes(GwtCommandDispatcher.getInstance().getLazyFeatureIncludesSelect());
	
	for (Layer<?> layer : mapWidget.getMapModel().getLayers()) {
		if (layer.isShowing() && layer instanceof VectorLayer) {
			request.addLayerWithFilter(layer.getId(), layer.getServerLayerId(), ((VectorLayer) layer).getFilter());
	
		}
	}
	
	GwtCommand commandRequest = new GwtCommand(SearchByLocationRequest.COMMAND);
	commandRequest.setCommandRequest(request);
	GwtCommandDispatcher.getInstance().execute(commandRequest, 
				new AbstractCommandCallback<SearchByLocationResponse>() {
		public void execute(SearchByLocationResponse commandResponse) {
			setTooltipData(coordUsedForRetrieval, commandResponse.getFeatureMap());
		}
	});
}
 
开发者ID:geomajas,项目名称:geomajas-project-client-gwt,代码行数:30,代码来源:TooltipOnMouseoverListener.java

示例5: addVisibleLayers

import org.geomajas.command.dto.SearchByLocationRequest; //导入方法依赖的package包/类
private void addVisibleLayers(SearchByLocationRequest request, MapModel mapModel) {
	for (VectorLayer layer : mapModel.getVectorLayers()) {
		if (layer.isShowing()) {
			request.addLayerWithFilter(layer.getId(), layer.getServerLayerId(), layer.getFilter());
		}
	}
}
 
开发者ID:geomajas,项目名称:geomajas-project-client-gwt,代码行数:8,代码来源:ToggleSelectionAction.java

示例6: toggle

import org.geomajas.command.dto.SearchByLocationRequest; //导入方法依赖的package包/类
private void toggle(Coordinate coordinate, final boolean clearSelection, final boolean singleSelection) {
	if (null == coordinate) {
		return;
	}
	// we can clear here (but remember the selected feature for the special case of single selection) !
	final String singleSelectionId = mapWidget.getMapModel().getSelectedFeature();
	if (clearSelection) {
		mapWidget.getMapModel().clearSelectedFeatures();
	}
	MapModel mapModel = mapWidget.getMapModel();
	Coordinate worldPosition = mapModel.getMapView().getWorldViewTransformer().viewToWorld(coordinate);
	GwtCommand commandRequest = new GwtCommand(SearchByLocationRequest.COMMAND);
	SearchByLocationRequest request = new SearchByLocationRequest();
	Layer<?> layer = mapModel.getSelectedLayer();
	if (priorityToSelectedLayer && layer != null && layer instanceof VectorLayer) {
		if (!layer.isShowing()) {
			return;
		}
		request.addLayerWithFilter(layer.getId(), layer.getServerLayerId(), ((VectorLayer) layer).getFilter());
	} else {
		addVisibleLayers(request, mapModel);
	}
	Point point = mapModel.getGeometryFactory().createPoint(worldPosition);
	request.setLocation(GeometryConverter.toDto(point));
	request.setCrs(mapWidget.getMapModel().getCrs());
	request.setQueryType(SearchByLocationRequest.QUERY_INTERSECTS);
	request.setSearchType(SearchByLocationRequest.SEARCH_ALL_LAYERS);
	request.setBuffer(calculateBufferFromPixelTolerance());
	request.setFeatureIncludes(GwtCommandDispatcher.getInstance().getLazyFeatureIncludesSelect());
	commandRequest.setCommandRequest(request);
	GwtCommandDispatcher.getInstance().execute(commandRequest,
			new AbstractCommandCallback<SearchByLocationResponse>() {

		public void execute(SearchByLocationResponse response) {
			Map<String, List<Feature>> featureMap = response.getFeatureMap();
			for (String layerId : featureMap.keySet()) {
				selectFeatures(layerId, featureMap.get(layerId), singleSelectionId, singleSelection);
				if (singleSelection) {
					break;
				}
			}
		}
	});
}
 
开发者ID:geomajas,项目名称:geomajas-project-client-gwt,代码行数:45,代码来源:ToggleSelectionAction.java


注:本文中的org.geomajas.command.dto.SearchByLocationRequest.addLayerWithFilter方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。