-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathGeoLocationForPhoneGap.xml
More file actions
63 lines (63 loc) · 4.28 KB
/
GeoLocationForPhoneGap.xml
File metadata and controls
63 lines (63 loc) · 4.28 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?xml version="1.0" encoding="utf-8" ?>
<widget id="GeoLocationForPhoneGap.widget.GeoLocationForPhoneGap" needsEntityContext="true" offlineCapable="true" xmlns="http://www.mendix.com/widget/1.0/">
<name>Geolocation</name>
<description>Get the geolocation from the phone or tablet</description>
<icon>iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABAlBMVEUAAAD///9V//+Av/9mZmZduf9Vv/9Osf9Jtv9RvP9Ktf9aWlpJsPlVVVVKtflLtPpWVlZJsvhXV1dIs/hWVlZVVVVJs/lKs/lJsflXV1dWVlZVVVVVVVVXV1dJsfhJsfhJsfhWVlZIsfhWVlZKsPhIsPhWVlZJsfdJsfhJsPhIsfhJsfhJsPhJsfhWVlZVVVVJsPhJsfhVVVVIsfhIsfhVVVVIsfhVVVVVVVVVVVVJsfdIsPdWVlZVVVVIsfdJsfdJsfdJsfdJsfhVVVVVVVVJsPhJsPhIsPhVVVVWVlZIsfhIsPdVVVVzwvh0w/if1fqg1vrH5/zt9/79/v7+/v7///9lxLmZAAAAS3RSTlMAAQMECgsMDQ4TGB8qKi0zRElJSkpLV1pbXl9gZmdpbIyMjZGVmKCnq6ytrrW6u7zP0dXX2Nrb293g4eLi4+Xn6Ovy8vX2+fr6+vsuEpWiAAACEUlEQVR4Ae2W6VJTQRCFDwuEHRMUUAyI7AaQBVEgYYGwQF+XRHn/V9GpzqVOknOhBv5Z+X5QpKbnO92Qqml0cF59+/oWj7JwezOPbL4kSbLci0yGN5PHK5LAzigyeH+RPFHh59WZ7PjMChboJoseLytYIJqk+IuMCha8q3qTavrNYa7IEGB0h5vk+KKoEAL0Ljc3WUzjRYUUADPUJMWrCi2gJjleVmjBQ5OfOV5WjGpB2iTH64pqQQmoSYrXFQfy2Jvk+OwKeSw+64r/QdARVJKk8iJBoVIpRAk4UaAFOjFeQPRPre6en++uTvU/S9A9e2YNzma74wUDG0ZsDMQKctvWxHYuTtBVshZKXVGCaWtjOkbQs++XftTq9dp3/32/J0KQ9zu//tz/4/dP/5SPECx6frgfDN7DYoRgywK1+wY1C2xFCE4tUE8FdQucRgiulOAqQnCkRjhCCj+XWrCu/ojrSDmg51IL5tS/cQ4pBXr1tWDouv2LdD2EgHr1WVAsl18DWLE2VkDQq88C31PKAMatjXEwvLykAl+TXICStfAJDI/hAlqT3oTjkTtr4m4EjhrDBS1r0kdr4gMcOUb4SVuakzs24jgHgY/hcLwzacQkJD6G4/HMmj2wBonY0pjBE2twMgiN2NKYiVQwAY3c0pglv7+EJ5i/uV2Aom8v3N/rw7MZuzS7HMMLyB8e5tGhmb+NzW1Va9T2YAAAAABJRU5ErkJggg==</icon>
<phonegap enabled="true"/>
<properties>
<property key="buttonLabel" type="translatableString" required="true">
<caption>Label</caption>
<category>Button</category>
<description/>
<translations>
<translation lang="en_US">Location</translation>
<translation lang="nl_NL">Locatie</translation>
</translations>
</property>
<property key="buttonClass" type="string" required="false">
<caption>Class</caption>
<category>Button</category>
<description/>
</property>
<property key="latAttr" type="attribute" required="true">
<caption>Latitude Attribute</caption>
<category>Data source</category>
<description/>
<attributeTypes>
<attributeType name="Decimal"/>
<attributeType name="Float"/>
</attributeTypes>
</property>
<property key="longAttr" type="attribute" required="true">
<caption>Longitude Attribute</caption>
<category>Data source</category>
<description/>
<attributeTypes>
<attributeType name="Decimal"/>
<attributeType name="Float"/>
</attributeTypes>
</property>
<property key="onchangemf" type="microflow" required="false">
<caption>On change microflow</caption>
<category>Events</category>
<description>The microflow to call when the location has been retrieved</description>
<returnType type="Void"/>
</property>
<property key="onChangeNanoflow" type="nanoflow" required="false">
<caption>On change nanoflow</caption>
<category>Events</category>
<description>The nanoflow to call when the location has been retrieved</description>
<returnType type="Void"/>
</property>
<property key="enableHighAccuracy" type="boolean" defaultValue="true">
<caption>High accuracy</caption>
<category>Behavior</category>
<description>Provides a hint that the application needs the best possible results. By default, the device attempts to retrieve a Position using network-based methods. Setting this property to true tells the framework to use more accurate methods, such as satellite positioning.</description>
</property>
<property key="getPositionOnLoad" type="boolean" defaultValue="false">
<caption>Locate on load</caption>
<category>Behavior</category>
<description>Automatically get the current location when the widget is loaded.</description>
</property>
</properties>
</widget>