comparison flys-client/src/main/java/de/intevation/flys/client/client/services/GFIService.java @ 1400:96708d81eaf6

Added an initial GetFeatureInfo tool to get information about points in the map. flys-client/trunk@3285 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Thu, 17 Nov 2011 16:20:55 +0000
parents
children 15ef3d3081b7
comparison
equal deleted inserted replaced
1399:748e7c828d03 1400:96708d81eaf6
1 package de.intevation.flys.client.client.services;
2
3 import java.util.List;
4
5 import com.google.gwt.user.client.rpc.RemoteService;
6 import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
7
8
9 import de.intevation.flys.client.shared.exceptions.ServerException;
10 import de.intevation.flys.client.shared.model.Theme;
11
12
13 @RemoteServiceRelativePath("getfeatureinfo")
14 public interface GFIService extends RemoteService {
15
16 public String query(
17 List<Theme> themes,
18 String format,
19 String bbox,
20 String projection,
21 int height,
22 int width,
23 int x,
24 int y
25 ) throws ServerException;
26 }
27 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org