blob: 5bec1c599c4e12d15c78253f1036a620f560988e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?xml version="1.0" encoding="UTF-8" ?>
<node name="/">
<interface name="org.freedesktop.Geoclue.Geocode">
<method name="AddressToPosition">
<arg name="address" type="a{ss}" direction="in" />
<arg name="fields" type="i" direction="out" />
<arg name="latitude" type="d" direction="out" />
<arg name="longitude" type="d" direction="out" />
<arg name="altitude" type="d" direction="out" />
<arg name="accuracy" type="(idd)" direction="out" />
</method>
<method name="FreeformAddressToPosition">
<arg name="address" type="s" direction="in" />
<arg name="fields" type="i" direction="out" />
<arg name="latitude" type="d" direction="out" />
<arg name="longitude" type="d" direction="out" />
<arg name="altitude" type="d" direction="out" />
<arg name="accuracy" type="(idd)" direction="out" />
</method>
</interface>
</node>
|