diff options
Diffstat (limited to 'interfaces')
-rw-r--r-- | interfaces/Makefile.am | 6 | ||||
-rw-r--r-- | interfaces/gc-iface-poi-full.xml | 20 |
2 files changed, 24 insertions, 2 deletions
diff --git a/interfaces/Makefile.am b/interfaces/Makefile.am index 71d72b5..2987a84 100644 --- a/interfaces/Makefile.am +++ b/interfaces/Makefile.am @@ -11,7 +11,8 @@ noinst_DATA = \ gc-iface-master-client.xml \ gc-iface-reverse-geocode.xml \ gc-iface-velocity.xml \ - gc-iface-satellite.xml + gc-iface-satellite.xml \ + gc-iface-poi.xml BUILT_SOURCES = $(noinst_DATA) CLEANFILES = $(BUILT_SOURCES) @@ -26,4 +27,5 @@ EXTRA_DIST = \ gc-iface-master-client-full.xml \ gc-iface-reverse-geocode-full.xml \ gc-iface-velocity-full.xml \ - gc-iface-satellite-full.xml + gc-iface-satellite-full.xml \ + gc-iface-poi-full.xml diff --git a/interfaces/gc-iface-poi-full.xml b/interfaces/gc-iface-poi-full.xml new file mode 100644 index 0000000..678c889 --- /dev/null +++ b/interfaces/gc-iface-poi-full.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8" ?> + +<node name="/"> + <interface name="org.freedesktop.Geoclue.Poi"> + + <method name="SearchByPosition"> + <arg name="keyword" type="s" direction="in" /> + <arg name="lang" type="s" direction="in" /> + <arg name="country_code" type="s" direction="in" /> + <arg name="limit" type="i" direction="in" /> + <arg name="left" type="d" direction="in" /> + <arg name="top" type="d" direction="in" /> + <arg name="right" type="d" direction="in" /> + <arg name="bottom" type="d" direction="in" /> + <arg name="count" type="i" direction="out" /> + <arg name="landmark" type="a(iiddddddsssssssssss)" direction="out" /> + </method> + + </interface> +</node> |