diff options
author | Minjune Kim <sena06.kim@samsung.com> | 2012-08-21 18:34:14 +0900 |
---|---|---|
committer | Minjune Kim <sena06.kim@samsung.com> | 2012-08-21 18:34:14 +0900 |
commit | 4fb9bf70253567ba3d5da3d85ed40abbb322c4d5 (patch) | |
tree | 3ebc834eb2550837e6febb5c91a2ef627fe49526 /interfaces | |
parent | 530c02ab13d664160b83ba3f80748edfd25ff092 (diff) | |
download | geoclue-4fb9bf70253567ba3d5da3d85ed40abbb322c4d5.tar.gz geoclue-4fb9bf70253567ba3d5da3d85ed40abbb322c4d5.tar.bz2 geoclue-4fb9bf70253567ba3d5da3d85ed40abbb322c4d5.zip |
Release Tizen2.0 betaHEADsubmit/master/20120920.1510032.0_alphamaster2.0alpha
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> |